细化航空遥感

This commit is contained in:
wlx 2010-06-27 23:40:07 +00:00
parent 4efac45799
commit 4c987f61b8
1 changed files with 22 additions and 1 deletions

View File

@ -16,6 +16,9 @@ class WaterController extends DataController
$searchform=new SearchForm();
$this->view->searchform=$searchform;
}
function documentAction()
{
}
function coldAction()
{
$this->getmd('上游寒区水文试验区');
@ -119,6 +122,22 @@ class WaterController extends DataController
{
$this->getmd('航空遥感','theme');
}
function radiometerAction()
{
$this->getmd('微波辐射计','theme');
}
function lidarAction()
{
$this->getmd('激光雷达','theme');
}
function widasAction()
{
$this->getmd('WiDAS','theme');
}
function asdAction()
{
$this->getmd('成像光谱仪','theme');
}
function satelliteAction()
{
$this->getmd('卫星遥感','theme');
@ -161,6 +180,7 @@ class WaterController extends DataController
$this->view->metadata=$this->db->fetchAll($sql,array($this->limit,$offset));
$this->view->page=new Pagination($sum,$page,$this->limit);
$this->view->key=$key;
$this->view->offset=$offset+1;
}
}
@ -202,5 +222,6 @@ class WaterController extends DataController
$sql="select uuid,title from metadata where source='0595169a-279e-4b95-819f-129d0ba4280d' and id in (select id from keyword where keytype='".$type."' and keyword='".$keyword."') order by timebegin limit ? offset ?";
$this->view->metadata=$this->db->fetchAll($sql,array($this->limit,$offset));
$this->view->page=new Pagination($sum,$page,$this->limit);
$this->view->offset=$offset+1;
}
}