37 lines
1.6 KiB
PHTML
37 lines
1.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="/glacier/">'.$this->config->title->glacier.'</a>');
|
||
$this->breadcrumb('基础数据');
|
||
$this->breadcrumb()->setSeparator(' > ');
|
||
?>
|
||
|
||
<div id='sidebar'>
|
||
<div id='leftnavi'>
|
||
<?= $this->partial('glacier/navi.phtml'); ?>
|
||
</div>
|
||
</div>
|
||
<div id='right'>
|
||
<div> </div>
|
||
<div id="intro">
|
||
<p>基础数据是指用于开展冰川和冰湖编目的遥感影像、地形图和数字地形模型,由于地形图属国家保密数据,不在共享范围内。</p>
|
||
<p>地形图主要用来地第一次冰川编目数据进行校正,并辅助第二次冰川编目中冰川边界和山脊线的判断。冰川编目中使用和参考的地形图约1105幅,其中1:50,000地形图546幅(航摄制图512幅,陆地摄影测量成果15幅,平板仪测绘及其他地图19幅),1:100,000地形图572幅(航摄制图558幅,平板仪测绘及其他地图14幅),另外还参考了1975年左右的MSS遥感数据地形图7幅。</p>
|
||
<img src="/images/glacier/topographic.png" />
|
||
</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="/glacier/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||
<?php endforeach; ?>
|
||
</ol>
|
||
</div>
|
||
<?php endif; ?>
|
||
</div>
|