westdc-zf1/application/default/views/scripts/glacier/geobase.phtml

34 lines
1.8 KiB
PHTML
Raw Normal View History

2013-04-16 09:19:06 +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>');
$this->breadcrumb('<a href="/glacier/">'.$this->config->title->glacier.'</a>');
$this->breadcrumb('基础数据');
$this->breadcrumb()->setSeparator(' > ');
?>
<div class="row">
<div class="span3">
<?= $this->partial('glacier/navi.phtml'); ?>
</div>
<div class="span9">
<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>
</div>