2011-10-21 08:52:32 +00:00
|
|
|
|
<?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>');
|
2011-11-07 15:10:10 +00:00
|
|
|
|
$this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
2011-10-21 08:52:32 +00:00
|
|
|
|
$this->breadcrumb('DEM数据');
|
|
|
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
<div id='sidebar'>
|
|
|
|
|
<div id='leftnavi'>
|
|
|
|
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div id='right'>
|
|
|
|
|
<div class="clear"> </div>
|
|
|
|
|
<div id="intro">
|
|
|
|
|
<p>DEM是数字高程模型的英文简称(Digital Elevation Model),DEM是地貌形态信息的离散表示,这些信息包含流域网格单元的坡度、坡向以及单元格之间的关系等,是开展流域研究的重要原始资料。</p>
|
|
|
|
|
<p>数据包括黑河全流域范围各种不同分辨率的数字高程模型(DEM)(栅格大小为30m、90m、1000m和30sec)。</p>
|
|
|
|
|
</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="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
</ol>
|
|
|
|
|
</div>
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
</div>
|