74 lines
2.6 KiB
PHTML
74 lines
2.6 KiB
PHTML
<?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> </div>
|
||
<div id="intro">
|
||
|
||
<p>上游寒区水文试验区内的加密观测区包括:<br />
|
||
(1)冰沟流域,流域面积30.28 km<sup>2</sup>,海拔3450~4400 m,平均为3920 m,平均宽度3.59 km,季节性积雪厚度约为0.5 m,最深达0.8~1.0 m,多年冻土下界可能在3400 m左右。主要开展积雪遥感同步观测,长期观测目标为积雪水文和冻土水文。<br />
|
||
(2)阿柔,位于八宝河流域中部河谷地带,海拔约3000 m,地势开阔平坦。主要开展积雪和地表冻融状态的遥感-地面同步观测,并长期观测季节冻土的水热变化特征。<br />
|
||
(3)扁都口,民乐县扁都口以北的平坦开阔地,平均海拔2800 m,观测瞬时积雪及地表冻融状态,验证被动微波地表冻融分类算法。</p>
|
||
<img src="/images/water/cold.jpg" />
|
||
</div>
|
||
<hr />
|
||
<?php if ($this->metadata) : ?>
|
||
<?php echo $this->page->getNavigation(); ?>
|
||
<div id="mdlist">
|
||
<ol start="<?php echo $this->offset; ?>">
|
||
<?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>
|
||
|
||
|
||
<!--
|
||
|
||
<div id='tools'>
|
||
<?= $this->partial('water/tools.phtml'); ?>
|
||
</div>
|
||
|
||
<div id="links">
|
||
|
||
<h3>
|
||
<?php echo $this->searchform; ?>
|
||
<a href="/data/advancesearch">高级搜索</a></h3>
|
||
|
||
|
||
<?php if ($this->keyword) : ?>
|
||
<div id='keyword'>
|
||
<?php
|
||
$keytypezh=array('place'=>'地点关键词','theme'=>'主题关键词','discipline'=>'学科关键词','stratum'=>'地层关键词','temporal'=>'时间关键词');
|
||
foreach($this->keywords as $type=>$kcg) :
|
||
if (is_array($kcg) && count($kcg)>0 ) :
|
||
?>
|
||
<fieldset><legend><a href="/water/tag/"><?php echo $keytypezh[$type]; ?></a></legend>
|
||
<ul>
|
||
<?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>
|
||
<?php endforeach; ?>
|
||
|
||
</ul>
|
||
</fieldset>
|
||
<?php endif;endforeach; ?>
|
||
</div>
|
||
<?php endif; ?>
|
||
-->
|