实现water数据的一些分类浏览
This commit is contained in:
parent
c9e14ab28d
commit
d51172db99
|
@ -99,6 +99,10 @@ routes.wateruuid.defaults.controller = "water"
|
||||||
routes.wateruuid.defaults.action = "view"
|
routes.wateruuid.defaults.action = "view"
|
||||||
routes.wateruuid.reqs.uuid = "[[:xdigit:]]{8}(-[[:xdigit:]]{4}){3}-[[:xdigit:]]{12}"
|
routes.wateruuid.reqs.uuid = "[[:xdigit:]]{8}(-[[:xdigit:]]{4}){3}-[[:xdigit:]]{12}"
|
||||||
|
|
||||||
|
routes.watertag.route = "water/tag/:key"
|
||||||
|
routes.watertag.defaults.controller = "water"
|
||||||
|
routes.watertag.defaults.action = "tag"
|
||||||
|
|
||||||
routes.mddoc.route = "metainfo/:title"
|
routes.mddoc.route = "metainfo/:title"
|
||||||
routes.mddoc.defaults.controller = "metainfo"
|
routes.mddoc.defaults.controller = "metainfo"
|
||||||
routes.mddoc.defaults.action = "index"
|
routes.mddoc.defaults.action = "index"
|
||||||
|
|
|
@ -16,9 +16,6 @@ class WaterController extends DataController
|
||||||
$searchform=new SearchForm();
|
$searchform=new SearchForm();
|
||||||
$this->view->searchform=$searchform;
|
$this->view->searchform=$searchform;
|
||||||
}
|
}
|
||||||
function overviewAction()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
function coldAction()
|
function coldAction()
|
||||||
{
|
{
|
||||||
$this->getmd('上游寒区水文试验区');
|
$this->getmd('上游寒区水文试验区');
|
||||||
|
@ -32,11 +29,15 @@ class WaterController extends DataController
|
||||||
}
|
}
|
||||||
function arAction()
|
function arAction()
|
||||||
{
|
{
|
||||||
$this->getmd('阿柔试验区');
|
$this->getmd('阿柔加密观测区');
|
||||||
}
|
}
|
||||||
function bdkAction()
|
function bdkAction()
|
||||||
{
|
{
|
||||||
$this->getmd('扁都口试验区');
|
$this->getmd('扁都口加密观测区');
|
||||||
|
}
|
||||||
|
function ebAction()
|
||||||
|
{
|
||||||
|
$this->getmd('峨堡加密观测区');
|
||||||
}
|
}
|
||||||
function forestAction()
|
function forestAction()
|
||||||
{
|
{
|
||||||
|
@ -44,7 +45,7 @@ class WaterController extends DataController
|
||||||
}
|
}
|
||||||
function dykAction()
|
function dykAction()
|
||||||
{
|
{
|
||||||
$this->getmd('大野口试验区');
|
$this->getmd('大野口流域加密观测区');
|
||||||
}
|
}
|
||||||
function plgAction()
|
function plgAction()
|
||||||
{
|
{
|
||||||
|
@ -56,19 +57,19 @@ class WaterController extends DataController
|
||||||
}
|
}
|
||||||
function hzzAction()
|
function hzzAction()
|
||||||
{
|
{
|
||||||
$this->getmd('花寨子试验区');
|
$this->getmd('花寨子加密观测区');
|
||||||
}
|
}
|
||||||
function ykAction()
|
function ykAction()
|
||||||
{
|
{
|
||||||
$this->getmd('盈科绿洲试验区');
|
$this->getmd('盈科绿洲加密观测区');
|
||||||
}
|
}
|
||||||
function zyAction()
|
function zyAction()
|
||||||
{
|
{
|
||||||
$this->getmd('张掖市试验区');
|
$this->getmd('张掖市加密观测区');
|
||||||
}
|
}
|
||||||
function zynocAction()
|
function zynocAction()
|
||||||
{
|
{
|
||||||
$this->getmd('张掖观象台试验区');
|
$this->getmd('观象台加密观测区');
|
||||||
}
|
}
|
||||||
function lzgAction()
|
function lzgAction()
|
||||||
{
|
{
|
||||||
|
@ -76,17 +77,80 @@ class WaterController extends DataController
|
||||||
}
|
}
|
||||||
function lzsAction()
|
function lzsAction()
|
||||||
{
|
{
|
||||||
$this->getmd('临泽站试验区');
|
$this->getmd('临泽站加密观测区');
|
||||||
}
|
}
|
||||||
private function getmd($keyword)
|
function meteoAction()
|
||||||
|
{
|
||||||
|
$this->getmd('气象水文','theme');
|
||||||
|
}
|
||||||
|
function autometeoAction()
|
||||||
|
{
|
||||||
|
$this->getmd('气象观测','theme');
|
||||||
|
}
|
||||||
|
function ecAction()
|
||||||
|
{
|
||||||
|
$this->getmd('涡动相关','theme');
|
||||||
|
}
|
||||||
|
function lasAction()
|
||||||
|
{
|
||||||
|
$this->getmd('大孔径闪烁仪','theme');
|
||||||
|
}
|
||||||
|
function normalmeteoAction()
|
||||||
|
{
|
||||||
|
$this->getmd('常规气象观测','theme');
|
||||||
|
}
|
||||||
|
function regionalmeteoAction()
|
||||||
|
{
|
||||||
|
$this->getmd('区域气象观测','theme');
|
||||||
|
}
|
||||||
|
function dopplerAction()
|
||||||
|
{
|
||||||
|
$this->getmd('降水','theme');
|
||||||
|
}
|
||||||
|
function hydroAction()
|
||||||
|
{
|
||||||
|
$this->getmd('水文','theme');
|
||||||
|
}
|
||||||
|
function airsoundingAction()
|
||||||
|
{
|
||||||
|
$this->getmd('大气廓线','theme');
|
||||||
|
}
|
||||||
|
function aireboneAction()
|
||||||
|
{
|
||||||
|
$this->getmd('航空遥感','theme');
|
||||||
|
}
|
||||||
|
function satelliteAction()
|
||||||
|
{
|
||||||
|
$this->getmd('卫星遥感','theme');
|
||||||
|
}
|
||||||
|
|
||||||
|
function tagAction()
|
||||||
|
{
|
||||||
|
$key = $this->_request->getParam('key');
|
||||||
|
$page=(int)$this->_request->getParam('page');
|
||||||
|
if (empty($page)) $page=1;
|
||||||
|
$offset=$this->limit*($page-1);
|
||||||
|
if (!empty($key)) {
|
||||||
|
$this->view->codename=$key;
|
||||||
|
$sql=$this->db->quoteInto('select count(id) from keyword where keyword=?',$key);
|
||||||
|
$state=$this->db->query($sql);
|
||||||
|
$row=$state->fetchAll();
|
||||||
|
$sum=$row[0]['count'];
|
||||||
|
$sql="select uuid,title,id,description from metadata where source='0595169a-279e-4b95-819f-129d0ba4280d' and id in (select id from keyword where keyword='".$key."') 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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private function getmd($keyword,$type='place')
|
||||||
{
|
{
|
||||||
$page=(int)$this->_request->getParam('page');
|
$page=(int)$this->_request->getParam('page');
|
||||||
if (empty($page)) $page=1;
|
if (empty($page)) $page=1;
|
||||||
$offset=$this->limit*($page-1);
|
$offset=$this->limit*($page-1);
|
||||||
$state=$this->db->query("select count(*) from metadata where source='0595169a-279e-4b95-819f-129d0ba4280d' and id in (select id from keyword where keytype='place' and keyword='".$keyword."')");
|
$state=$this->db->query("select count(*) from metadata where source='0595169a-279e-4b95-819f-129d0ba4280d' and id in (select id from keyword where keytype='".$type."' and keyword='".$keyword."')");
|
||||||
$row=$state->fetchAll();
|
$row=$state->fetchAll();
|
||||||
$sum=$row[0]['count'];
|
$sum=$row[0]['count'];
|
||||||
$sql="select uuid,title from metadata where source='0595169a-279e-4b95-819f-129d0ba4280d' and id in (select id from keyword where keytype='place' and keyword='".$keyword."') order by timebegin limit ? offset ?";
|
$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->metadata=$this->db->fetchAll($sql,array($this->limit,$offset));
|
||||||
$this->view->page=new Pagination($sum,$page,$this->limit);
|
$this->view->page=new Pagination($sum,$page,$this->limit);
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/water.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
|
$this->breadcrumb('航空遥感');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id='sidebar'>
|
||||||
|
<div id='leftnavi'>
|
||||||
|
<?= $this->partial('water/navi.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id='right'>
|
||||||
|
<div id="intro">
|
||||||
|
<p>航空遥感飞行试验是连接卫星遥感和地面综合观测之间的桥梁,2008年3月12日至7月20日完成了寒区水文、森林水文和干旱区水文的航空遥感试验任务。在寒区水文试验区开展了针对积雪和冻融的微波辐射计和高光谱航空遥感与地面同步试验;在森林水文试验区开展了针对森林结构参数和森林水文的高光谱、多角度热红外和激光雷达航空遥感试验;在干旱区水文试验区开展了针对植被生物物理参数、植被结构、土壤水分和蒸散发的高光谱、多角度热红外、激光雷达和微波辐射计的航空遥感与地面同步试验。共完成航空飞行25个架次,总飞行时间达110小时,获得了大量航空遥感、卫星遥感、地基遥感(微波辐射计、微波散射计、光谱仪)观测、多普勒雷达降水观测、微气象和大气廓线(探空与分光光度计)观测数据、地面同步观测的积雪属性、土壤水分、地表温度和植被生化物理参数等数据。航空遥感飞行区图如下。</p>
|
||||||
|
<img src="/images/water/airebone.jpg" />
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<?php if ($this->metadata) : ?>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<div id="mdlist">
|
||||||
|
<ol>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<li><a href="/water/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
|
@ -0,0 +1,32 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/water.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
|
$this->breadcrumb('探空观测');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id='sidebar'>
|
||||||
|
<div id='leftnavi'>
|
||||||
|
<?= $this->partial('water/navi.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id='right'>
|
||||||
|
<div id="intro">
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<?php if ($this->metadata) : ?>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<div id="mdlist">
|
||||||
|
<ol>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<li><a href="/water/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
|
@ -6,7 +6,7 @@ $this->headLink()->appendStylesheet('/css/water.css');
|
||||||
$this->breadcrumb('<a href="/">首页</a>');
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
$this->breadcrumb('阿柔试验区');
|
$this->breadcrumb('阿柔加密观测区');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
|
@ -18,9 +18,14 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
<div id='right'>
|
<div id='right'>
|
||||||
<div id="intro">
|
<div id="intro">
|
||||||
|
|
||||||
<p> 冰沟流域(38°01′~38°04′N,100°12′~100°18′E)位于黑河上游东支二级支流上(图5),海拔3450~4400m,平均为 3920m。流域面积30.48km2,平均宽度3.59km,植被分布面积19.82km2,占流域总面积的65%左右。气象场年平均气温-2.5℃,最低气温-30.8℃,最高气温24.8℃,流域源头的年平均气温为-7℃。季节性积雪厚度约为0.5m,最深达0.8~1.0m。多年冻土下界可能在 3400m左右。长期观测积雪、冻土、气象、植被等寒区水文变量与参数,并开展地基微波辐射计和野外光谱仪等项目综合观测。
|
<p> 中游干旱区水文试验区是由人工绿洲、绿洲—荒漠过渡带、荒漠草原、荒漠和水域共同组成的荒漠-绿洲景观系统。共包括6个加密观测区(图 4),由南向北分别为:<br />
|
||||||
冰沟流域分布图如下。</p>
|
(1)花寨子,位于张掖绿洲南缘,景观为荒漠草原。主要开展蒸散发和土壤水分以及荒漠植被生物物理和生物化学参数的同步观测。<br />
|
||||||
<img src="/images/water/arou.jpg" />
|
(2)盈科绿洲,位于张掖市以南8 km,是典型的农田生态系统,主要作物为植种玉米、大田玉米和小麦。该区主要开展农田蒸散发、相关生态参数及作物结构参数的同步观测,地表地下水相互作用监测,农田灌溉用水监测。<br />
|
||||||
|
(3)张掖市1,开展城市周边土地利用状况调查和大气光学特性观测。<br />
|
||||||
|
(4)观象台,位于张掖国家气候观象台周边,景观为砾质戈壁。重点依赖于观象台的各种先进设备开展地表能量平衡观测。<br />
|
||||||
|
(5)临泽草地,位于兰州大学草地农业科技学院临泽草地生态试验站周边,土地覆盖类型为湿地、草地、盐碱地和农田。该区主要开展蒸散发、土壤水分、地表和冠层温度、生物物理参数的同步观测,并重点研究尺度转换方法、蒸散发遥感估算模型和蒸散发的数据同化方法。<br />
|
||||||
|
(6)临泽站,位于临泽内陆河流域综合研究站周边,包括过渡带及绿洲。该区主要开展生态水文变量的同步观测和长期监测,重点观测对象是蒸散发和凝结水。</p>
|
||||||
|
<img src="/images/water/arid.jpg" />
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<?php if ($this->metadata) : ?>
|
<?php if ($this->metadata) : ?>
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/water.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
|
$this->breadcrumb('自动气象站');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id='sidebar'>
|
||||||
|
<div id='leftnavi'>
|
||||||
|
<?= $this->partial('water/navi.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id='right'>
|
||||||
|
<div id="intro">
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<?php if ($this->metadata) : ?>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<div id="mdlist">
|
||||||
|
<ol>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<li><a href="/water/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
|
@ -6,7 +6,7 @@ $this->headLink()->appendStylesheet('/css/water.css');
|
||||||
$this->breadcrumb('<a href="/">首页</a>');
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
$this->breadcrumb('阿柔试验区');
|
$this->breadcrumb('扁都口加密观测区');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ $this->headLink()->appendStylesheet('/css/water.css');
|
||||||
$this->breadcrumb('<a href="/">首页</a>');
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
$this->breadcrumb('冰沟试验区');
|
$this->breadcrumb('冰沟流域加密观测区');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
@ -18,9 +18,6 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
<div id='right'>
|
<div id='right'>
|
||||||
<div id="intro">
|
<div id="intro">
|
||||||
|
|
||||||
<p> 冰沟流域(38°01′~38°04′N,100°12′~100°18′E)位于黑河上游东支二级支流上(图5),海拔3450~4400m,平均为 3920m。流域面积30.48km2,平均宽度3.59km,植被分布面积19.82km2,占流域总面积的65%左右。气象场年平均气温-2.5℃,最低气温-30.8℃,最高气温24.8℃,流域源头的年平均气温为-7℃。季节性积雪厚度约为0.5m,最深达0.8~1.0m。多年冻土下界可能在 3400m左右。长期观测积雪、冻土、气象、植被等寒区水文变量与参数,并开展地基微波辐射计和野外光谱仪等项目综合观测。
|
|
||||||
冰沟流域分布图如下。</p>
|
|
||||||
<img src="/images/water/binggou.jpg" />
|
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<?php if ($this->metadata) : ?>
|
<?php if ($this->metadata) : ?>
|
||||||
|
|
|
@ -18,10 +18,10 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
<div id='right'>
|
<div id='right'>
|
||||||
<div id="intro">
|
<div id="intro">
|
||||||
|
|
||||||
<p> 上游寒区水文试验区包括重点试验区、加密观测区和观测点。重点试验区为黑河上游东支八宝河子流域。加密观测区选择冰沟小流域,
|
<p>上游寒区水文试验区内的加密观测区包括:<br />
|
||||||
开展降雨降雪观测,地面-遥感同步观测,以及寒区水文过程观测。观测点选择冰沟垭口、
|
(1)冰沟流域,流域面积30.28 km2,海拔3450~4400 m,平均为3920 m,平均宽度3.59 km,季节性积雪厚度约为0.5 m,最深达0.8~1.0 m,多年冻土下界可能在3400 m左右。主要开展积雪遥感同步观测,长期观测目标为积雪水文和冻土水文。<br />
|
||||||
俄堡岭垭口、野牛山头滩垭口、海潮坝、阿柔乡和扁都口。
|
(2)阿柔乡,位于八宝河流域中部河谷地带,海拔约3000 m,地势开阔平坦。主要开展积雪和地表冻融状态的遥感-地面同步观测,并长期观测季节冻土的水热变化特征。<br />
|
||||||
上游寒区水文试验区设置见下图。</p>
|
(3)扁都口,民乐县扁都口以北的平坦开阔地,平均海拔2800 m,观测瞬时积雪及地表冻融状态,验证被动微波地表冻融分类算法。</p>
|
||||||
<img src="/images/water/cold.jpg" />
|
<img src="/images/water/cold.jpg" />
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/water.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
|
$this->breadcrumb('降水雷达观测');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id='sidebar'>
|
||||||
|
<div id='leftnavi'>
|
||||||
|
<?= $this->partial('water/navi.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id='right'>
|
||||||
|
<div id="intro">
|
||||||
|
<p>高寒山区和干旱区降水都具有高度的异质性,因此提高降水的观测精度是寒区和干旱区水文研究中的核心问题。试验中利用先进的车载双偏振多普勒天气雷达在黑河上游和中游地区,开展高密度的雷达降水观测;并建立地面降水粒子滴谱仪观测点和地面降水加密观测网点,与架设在张掖国家气候观象台的我国新一代多普勒天气雷达联网,探索利用雷达联合观测反演降水类型和强度的方法,建立系统化雷达降水估测数据集;评估利用国家业务多普勒雷达网在黑河中上游地区进行长期降水观测的可行性。</p>
|
||||||
|
<p>车载双偏振多普勒天气雷达在寒区水文试验中布设在八宝河流域阿柔乡(100.45°E, 38.06°N, 3001 m),可覆盖整个八宝河流域;森林水文和干旱区水文试验中布设在民乐六坝(100.66°E, 38.73°N, 1668 m),与张掖国家气候观象台业务雷达观测相配合,可覆盖大野口流域和中游全部观测区。</p>
|
||||||
|
<p>配合多普勒雷达观测,于加密观测期在试验区设置两个降水粒子滴谱仪观测点,布设了大量降水加密观测网点,其中,寒区水文试验区33个简易量雪桶,干旱区水文试验区29个RG3-M型雨量计,森林水文试验区按100~200 m海拔梯度布设加密的降水观测点。这些新增的降雨观测与气象水文观测网络及黑河流域业务水文站的降水观测,构成了试验区降水观测网络(如图),为获取高分辨率的降水数据集提供了可能。</p>
|
||||||
|
</div>
|
||||||
|
<img src="/images/water/doppler.jpg" />
|
||||||
|
<hr />
|
||||||
|
<?php if ($this->metadata) : ?>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<div id="mdlist">
|
||||||
|
<ol>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<li><a href="/water/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
|
@ -6,7 +6,7 @@ $this->headLink()->appendStylesheet('/css/water.css');
|
||||||
$this->breadcrumb('<a href="/">首页</a>');
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
$this->breadcrumb('大野口试验区');
|
$this->breadcrumb('大野口流域加密观测区');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
@ -17,10 +17,6 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
</div>
|
</div>
|
||||||
<div id='right'>
|
<div id='right'>
|
||||||
<div id="intro">
|
<div id="intro">
|
||||||
|
|
||||||
<p> 冰沟流域(38°01′~38°04′N,100°12′~100°18′E)位于黑河上游东支二级支流上(图5),海拔3450~4400m,平均为 3920m。流域面积30.48km2,平均宽度3.59km,植被分布面积19.82km2,占流域总面积的65%左右。气象场年平均气温-2.5℃,最低气温-30.8℃,最高气温24.8℃,流域源头的年平均气温为-7℃。季节性积雪厚度约为0.5m,最深达0.8~1.0m。多年冻土下界可能在 3400m左右。长期观测积雪、冻土、气象、植被等寒区水文变量与参数,并开展地基微波辐射计和野外光谱仪等项目综合观测。
|
|
||||||
冰沟流域分布图如下。</p>
|
|
||||||
<img src="/images/water/arou.jpg" />
|
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<?php if ($this->metadata) : ?>
|
<?php if ($this->metadata) : ?>
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/water.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
|
$this->breadcrumb('峨堡加密观测区');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id='sidebar'>
|
||||||
|
<div id='leftnavi'>
|
||||||
|
<?= $this->partial('water/navi.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id='right'>
|
||||||
|
<div id="intro">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<?php if ($this->metadata) : ?>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<div id="mdlist">
|
||||||
|
<ol>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<li><a href="/water/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
|
@ -0,0 +1,36 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/water.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
|
$this->breadcrumb('涡动相关观测');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id='sidebar'>
|
||||||
|
<div id='leftnavi'>
|
||||||
|
<?= $this->partial('water/navi.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id='right'>
|
||||||
|
<div id="intro">
|
||||||
|
<p>“黑河综合遥感联合试验”通量观测站点包括:大野口关滩森林站、临泽草地站、阿柔站、盈科绿洲站,所用的通量观测设备为Campbell公司的开路涡动相关通量系统,包括三维超声风速、温度计CSAT3和红外线气体分析仪LI-7500。观测数据有10Hz的三维风速、温度、CO2浓度及水汽浓度等量。为了保证试验观测数据的质量,实现观测数据与其他站点观测的一致性和可比性,根据王介民(2009)编写的涡动相关通量观测指导手册及其提供的改进的EdiRe程序,对试验的通量观测数据进行了质量控制和处理。该手册编写中参考了美国通量观测网的涡动相关通量观测指南和欧洲通量网及有关专家的推荐文件等。计算软件基于EdiRe有关模块,参考全球通量网一些建议标准,用于各站湍流原始资料的后处理,主要过程包括异常值检验、坐标旋转、超声虚温校正、时间滞后剔除、频率响应修正、WPL修正以及稳定度检验等基本处理,最后得到30分钟的感热、潜热及CO2通量。</p>
|
||||||
|
<p>
|
||||||
|
参考文献:
|
||||||
|
王介民 编。涡动相关通量观测指导手册,2009,p24.</p>
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<?php if ($this->metadata) : ?>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<div id="mdlist">
|
||||||
|
<ol>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<li><a href="/water/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
|
@ -17,10 +17,24 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
</div>
|
</div>
|
||||||
<div id='right'>
|
<div id='right'>
|
||||||
<div id="intro">
|
<div id="intro">
|
||||||
|
<p>森林水文试验的加密观测区选择大野口流域和排露沟小流域(如图)。<br />
|
||||||
|
(1)大野口流域,是一个独立水系,大野口水库以上汇水面积为70 km2,主要树种为青海云杉。<br />
|
||||||
|
(2)排露沟流域,海拔2600~3800 m,面积2.73 km2,年平均气温0.7C,年平均降水量435.5 mm,观测基础较好,
|
||||||
|
祁连山水源涵养林研究院在该流域内布设了森林水文观测系统及大量水文和植被观测样地。</p>
|
||||||
|
|
||||||
<p> 冰沟流域(38°01′~38°04′N,100°12′~100°18′E)位于黑河上游东支二级支流上(图5),海拔3450~4400m,平均为 3920m。流域面积30.48km2,平均宽度3.59km,植被分布面积19.82km2,占流域总面积的65%左右。气象场年平均气温-2.5℃,最低气温-30.8℃,最高气温24.8℃,流域源头的年平均气温为-7℃。季节性积雪厚度约为0.5m,最深达0.8~1.0m。多年冻土下界可能在 3400m左右。长期观测积雪、冻土、气象、植被等寒区水文变量与参数,并开展地基微波辐射计和野外光谱仪等项目综合观测。
|
<p>甘肃省水源涵养林研究院2003年曾在排露沟流域设置了15个20m×20m的森林固定观测样地,2007年7月21日至8月16日,
|
||||||
冰沟流域分布图如下。</p>
|
寒旱所和水涵院开展了这些森林样的调查工作,调查了16个森林样地(15个固定样方和1个幼林样方)。
|
||||||
<img src="/images/water/arou.jpg" />
|
另外还调查了10个灌木样方和8个草地样方,这些样方与水涵院2003年7-8月在该流域开展的样方调查的位置基本一致,可以形成对照。</p>
|
||||||
|
<p>2008年6月1日至15日,中国林业科学研究院资源信息研究所、中国科学院遥感应用研究所、
|
||||||
|
北京师范大学和甘肃省水源涵养林研究院等单位在大野口流域开展了森林结构参数和生物物理参数的加密观测试验。
|
||||||
|
这些试验包括固定样地观测、临时样地观测、超级样地观测和样带观测四部分内容。</p>
|
||||||
|
<p>固定样地观测集中在排露沟流域,对具有多年观测历史资料积累的15块森林固定样地进行了冠层结构参数(叶面积指数(Leaf Area Index, LAI)和郁闭度等)的观测,利用的仪器包括LAI2000、TRAC和HemiView以及北京师范大学自制的冠层结构观测设备。</p>
|
||||||
|
<p>临时样地观测是为了提高森林观测样地在空间分布上的均匀性,在大野口流域选择了43块25m×25m的临时样地,测量了样地每株树的胸径、冠幅和枝下高,按径阶抽取优势木测量了树高,并测量了样地林分的株数密度、郁闭度、LAI和立地因子。</p>
|
||||||
|
<p>超级样地观测是指在大野口关滩森林观测塔周围设置了一个100m×100m的超级样地,利用各种仪器设备对该样地进行了详细的观测。具体观测内容包括:(1)利用全站仪对样地内的每株树木的平面空间分布位置进行了精确定位;(2)对样地内每株树进行了树高、胸径、枝下高和冠幅的测量;(3)利用LAI2000、TRAC和HemiView测量了林分的LAI;(3)利用地基LiDAR对林分结构进行了三维扫描;(4)分别幼龄林、中龄林、成熟林三级,各抽取10株树,采集不同部位的枝叶样品进行了湿重和干重测量;(5)测量了样地的地表粗糙度和土壤湿度;(6)利用ASD光谱仪测量了典型林木的树冠光谱和BRDF。</p>
|
||||||
|
<p>样带观测是指在大野口关滩森林站设置了一个通过超级样地,与航带平行,跨越不同结构林分和地形的样带,宽20m,长1km。在样带上每隔50米设1块20m×20m的森林样地,分别样地观测林木的树高、胸径、枝下高和冠幅,并测量林分的LAI。
|
||||||
|
<p>在排露沟阴坡固定样方和关滩阳坡超级样方里分别设置了一个青海云杉林水文参数观测场,根据不同的郁闭度布设雨量桶、截留槽、苔藓截留桶、树干径流收集器和自制蒸散桶等设备,以获取不同的郁闭度的森林水文特征数据。</p>
|
||||||
|
|
||||||
|
<img src="/images/water/forest.png" />
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<?php if ($this->metadata) : ?>
|
<?php if ($this->metadata) : ?>
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/water.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
|
$this->breadcrumb('水文站');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id='sidebar'>
|
||||||
|
<div id='leftnavi'>
|
||||||
|
<?= $this->partial('water/navi.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id='right'>
|
||||||
|
<div id="intro">
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<?php if ($this->metadata) : ?>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<div id="mdlist">
|
||||||
|
<ol>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<li><a href="/water/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
|
@ -6,7 +6,7 @@ $this->headLink()->appendStylesheet('/css/water.css');
|
||||||
$this->breadcrumb('<a href="/">首页</a>');
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
$this->breadcrumb('花寨子试验区');
|
$this->breadcrumb('花寨子加密观测区');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
@ -18,9 +18,6 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
<div id='right'>
|
<div id='right'>
|
||||||
<div id="intro">
|
<div id="intro">
|
||||||
|
|
||||||
<p> 冰沟流域(38°01′~38°04′N,100°12′~100°18′E)位于黑河上游东支二级支流上(图5),海拔3450~4400m,平均为 3920m。流域面积30.48km2,平均宽度3.59km,植被分布面积19.82km2,占流域总面积的65%左右。气象场年平均气温-2.5℃,最低气温-30.8℃,最高气温24.8℃,流域源头的年平均气温为-7℃。季节性积雪厚度约为0.5m,最深达0.8~1.0m。多年冻土下界可能在 3400m左右。长期观测积雪、冻土、气象、植被等寒区水文变量与参数,并开展地基微波辐射计和野外光谱仪等项目综合观测。
|
|
||||||
冰沟流域分布图如下。</p>
|
|
||||||
<img src="/images/water/arou.jpg" />
|
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<?php if ($this->metadata) : ?>
|
<?php if ($this->metadata) : ?>
|
||||||
|
|
|
@ -12,19 +12,9 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
<div id='leftnavi'>
|
<div id='leftnavi'>
|
||||||
<?= $this->partial('water/navi.phtml'); ?>
|
<?= $this->partial('water/navi.phtml'); ?>
|
||||||
</div>
|
</div>
|
||||||
<div id='static'>
|
|
||||||
<hr />
|
|
||||||
<h3>统计信息</h3>
|
|
||||||
<ul>
|
|
||||||
<li>元数据400条</li>
|
|
||||||
<li>观测数据X天</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div id='right'>
|
<div id='right'>
|
||||||
<div id="intro">
|
<div id="intro">
|
||||||
<p>地球表层系统科学已成为实验科学!在地球表层系统科学从经验科学走向实验科学的进程中,一系列针对地表过程的大型观测试验扮演了重要的角色,正是这些观测试验对地理学、水文学、生态学、 大气科学和整个地球系统科学的快速发展起到了举足轻重的作用,许多试验甚至成为一个阶段科学认识和研究方法进步的里程碑。</p>
|
|
||||||
<p>中国西部地区有着鲜明的寒区和旱区相伴而生的特点,特别是内陆河流域,具有全球独特的以水为纽带的“冰雪/冻土-河流-湖泊-绿洲-沙漠”多元自然景观,是在流域尺度上开展寒区和干旱区水文和生态等陆面过程研究的理想场所。近年来,以流域为基本单元,围绕水-土-气-生-人相互作用,国内科技界开展了一系列卓有成效的研究,并且逐渐认识到必须以现代地球系统科学的思想为指导,以现代模型模拟及信息获取与处理技术为手段,开展综合集成研究,才能更好地立足于科学前沿的探索,同时也服务于未来的国家需求。显然,集成研究中机理剖析的深入和综合模型的建立,无不有赖于高分辨率、高质量和系统化的基础数据集,但无论是现有的观测数据或者是国际上其他地区的陆面过程试验数据,都无法满足流域科学集成研究的要求,数据瓶颈的问题十分突出。因此,亟待开展一次基础性的、多尺度的、多学科联合的、精心设计的综合观测试验。“黑河流域遥感-地面观测同步试验与综合模拟平台建设 ”研究项目,正是基于这样的背景,在“中国科学院西部行动计划二期”的“考虑长远,引领发展”的指导思想下提出的。</p>
|
|
||||||
<p>
|
<p>
|
||||||
“黑河综合遥感联合试验”是由中国科学院西部行动计划(二期)项目“黑河流域遥感
|
“黑河综合遥感联合试验”是由中国科学院西部行动计划(二期)项目“黑河流域遥感
|
||||||
-地面观测同步试验与综合模拟平台建设”与国家重点基础研究发展计划(973计划)项
|
-地面观测同步试验与综合模拟平台建设”与国家重点基础研究发展计划(973计划)项
|
||||||
|
@ -67,39 +57,33 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
<h3>参考文献:</h3>
|
<h3>参考文献:</h3>
|
||||||
<p>李新,马明国,王建,刘强,车涛,胡泽勇,肖青,柳钦火,苏培玺,楚荣忠,晋锐,
|
<p>李新,马明国,王建,刘强,车涛,胡泽勇,肖青,柳钦火,苏培玺,楚荣忠,晋锐,
|
||||||
王维真,冉有华。黑河流域遥感-地面观测同步试验:科学目标与试验方案。地球科学
|
王维真,冉有华。黑河流域遥感-地面观测同步试验:科学目标与试验方案。地球科学
|
||||||
进展,2008, 23(9): 897-914. <a href="/images/water_04.pdf">下载</a></p>
|
进展,2008, 23(9): 897-914. <a href="/images/water/water_04.pdf">下载</a></p>
|
||||||
<p>Li X, Li XW, Li ZY, Ma MG, Wang J, Xiao Q, Liu Q, Che T, Chen EX, Yan GJ, Hu
|
<p>Li X, Li XW, Li ZY, Ma MG, Wang J, Xiao Q, Liu Q, Che T, Chen EX, Yan GJ, Hu
|
||||||
ZY, Zhang LX, Chu RZ, Su PX, Liu QH, Liu SM, Wang JD, Niu Z, Chen Y, Jin R,
|
ZY, Zhang LX, Chu RZ, Su PX, Liu QH, Liu SM, Wang JD, Niu Z, Chen Y, Jin R,
|
||||||
Wang WZ, Ran YH, Xin XZ, Ren HZ. Watershed Allied Telemetry Experimental
|
Wang WZ, Ran YH, Xin XZ, Ren HZ. Watershed Allied Telemetry Experimental
|
||||||
Research. Journal of Geophysical Research, 2009, 114(D22103),
|
Research. Journal of Geophysical Research, 2009, 114(D22103),
|
||||||
doi:10.1029/2008JD011590. <a href="/images/water_02.pdf">下载</a>
|
doi:10.1029/2008JD011590. <a href="/images/water/water_02.pdf">下载</a>
|
||||||
</p>
|
</p>
|
||||||
<p>马明国, 刘强, 阎广建, 陈尔学, 肖青, 苏培玺, 胡泽勇, 李新, 牛铮,王维真, 钱金
|
<p>马明国, 刘强, 阎广建, 陈尔学, 肖青, 苏培玺, 胡泽勇, 李新, 牛铮,王维真, 钱金
|
||||||
波, 宋怡, 丁松爽, 辛晓洲, 任华忠, 黄春林, 晋锐, 车涛, 楚荣忠.黑河流域遥感-
|
波, 宋怡, 丁松爽, 辛晓洲, 任华忠, 黄春林, 晋锐, 车涛, 楚荣忠.黑河流域遥感-
|
||||||
地面观测同步试验:森林水文和中游干旱区水文试验.地球科学进展,2009,24(7):681-695. <a href="/images/water_01.pdf">下载</a>
|
地面观测同步试验:森林水文和中游干旱区水文试验.地球科学进展,2009,24(7):681-695. <a href="/images/water/water_01.pdf">下载</a>
|
||||||
</p>
|
</p>
|
||||||
<p>王建,车涛,张立新,晋锐,王维真,李新,梁继,郝小华,李弘毅,吴月茹.黑河流域上游寒区
|
<p>王建,车涛,张立新,晋锐,王维真,李新,梁继,郝小华,李弘毅,吴月茹.黑河流域上游寒区
|
||||||
水文遥感-地面同步观测试验介绍.冰川冻土, 2009, 31(2): 189-197. <a href="/images/water_03.pdf">下载</a>
|
水文遥感-地面同步观测试验介绍.冰川冻土, 2009, 31(2): 189-197. <a href="/images/water/water_03.pdf">下载</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<hr />
|
||||||
<!--
|
<h3>试验数据的关键词列表</h3>
|
||||||
<div id="links">
|
|
||||||
|
|
||||||
<h3>
|
|
||||||
<?php echo $this->searchform; ?>
|
|
||||||
<a href="/data/advancesearch">高级搜索</a></h3>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div id='links'>
|
||||||
<div id='keyword'>
|
<div id='keyword'>
|
||||||
<?php
|
<?php
|
||||||
$keytypezh=array('place'=>'地点关键词','theme'=>'主题关键词','discipline'=>'学科关键词','stratum'=>'地层关键词','temporal'=>'时间关键词');
|
$keytypezh=array('place'=>'地点关键词','theme'=>'主题关键词','discipline'=>'学科关键词','stratum'=>'地层关键词','temporal'=>'时间关键词');
|
||||||
foreach($this->keywords as $type=>$kcg) :
|
foreach($this->keywords as $type=>$kcg) :
|
||||||
if (is_array($kcg) && count($kcg)>0 ) :
|
if (is_array($kcg) && count($kcg)>0 ) :
|
||||||
?>
|
?>
|
||||||
<fieldset><legend><a href="/water/tag/"><?php echo $keytypezh[$type]; ?></a></legend>
|
<fieldset><legend><?php echo $keytypezh[$type]; ?></legend>
|
||||||
<ul>
|
<ul>
|
||||||
<?php foreach($kcg as $cg) : ?>
|
<?php foreach($kcg as $cg) : ?>
|
||||||
<li><a href='/water/tag/<?php echo $cg['keyword']; ?>'><?php echo $cg['keyword']; ?></a><span class="note">(<?php echo $cg['count']; ?>)</span></li>
|
<li><a href='/water/tag/<?php echo $cg['keyword']; ?>'><?php echo $cg['keyword']; ?></a><span class="note">(<?php echo $cg['count']; ?>)</span></li>
|
||||||
|
@ -108,6 +92,8 @@ if (is_array($kcg) && count($kcg)>0 ) :
|
||||||
</ul>
|
</ul>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<?php endif;endforeach; ?>
|
<?php endif;endforeach; ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
-->
|
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/water.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
|
$this->breadcrumb('大孔径闪烁仪观测');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id='sidebar'>
|
||||||
|
<div id='leftnavi'>
|
||||||
|
<?= $this->partial('water/navi.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id='right'>
|
||||||
|
<div id="intro">
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<?php if ($this->metadata) : ?>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<div id="mdlist">
|
||||||
|
<ol>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<li><a href="/water/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
|
@ -6,7 +6,7 @@ $this->headLink()->appendStylesheet('/css/water.css');
|
||||||
$this->breadcrumb('<a href="/">首页</a>');
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
$this->breadcrumb('临泽草地试验区');
|
$this->breadcrumb('临泽草地加密观测区');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
@ -18,9 +18,6 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
<div id='right'>
|
<div id='right'>
|
||||||
<div id="intro">
|
<div id="intro">
|
||||||
|
|
||||||
<p> 冰沟流域(38°01′~38°04′N,100°12′~100°18′E)位于黑河上游东支二级支流上(图5),海拔3450~4400m,平均为 3920m。流域面积30.48km2,平均宽度3.59km,植被分布面积19.82km2,占流域总面积的65%左右。气象场年平均气温-2.5℃,最低气温-30.8℃,最高气温24.8℃,流域源头的年平均气温为-7℃。季节性积雪厚度约为0.5m,最深达0.8~1.0m。多年冻土下界可能在 3400m左右。长期观测积雪、冻土、气象、植被等寒区水文变量与参数,并开展地基微波辐射计和野外光谱仪等项目综合观测。
|
|
||||||
冰沟流域分布图如下。</p>
|
|
||||||
<img src="/images/water/arou.jpg" />
|
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<?php if ($this->metadata) : ?>
|
<?php if ($this->metadata) : ?>
|
||||||
|
|
|
@ -6,7 +6,7 @@ $this->headLink()->appendStylesheet('/css/water.css');
|
||||||
$this->breadcrumb('<a href="/">首页</a>');
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
$this->breadcrumb('临泽站试验区');
|
$this->breadcrumb('临泽站加密观测区');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
@ -18,9 +18,6 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
<div id='right'>
|
<div id='right'>
|
||||||
<div id="intro">
|
<div id="intro">
|
||||||
|
|
||||||
<p> 冰沟流域(38°01′~38°04′N,100°12′~100°18′E)位于黑河上游东支二级支流上(图5),海拔3450~4400m,平均为 3920m。流域面积30.48km2,平均宽度3.59km,植被分布面积19.82km2,占流域总面积的65%左右。气象场年平均气温-2.5℃,最低气温-30.8℃,最高气温24.8℃,流域源头的年平均气温为-7℃。季节性积雪厚度约为0.5m,最深达0.8~1.0m。多年冻土下界可能在 3400m左右。长期观测积雪、冻土、气象、植被等寒区水文变量与参数,并开展地基微波辐射计和野外光谱仪等项目综合观测。
|
|
||||||
冰沟流域分布图如下。</p>
|
|
||||||
<img src="/images/water/arou.jpg" />
|
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<?php if ($this->metadata) : ?>
|
<?php if ($this->metadata) : ?>
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/water.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
|
$this->breadcrumb('气象水文观测');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id='sidebar'>
|
||||||
|
<div id='leftnavi'>
|
||||||
|
<?= $this->partial('water/navi.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id='right'>
|
||||||
|
<div id="intro">
|
||||||
|
<p>在黑河流域已有观测网络的基础上,在3个重点试验区依据不同景观类型新建了7个自动气象站,4套涡动相关,2套大孔径闪烁仪。新建的观测系统和试验区已有的5个自动气象站, 2套涡动相关,8个业务气象站及34个气象区域站相配合,在试验区(如下图)约23700 km2 的范围内,形成了包括常规站、重点站和重点加强站三位一体的黑河中上游地区地面气象水文观测网,以满足不同层次科学研究的需要。大部分观测站获取了2008年和2009年两个完整年度的资料,部分台站观测数据有损失。</p>
|
||||||
|
<img src="/images/water/meteo.jpg" />
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<?php if ($this->metadata) : ?>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<div id="mdlist">
|
||||||
|
<ol>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<li><a href="/water/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
|
@ -1,22 +1,36 @@
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/water/overview">试验简介</a></li>
|
<li><a href="/water/">试验简介</a></li>
|
||||||
<li><a href="/water/cold">上游寒区水文试验</a>
|
<li><a href="/water/cold">上游寒区水文试验</a>
|
||||||
<ul><li><a href="/water/bg">冰沟试验区</a></li>
|
<ul><li><a href="/water/bg">冰沟流域加密观测区</a></li>
|
||||||
<li><a href="/water/ar">阿柔试验区</a></li>
|
<li><a href="/water/ar">阿柔加密观测区</a></li>
|
||||||
<li><a href="/water/bdk">扁都口试验区</a></li>
|
<li><a href="/water/bdk">扁都口加密观测区</a></li>
|
||||||
|
<li><a href="/water/eb">峨堡加密观测区</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li><a href="/water/forest">森林水文试验</a>
|
<li><a href="/water/forest">森林水文试验</a>
|
||||||
<ul><li><a href="/water/dyk">大野口试验区</a></li>
|
<ul><li><a href="/water/dyk">大野口流域加密观测区</a></li>
|
||||||
<li><a href="/water/plg">排露沟试验区</a></li></ul>
|
<li><a href="/water/plg">排露沟流域加密观测区</a></li></ul>
|
||||||
</li>
|
</li>
|
||||||
<li><a href="/water/arid">中游干旱区水文试验</a>
|
<li><a href="/water/arid">中游干旱区水文试验</a>
|
||||||
<ul><li><a href="/water/hzz">花寨子试验区</a></li>
|
<ul><li><a href="/water/hzz">花寨子加密观测区</a></li>
|
||||||
<li><a href="/water/yk">盈科绿洲试验区</a></li>
|
<li><a href="/water/yk">盈科绿洲加密观测区</a></li>
|
||||||
<li><a href="/water/zy">张掖市试验区</a></li>
|
<li><a href="/water/zy">张掖市加密观测区</a></li>
|
||||||
<li><a href="/water/zynoc">观象台试验区</a></li>
|
<li><a href="/water/zynoc">观象台加密观测区</a></li>
|
||||||
<li><a href="/water/lzg">临泽草地试验区</a></li>
|
<li><a href="/water/lzg">临泽草地加密观测区</a></li>
|
||||||
<li><a href="/water/lzs">临泽站试验区</a></li>
|
<li><a href="/water/lzs">临泽站加密观测区</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
<li><a href="/water/meteo">气象水文观测</a>
|
||||||
|
<ul><li><a href="/water/autometeo">自动气象站</a></li>
|
||||||
|
<li><a href="/water/ec">涡动相关观测</a></li>
|
||||||
|
<li><a href="/water/las">大孔径闪烁仪观测</a></li>
|
||||||
|
<li><a href="/water/normalmeteo">常规业务气象站</a></li>
|
||||||
|
<li><a href="/water/regionalmeteo">区域气象站</a></li>
|
||||||
|
<li><a href="/water/doppler">降水观测</a></li>
|
||||||
|
<li><a href="/water/hydro">水文站</a></li>
|
||||||
|
<li><a href="/water/airsounding">大气廓线</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a href="airebone">航空遥感</a></li>
|
||||||
|
<li><a href="satellite">卫星遥感</a></li>
|
||||||
</ul>
|
</ul>
|
|
@ -0,0 +1,34 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/water.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
|
$this->breadcrumb('常规业务气象站');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id='sidebar'>
|
||||||
|
<div id='leftnavi'>
|
||||||
|
<?= $this->partial('water/navi.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id='right'>
|
||||||
|
<div id="intro">
|
||||||
|
<p>试验区内常规业务气象站观测的逐日气象资料从中国气象科学数据共享网:(http://cdc.cma.gov.cn)获取。</p>
|
||||||
|
<p>试验区内甘肃省常规业务气象站观测的6时气象资料从甘肃省气象局信息中心获取。</p>
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<?php if ($this->metadata) : ?>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<div id="mdlist">
|
||||||
|
<ol>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<li><a href="/water/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
|
@ -6,7 +6,7 @@ $this->headLink()->appendStylesheet('/css/water.css');
|
||||||
$this->breadcrumb('<a href="/">首页</a>');
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
$this->breadcrumb('排露沟试验区');
|
$this->breadcrumb('排露沟流域加密观测区');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
@ -17,10 +17,6 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
</div>
|
</div>
|
||||||
<div id='right'>
|
<div id='right'>
|
||||||
<div id="intro">
|
<div id="intro">
|
||||||
|
|
||||||
<p> 冰沟流域(38°01′~38°04′N,100°12′~100°18′E)位于黑河上游东支二级支流上(图5),海拔3450~4400m,平均为 3920m。流域面积30.48km2,平均宽度3.59km,植被分布面积19.82km2,占流域总面积的65%左右。气象场年平均气温-2.5℃,最低气温-30.8℃,最高气温24.8℃,流域源头的年平均气温为-7℃。季节性积雪厚度约为0.5m,最深达0.8~1.0m。多年冻土下界可能在 3400m左右。长期观测积雪、冻土、气象、植被等寒区水文变量与参数,并开展地基微波辐射计和野外光谱仪等项目综合观测。
|
|
||||||
冰沟流域分布图如下。</p>
|
|
||||||
<img src="/images/water/arou.jpg" />
|
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<?php if ($this->metadata) : ?>
|
<?php if ($this->metadata) : ?>
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/water.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
|
$this->breadcrumb('区域气象站');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id='sidebar'>
|
||||||
|
<div id='leftnavi'>
|
||||||
|
<?= $this->partial('water/navi.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id='right'>
|
||||||
|
<div id="intro">
|
||||||
|
<p>试验区内张掖市区域气象观测资料从甘肃省气象局信息中心获取。</p>
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<?php if ($this->metadata) : ?>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<div id="mdlist">
|
||||||
|
<ol>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<li><a href="/water/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
|
@ -0,0 +1,34 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/water.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
|
$this->breadcrumb('卫星遥感');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id='sidebar'>
|
||||||
|
<div id='leftnavi'>
|
||||||
|
<?= $this->partial('water/navi.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id='right'>
|
||||||
|
<div id="intro">
|
||||||
|
<p>卫星遥感是”黑河综合遥感联合试验“的重要组成部分,在试验期通过免费获取、共享计划和商业购买等多种渠道,获取了可见光/近红外、热红外、主被动微波、激光雷达等丰富的卫星数据。</p>
|
||||||
|
<p>大旱卫星遥感数据从EAS,JAXA等机构免费获取,EnviSat数据通过中欧龙计划2期项目获得;JAXA ALOS数据通过Takeo Tadono博士,叶庆华博士和施建成研究员获取(中国科学院青藏所与JAXA合作项目)。</p>
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<?php if ($this->metadata) : ?>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<div id="mdlist">
|
||||||
|
<ol>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<li><a href="/water/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
|
@ -6,13 +6,10 @@ $this->headTitle()->setSeparator(' - ');
|
||||||
$this->headLink()->appendStylesheet('/css/metadata.css');
|
$this->headLink()->appendStylesheet('/css/metadata.css');
|
||||||
$this->breadcrumb('<a href="/">首页</a>');
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/data/tag">关键词浏览</a>');
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
if (!empty($this->codename)) $this->breadcrumb($this->codename);
|
$this->breadcrumb('关键词浏览:'.$this->codename);
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
<div id='tools'>
|
|
||||||
<?= $this->partial('data/tools.phtml'); ?>
|
|
||||||
</div>
|
|
||||||
<?php if (!empty($this->metadata)) : ?>
|
<?php if (!empty($this->metadata)) : ?>
|
||||||
<div id='metacontent'>
|
<div id='metacontent'>
|
||||||
<h1>当前浏览:<?php echo $this->codename; ?></h1>
|
<h1>当前浏览:<?php echo $this->codename; ?></h1>
|
||||||
|
@ -28,25 +25,4 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
</div>
|
</div>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</div>
|
</div>
|
||||||
<?php else : ?>
|
|
||||||
<div id='leftnav'>
|
|
||||||
<?php
|
|
||||||
$keytypezh=array('place'=>'地点关键词','theme'=>'主题关键词','discipline'=>'学科关键词','stratum'=>'地层关键词','temporal'=>'时间关键词');
|
|
||||||
$type='';
|
|
||||||
foreach($this->keywords as $cg) :
|
|
||||||
if ($type!=$cg['keytype']) :
|
|
||||||
if ($type!='') : ?>
|
|
||||||
</ul></fieldset>
|
|
||||||
<?php endif;
|
|
||||||
$type=$cg['keytype'];
|
|
||||||
?>
|
|
||||||
<fieldset><legend><?php echo $keytypezh[$type]; ?></legend>
|
|
||||||
<ul>
|
|
||||||
<li><a href='/data/tag/<?php echo urlencode($cg['keyword']); ?>'><?php echo $cg['keyword']; ?></a><span class="note">(<?php echo $cg['count']; ?>)</span></li>
|
|
||||||
<?php else : ?>
|
|
||||||
<li><a href='/data/tag/<?php echo urlencode($cg['keyword']); ?>'><?php echo $cg['keyword']; ?></a><span class="note">(<?php echo $cg['count']; ?>)</span></li>
|
|
||||||
<?php endif; ?>
|
|
||||||
<?php endforeach; ?>
|
|
||||||
</ul>
|
|
||||||
</fieldset></div>
|
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
@ -6,7 +6,7 @@ $this->headLink()->appendStylesheet('/css/water.css');
|
||||||
$this->breadcrumb('<a href="/">首页</a>');
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
$this->breadcrumb('花寨子试验区');
|
$this->breadcrumb('盈科绿洲加密观测区');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
@ -18,9 +18,6 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
<div id='right'>
|
<div id='right'>
|
||||||
<div id="intro">
|
<div id="intro">
|
||||||
|
|
||||||
<p> 冰沟流域(38°01′~38°04′N,100°12′~100°18′E)位于黑河上游东支二级支流上(图5),海拔3450~4400m,平均为 3920m。流域面积30.48km2,平均宽度3.59km,植被分布面积19.82km2,占流域总面积的65%左右。气象场年平均气温-2.5℃,最低气温-30.8℃,最高气温24.8℃,流域源头的年平均气温为-7℃。季节性积雪厚度约为0.5m,最深达0.8~1.0m。多年冻土下界可能在 3400m左右。长期观测积雪、冻土、气象、植被等寒区水文变量与参数,并开展地基微波辐射计和野外光谱仪等项目综合观测。
|
|
||||||
冰沟流域分布图如下。</p>
|
|
||||||
<img src="/images/water/arou.jpg" />
|
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<?php if ($this->metadata) : ?>
|
<?php if ($this->metadata) : ?>
|
||||||
|
|
|
@ -6,7 +6,7 @@ $this->headLink()->appendStylesheet('/css/water.css');
|
||||||
$this->breadcrumb('<a href="/">首页</a>');
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
$this->breadcrumb('张掖市试验区');
|
$this->breadcrumb('张掖市加密观测区');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
@ -18,9 +18,6 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
<div id='right'>
|
<div id='right'>
|
||||||
<div id="intro">
|
<div id="intro">
|
||||||
|
|
||||||
<p> 冰沟流域(38°01′~38°04′N,100°12′~100°18′E)位于黑河上游东支二级支流上(图5),海拔3450~4400m,平均为 3920m。流域面积30.48km2,平均宽度3.59km,植被分布面积19.82km2,占流域总面积的65%左右。气象场年平均气温-2.5℃,最低气温-30.8℃,最高气温24.8℃,流域源头的年平均气温为-7℃。季节性积雪厚度约为0.5m,最深达0.8~1.0m。多年冻土下界可能在 3400m左右。长期观测积雪、冻土、气象、植被等寒区水文变量与参数,并开展地基微波辐射计和野外光谱仪等项目综合观测。
|
|
||||||
冰沟流域分布图如下。</p>
|
|
||||||
<img src="/images/water/arou.jpg" />
|
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<?php if ($this->metadata) : ?>
|
<?php if ($this->metadata) : ?>
|
||||||
|
|
|
@ -6,7 +6,7 @@ $this->headLink()->appendStylesheet('/css/water.css');
|
||||||
$this->breadcrumb('<a href="/">首页</a>');
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
$this->breadcrumb('<a href="/water/">黑河综合遥感联合试验</a>');
|
||||||
$this->breadcrumb('观象台试验区');
|
$this->breadcrumb('观象台加密观测区');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
@ -18,9 +18,6 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
<div id='right'>
|
<div id='right'>
|
||||||
<div id="intro">
|
<div id="intro">
|
||||||
|
|
||||||
<p> 冰沟流域(38°01′~38°04′N,100°12′~100°18′E)位于黑河上游东支二级支流上(图5),海拔3450~4400m,平均为 3920m。流域面积30.48km2,平均宽度3.59km,植被分布面积19.82km2,占流域总面积的65%左右。气象场年平均气温-2.5℃,最低气温-30.8℃,最高气温24.8℃,流域源头的年平均气温为-7℃。季节性积雪厚度约为0.5m,最深达0.8~1.0m。多年冻土下界可能在 3400m左右。长期观测积雪、冻土、气象、植被等寒区水文变量与参数,并开展地基微波辐射计和野外光谱仪等项目综合观测。
|
|
||||||
冰沟流域分布图如下。</p>
|
|
||||||
<img src="/images/water/arou.jpg" />
|
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<?php if ($this->metadata) : ?>
|
<?php if ($this->metadata) : ?>
|
||||||
|
|
Loading…
Reference in New Issue