添加water专门处理页面
This commit is contained in:
parent
9bd49c990f
commit
affa5ca68a
|
@ -94,6 +94,11 @@ routes.dataseries.route = "data/series/:id"
|
||||||
routes.dataseries.defaults.controller = "data"
|
routes.dataseries.defaults.controller = "data"
|
||||||
routes.dataseries.defaults.action = "series"
|
routes.dataseries.defaults.action = "series"
|
||||||
|
|
||||||
|
routes.wateruuid.route = "water/:uuid"
|
||||||
|
routes.wateruuid.defaults.controller = "water"
|
||||||
|
routes.wateruuid.defaults.action = "view"
|
||||||
|
routes.wateruuid.reqs.uuid = "[[:xdigit:]]{8}(-[[:xdigit:]]{4}){3}-[[:xdigit:]]{12}"
|
||||||
|
|
||||||
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"
|
||||||
|
|
|
@ -0,0 +1,93 @@
|
||||||
|
<?php
|
||||||
|
class WaterController extends DataController
|
||||||
|
{
|
||||||
|
private $limit=20;
|
||||||
|
function indexAction()
|
||||||
|
{
|
||||||
|
//关键词
|
||||||
|
$state=$this->db->query("select keyword.keyword,count(*) from keyword left join metadata on keyword.id=metadata.id where keyword.keytype='place' and metadata.source='0595169a-279e-4b95-819f-129d0ba4280d' group by keyword.keyword order by count desc");
|
||||||
|
$k1=$state->fetchAll();
|
||||||
|
$state=$this->db->query("select k.keyword,count(k.keyword) from keyword k left join metadata m on k.id=m.id where k.keytype='theme' and m.source='0595169a-279e-4b95-819f-129d0ba4280d' group by k.keyword order by count(k.keyword) desc");
|
||||||
|
$k2=$state->fetchAll();
|
||||||
|
$state=$this->db->query("select keyword.keyword,count(*) from keyword left join metadata on keyword.id=metadata.id where keyword.keytype='temporal' and metadata.source='0595169a-279e-4b95-819f-129d0ba4280d' group by keyword.keyword order by count desc");
|
||||||
|
$k5=$state->fetchAll();
|
||||||
|
$this->view->keywords=array('place'=>$k1,'theme'=>$k2,'discipline'=>$k3,'stratum'=>$k4,'temporal'=>$k5);
|
||||||
|
|
||||||
|
$searchform=new SearchForm();
|
||||||
|
$this->view->searchform=$searchform;
|
||||||
|
}
|
||||||
|
function overviewAction()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
function coldAction()
|
||||||
|
{
|
||||||
|
$this->getmd('上游寒区水文试验区');
|
||||||
|
//$this->view->searchform=new SearchForm();
|
||||||
|
}
|
||||||
|
function bgAction()
|
||||||
|
{
|
||||||
|
//metadata
|
||||||
|
// 必须确认时间范围信息检查!
|
||||||
|
$this->getmd('冰沟流域加密观测区');
|
||||||
|
}
|
||||||
|
function arAction()
|
||||||
|
{
|
||||||
|
$this->getmd('阿柔试验区');
|
||||||
|
}
|
||||||
|
function bdkAction()
|
||||||
|
{
|
||||||
|
$this->getmd('扁都口试验区');
|
||||||
|
}
|
||||||
|
function forestAction()
|
||||||
|
{
|
||||||
|
$this->getmd('森林水文试验区');
|
||||||
|
}
|
||||||
|
function dykAction()
|
||||||
|
{
|
||||||
|
$this->getmd('大野口试验区');
|
||||||
|
}
|
||||||
|
function plgAction()
|
||||||
|
{
|
||||||
|
$this->getmd('排露沟流域加密观测区');
|
||||||
|
}
|
||||||
|
function aridAction()
|
||||||
|
{
|
||||||
|
$this->getmd('中游干旱区水文试验区');
|
||||||
|
}
|
||||||
|
function hzzAction()
|
||||||
|
{
|
||||||
|
$this->getmd('花寨子试验区');
|
||||||
|
}
|
||||||
|
function ykAction()
|
||||||
|
{
|
||||||
|
$this->getmd('盈科绿洲试验区');
|
||||||
|
}
|
||||||
|
function zyAction()
|
||||||
|
{
|
||||||
|
$this->getmd('张掖市试验区');
|
||||||
|
}
|
||||||
|
function zynocAction()
|
||||||
|
{
|
||||||
|
$this->getmd('张掖观象台试验区');
|
||||||
|
}
|
||||||
|
function lzgAction()
|
||||||
|
{
|
||||||
|
$this->getmd('临泽草地加密观测区');
|
||||||
|
}
|
||||||
|
function lzsAction()
|
||||||
|
{
|
||||||
|
$this->getmd('临泽站试验区');
|
||||||
|
}
|
||||||
|
private function getmd($keyword)
|
||||||
|
{
|
||||||
|
$page=(int)$this->_request->getParam('page');
|
||||||
|
if (empty($page)) $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."')");
|
||||||
|
$row=$state->fetchAll();
|
||||||
|
$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 ?";
|
||||||
|
$this->view->metadata=$this->db->fetchAll($sql,array($this->limit,$offset));
|
||||||
|
$this->view->page=new Pagination($sum,$page,$this->limit);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,110 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
|
||||||
|
$this->headTitle('高级搜索');
|
||||||
|
if (!empty($this->codename)) $this->headTitle($this->codename);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/metadata.css');
|
||||||
|
$this->headLink()->appendStylesheet('/css/search.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('高级搜索');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div id='tools'>
|
||||||
|
<?= $this->partial('data/tools.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
<?php if (!empty($this->metadata)) : ?>
|
||||||
|
<?php echo $this->page->getNavigation();
|
||||||
|
foreach($this->metadata as $md) : ?>
|
||||||
|
<hr />
|
||||||
|
<div class="mditem">
|
||||||
|
<div class="thumb"><img src="/data/thumb/id/<?php echo $md['id'];?>" /></div>
|
||||||
|
<h2><a href="/data/<?php echo $md['uuid'];?>"><?php echo $this->escape($md['title']);?></a>
|
||||||
|
</h2>
|
||||||
|
<span><?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?></span>
|
||||||
|
</div>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
<hr />
|
||||||
|
<?php echo $this->page->getNavigation();?>
|
||||||
|
<?php else: ?>
|
||||||
|
<!--westdc.westgis.ac.cn-->
|
||||||
|
<script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAACD-MqkkoOm60o_dvwdcKVhRBSKpgcP88GYi6r2Of16IkMX_4YhSBQsywCi4J2_fh4nBuWmK7gyRjLg"></script>
|
||||||
|
<!--test.westgis.ac.cn
|
||||||
|
<script src='http://maps.google.com/maps?file=api&v=2&key=ABQIAAAACD-MqkkoOm60o_dvwdcKVhThiRESR0xRCe9JKd36EL3glTk0OxTsRzifkUWmTTrYWaE7dY1lYUlGxA'></script>
|
||||||
|
-->
|
||||||
|
<script src="/js/dragzoom.js" type="text/javascript"></script>
|
||||||
|
<div id="map"></div>
|
||||||
|
<div id="spatial">
|
||||||
|
<form id="search" enctype="application/x-www-form-urlencoded" action="/data/advancesearch" method="post">
|
||||||
|
<!--<fieldset><legend>时间范围</legend><ul>
|
||||||
|
<li><span>开始时间:</span>
|
||||||
|
<input name="start" type="text" id="start" />
|
||||||
|
</li>
|
||||||
|
<li><span>结束时间:</span>
|
||||||
|
<input name="end" type="text" id="end" />
|
||||||
|
</li></ul></fieldset>-->
|
||||||
|
<fieldset><legend>空间范围</legend><ul>
|
||||||
|
<li><span>东:</span>
|
||||||
|
|
||||||
|
<input name="e" id="e" type="text" /></li>
|
||||||
|
<li><span>南:</span>
|
||||||
|
<input name="s" id="s" type="text" /></li>
|
||||||
|
<li><span>西:</span>
|
||||||
|
<input name="w" id="w" type="text" /></li>
|
||||||
|
<li><span>北:</span>
|
||||||
|
<input name="n" id="n" type="text" /></li></ul></fieldset>
|
||||||
|
<span>关键词:</span><input name="q" id="q" type="text" />
|
||||||
|
<input id="search" type="submit" value="搜索" onclick="dosubmit()" />
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
function dosubmit()
|
||||||
|
{
|
||||||
|
theForm.action="/data/advancesearch";
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
var map = new GMap2(document.getElementById("map"));
|
||||||
|
map.setCenter(new GLatLng(36, 103.5, 5));
|
||||||
|
map.addControl(new GSmallMapControl());
|
||||||
|
map.addControl(new GMapTypeControl());
|
||||||
|
map.setMapType(G_HYBRID_MAP);
|
||||||
|
var txte=document.getElementById("e");
|
||||||
|
var txtw=document.getElementById("w");
|
||||||
|
var txtn=document.getElementById("n");
|
||||||
|
var txts=document.getElementById("s");
|
||||||
|
/* first set of options is for the visual overlay.*/
|
||||||
|
var boxStyleOpts = {
|
||||||
|
opacity: .2,
|
||||||
|
border: "2px solid red"
|
||||||
|
}
|
||||||
|
|
||||||
|
/* second set of options is for everything else */
|
||||||
|
var otherOpts = {
|
||||||
|
buttonHTML: "<img src='/images/zoom-button.gif' />",
|
||||||
|
buttonZoomingHTML: "<img src='/images/zoom-button-activated.gif' />",
|
||||||
|
buttonStartingStyle: {width: '24px', height: '24px'}
|
||||||
|
};
|
||||||
|
|
||||||
|
/* third set of options specifies callbacks */
|
||||||
|
var callbacks = {
|
||||||
|
dragend: function(nw,ne,se,sw,nwpx,nepx,sepx,swpx){txte.value=ne.lng();txtn.value=ne.lat();txts.value=sw.lat();txtw.value=sw.lng();}
|
||||||
|
};
|
||||||
|
|
||||||
|
map.addControl(new DragZoomControl(boxStyleOpts, otherOpts, callbacks));
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div id="help">
|
||||||
|
<fieldset><legend>搜索说明</legend><ul><li>关键词:您可以使用一个关键词,比如"沙漠",也可以使用多个关键词,中间用空格分开。</li>
|
||||||
|
<li>空间范围:这是以度为单位的十进制数字。比如,东经125度30分,可以输入为125.5。您也可以通过下面的在线地图工具直接在图上拉框选择一个范围,空间坐标会自动转换到文本框中。</li>
|
||||||
|
<li>时间范围:指数据的时间范围,从开始时间到结束时间,若结束时间不填,则是一个时间点。时间格式为YYYY-MM-DD。</li>
|
||||||
|
<li>还不清楚?您可以到<a href="http://forum.westgis.ac.cn/viewforum.php?f=30">论坛</a>提问。</li>
|
||||||
|
</ul></fieldset>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<?php endif; ?>
|
|
@ -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> 冰沟流域(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>
|
||||||
|
<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> 冰沟流域(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>
|
||||||
|
<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> 冰沟流域(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>
|
||||||
|
<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> 冰沟流域(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>
|
||||||
|
<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,28 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('全部浏览');
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/metadata.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('浏览');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div id='tools'>
|
||||||
|
<?= $this->partial('data/tools.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<hr />
|
||||||
|
<div class="mditem">
|
||||||
|
<div class="thumb"><img src="/data/thumb/id/<?php echo $md['id'];?>" /></div>
|
||||||
|
<h2><a href="/data/<?php echo $md['uuid'];?>"><?php echo $this->escape($md['title']);?></a>
|
||||||
|
<a href="/data/xml/id/<?php echo $md['id'];?>" title="XML模式查看"><img src="/images/xml.gif" /></a>
|
||||||
|
<a href="/data/map/id/<?php echo $md['id']; ?>" title="查看数据空间范围"><img src="/images/map.gif" /></a>
|
||||||
|
</h2>
|
||||||
|
<div class="summary"><?php echo str_replace(array("\r\n", "\n", "\r"),'<br />',mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']));?></div>
|
||||||
|
</div>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
<hr />
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
|
@ -0,0 +1,39 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('分类浏览');
|
||||||
|
if (!empty($this->codename)) $this->headTitle($this->codename);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/metadata.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/data/category">分类浏览</a>');
|
||||||
|
if (!empty($this->codename)) $this->breadcrumb($this->codename);
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div id='tools'>
|
||||||
|
<?= $this->partial('data/tools.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id='leftnav'>
|
||||||
|
<fieldset><legend>数据集类别</legend>
|
||||||
|
<ul>
|
||||||
|
<?php foreach($this->category as $cg) : ?>
|
||||||
|
<li><a href='/data/category/code/<?php echo $cg['code']; ?>'><?php (empty($cg['name_zh']))?print($cg['name']):print($cg['name_zh']); ?></a><span class="note">(<?php echo $cg['count']; ?>)</span></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ul></fieldset>
|
||||||
|
</div>
|
||||||
|
<div id='metacontent'>
|
||||||
|
<?php if (!empty($this->metadata)) : ?>
|
||||||
|
<h1>当前浏览分类:<?php echo $this->codename; ?></h1>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<hr />
|
||||||
|
<div class="mditem">
|
||||||
|
<div class="thumb"><img src="/data/thumb/id/<?php echo $md['id'];?>" /></div>
|
||||||
|
<h2><a href="/data/<?php echo $md['uuid']; ?>"><?php echo $this->escape($md['title']);?></a>
|
||||||
|
</h2>
|
||||||
|
<span><?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?></span>
|
||||||
|
</div>
|
||||||
|
<?php endforeach;
|
||||||
|
endif; ?>
|
||||||
|
</div>
|
|
@ -0,0 +1,72 @@
|
||||||
|
<?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>
|
||||||
|
<img src="/images/water/cold.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>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
<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; ?>
|
||||||
|
-->
|
|
@ -0,0 +1,35 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('特色数据集');
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/datasetcd.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('特色数据集');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
$auth = Zend_Auth::getInstance();
|
||||||
|
?>
|
||||||
|
<?php
|
||||||
|
foreach ($this->rows as $row) {
|
||||||
|
?>
|
||||||
|
<div class="itemCd">
|
||||||
|
<div class="image"><img src="<?php echo $row->img; ?>" /></div>
|
||||||
|
<div class="title"><?php echo $row->title;?></div>
|
||||||
|
<div class="filesize">(<?php echo $row->size;?>MB)</div>
|
||||||
|
<div class="descript"><span class="intro">简介:</span><?php echo $row->descript; ?></div>
|
||||||
|
|
||||||
|
<div class="link">
|
||||||
|
<?php if ($row->uuid) : ?>
|
||||||
|
<a href="/data/download/uuid/<?php echo $row->uuid; ?>">直接下载</a>(需登录)
|
||||||
|
| <a href="/data/<?php echo $row->uuid; ?>">详细元数据信息</a>
|
||||||
|
<?php else: ?>
|
||||||
|
<?php if ($auth->hasIdentity()) : ?>
|
||||||
|
<a href="<?php echo $row->url;?>">下载ISO文件</a>
|
||||||
|
<?php else: ?>
|
||||||
|
<a href="/account/login">请先登录后再下载ISO文件</a>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
| <a href="<?php echo $row->document;?>">详细数据文档</a></div>
|
||||||
|
</div>
|
||||||
|
<?php } ?>
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('浏览详细元数据');
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/metadata.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('浏览详细元数据');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div id="detailxml">
|
||||||
|
<?php echo $this->xml; ?>
|
||||||
|
</div>
|
|
@ -0,0 +1,53 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('下载');
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/download.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('下载');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div id="download">
|
||||||
|
<h1><?php echo $this->md['title']; ?>(<?php echo $this->md['filesize']; ?>MB)</h1>
|
||||||
|
<div id="thumb"><img src="/data/thumb/id/<?php echo $this->md['id'];?>" /></div>
|
||||||
|
<div id="ftpurl">
|
||||||
|
<fieldset><legend>FTP下载地址</legend>
|
||||||
|
<ul>
|
||||||
|
<?php if ($this->ftpurls) : ?>
|
||||||
|
<?php foreach($this->ftpurls as $ftp) : ?>
|
||||||
|
<li><a href="<?php echo $ftp; ?>"><?php echo $ftp; ?></a></li>
|
||||||
|
<?php endforeach; endif;?>
|
||||||
|
</ul>
|
||||||
|
</fieldset>
|
||||||
|
</div>
|
||||||
|
<div id="link">
|
||||||
|
<?php if ($this->links) : ?>
|
||||||
|
<fieldset><legend>其他在线资源</legend>
|
||||||
|
<ul><?php foreach($this->links as $link) : ?>
|
||||||
|
<li><a href="<?php echo $link['linkage']; ?>">
|
||||||
|
<?php
|
||||||
|
if (!empty($link['name']))
|
||||||
|
echo $link['name'];
|
||||||
|
elseif (!empty($link['description']))
|
||||||
|
echo $link['description'];
|
||||||
|
else
|
||||||
|
echo $link['linkage'];
|
||||||
|
?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ul>
|
||||||
|
<?php endif; ?>
|
||||||
|
</fieldset>
|
||||||
|
</div>
|
||||||
|
<div id="ftpinfo">
|
||||||
|
<fieldset><legend>FTP使用说明</legend>
|
||||||
|
帐号信息如下:<ul><li>FTP的用户名:<?php echo $this->username; ?></li>
|
||||||
|
<li>FTP的密码:<?php echo $this->userpass; ?></li>
|
||||||
|
<li>密码有效期限:<?php echo $this->ftptime; ?></li>
|
||||||
|
</ul>
|
||||||
|
<p>FTP是一种常用的文件传输协议,西部数据中心推荐您使用使用开源的<a href="http://filezilla-project.org">FileZilla</a>软件来进行数据下载,您可以使用您自己喜欢的FTP客户端来进行数据下载。</p>
|
||||||
|
<img src="/images/filezilla-westdc.png" alt="以FileZilla演示如何下载数据" />
|
||||||
|
</fieldset>
|
||||||
|
</div>
|
||||||
|
</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> 冰沟流域(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>
|
||||||
|
<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,20 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('特色推荐');
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/feature.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('特色推荐');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
$auth = Zend_Auth::getInstance();
|
||||||
|
?>
|
||||||
|
<?php foreach ($this->feature as $f) { ?>
|
||||||
|
<div class="item">
|
||||||
|
<img src="<?= $f['imgurl']; ?>" alt="<?= $f['imgtext']; ?>"/>
|
||||||
|
<h2><?= $f['title'];?></h2>
|
||||||
|
<div class="description"><?= $f['description']; ?></div>
|
||||||
|
<div class="more"><a href="<?= $f['detailurl'];?>">详细</a></div>
|
||||||
|
</div>
|
||||||
|
<?php } ?>
|
|
@ -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> 冰沟流域(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>
|
||||||
|
<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> 冰沟流域(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>
|
||||||
|
<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,113 @@
|
||||||
|
<?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('黑河综合遥感联合试验');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div id='sidebar'>
|
||||||
|
<div id='leftnavi'>
|
||||||
|
<?= $this->partial('water/navi.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
<div id='static'>
|
||||||
|
<hr />
|
||||||
|
<h3>统计信息</h3>
|
||||||
|
<ul>
|
||||||
|
<li>元数据400条</li>
|
||||||
|
<li>观测数据X天</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id='right'>
|
||||||
|
<div id="intro">
|
||||||
|
<p>地球表层系统科学已成为实验科学!在地球表层系统科学从经验科学走向实验科学的进程中,一系列针对地表过程的大型观测试验扮演了重要的角色,正是这些观测试验对地理学、水文学、生态学、 大气科学和整个地球系统科学的快速发展起到了举足轻重的作用,许多试验甚至成为一个阶段科学认识和研究方法进步的里程碑。</p>
|
||||||
|
<p>中国西部地区有着鲜明的寒区和旱区相伴而生的特点,特别是内陆河流域,具有全球独特的以水为纽带的“冰雪/冻土-河流-湖泊-绿洲-沙漠”多元自然景观,是在流域尺度上开展寒区和干旱区水文和生态等陆面过程研究的理想场所。近年来,以流域为基本单元,围绕水-土-气-生-人相互作用,国内科技界开展了一系列卓有成效的研究,并且逐渐认识到必须以现代地球系统科学的思想为指导,以现代模型模拟及信息获取与处理技术为手段,开展综合集成研究,才能更好地立足于科学前沿的探索,同时也服务于未来的国家需求。显然,集成研究中机理剖析的深入和综合模型的建立,无不有赖于高分辨率、高质量和系统化的基础数据集,但无论是现有的观测数据或者是国际上其他地区的陆面过程试验数据,都无法满足流域科学集成研究的要求,数据瓶颈的问题十分突出。因此,亟待开展一次基础性的、多尺度的、多学科联合的、精心设计的综合观测试验。“黑河流域遥感-地面观测同步试验与综合模拟平台建设 ”研究项目,正是基于这样的背景,在“中国科学院西部行动计划二期”的“考虑长远,引领发展”的指导思想下提出的。</p>
|
||||||
|
<p>
|
||||||
|
“黑河综合遥感联合试验”是由中国科学院西部行动计划(二期)项目“黑河流域遥感
|
||||||
|
-地面观测同步试验与综合模拟平台建设”与国家重点基础研究发展计划(973计划)项
|
||||||
|
目“陆表生态环境要素主被动遥感协同反演理论与方法”共同设计并组织实施。是在流
|
||||||
|
域尺度上开展的,以水循环及与之密切联系的生态过程为主要研究对象的大型航空、卫
|
||||||
|
星遥感与地面同步观测科学试验。</p>
|
||||||
|
<p>
|
||||||
|
试验以具备鲜明的高寒与干旱区伴生为主要特征的黑河流域为试验区,以水循环为主要
|
||||||
|
研究对象,利用航空遥感、卫星遥感、地面雷达、水文气象观测、通量观测、生态监测
|
||||||
|
等相关设备,开展航空、卫星和地面配合的大型观测试验,精细观测干旱区内陆河流域
|
||||||
|
高山冰雪和冻土带、山区水源涵养林带、中游人工绿洲及天然荒漠绿洲带的水循环和生
|
||||||
|
态过程的各个分量;并且以航空遥感为桥梁,通过高精度的真实性验证,发展尺度转换
|
||||||
|
方法,改善从卫星遥感资料反演和间接估计水循环各分量及与之密切联系的生态和其他
|
||||||
|
地表过程分量的模型和算法。
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
“黑河综合遥感联合试验” 由寒区水文试验、森林水文试验和干旱区水文试验,以及
|
||||||
|
一个集成研究――模拟平台和数据平台建设组成,共分为4个主要阶段,包括试验准备
|
||||||
|
期、预试验期、加强试验期和持续观测期。其中,2007年夏季(7~10月)开展了森林
|
||||||
|
水文和中游干旱区水文预试验,冬季(10~12月)开开展了上游寒区水文试验预试验。
|
||||||
|
2007年底建立了加密的气象水文观测网。2008年是加强观测试验实施的重要一年,完成
|
||||||
|
了寒区水文、森林水文和干旱区水文的星-机-地同步加强观测试验。其中,2008年3
|
||||||
|
月12日至4月12日完成了寒区水文试验,5月15日至7月20日完成了森林水文和干旱区水
|
||||||
|
文试验。寒区水文试验开展了针对积雪和冻融的微波辐射计和高光谱航空遥感与地面同
|
||||||
|
步试验;森林水文试验开展了针对森林结构参数和森林水文的高光谱、多角度热红外和
|
||||||
|
激光雷达航空遥感试验;干旱区水文试验开展了针对植被生物物理参数、植被结构、土
|
||||||
|
壤水分和蒸散发的高光谱、多角度热红外、激光雷达和微波辐射计的航空遥感与地面同
|
||||||
|
步试验。加强试验结束后,开展了持续观测试验,主要依靠加密的气象水文观测网持续
|
||||||
|
获取至2008年1月1日至2009年12月31日两个完整年度的资料。试验的设计见参考文献
|
||||||
|
(李新 等,2008),试验总结详见参考文献(Li Xin et al, 2009),上游寒区试验
|
||||||
|
的初步总结详见参考文献(王建 等, 2009),中游试验的初步总结详见参考文献(马
|
||||||
|
明国 等, 2009)。</p>
|
||||||
|
<p>
|
||||||
|
“黑河综合遥感联合试验”共完成25年架次、110个小时的航空遥感飞行试验,来自28
|
||||||
|
家相关单位的281位科学家、工程技术人员和研究生参加试验。获得了大量航空遥感、
|
||||||
|
卫星遥感、地基遥感(微波辐射计、微波散射计、光谱仪)观测、多普勒雷达降水观
|
||||||
|
测、微气象和大气廓线(探空与分光光度计)观测数据、地面同步观测的积雪属性、土
|
||||||
|
壤水分、地表温度和植被生化物理参数等数据。
|
||||||
|
</p>
|
||||||
|
<h3>参考文献:</h3>
|
||||||
|
<p>李新,马明国,王建,刘强,车涛,胡泽勇,肖青,柳钦火,苏培玺,楚荣忠,晋锐,
|
||||||
|
王维真,冉有华。黑河流域遥感-地面观测同步试验:科学目标与试验方案。地球科学
|
||||||
|
进展,2008, 23(9): 897-914. <a href="/images/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
|
||||||
|
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
|
||||||
|
Research. Journal of Geophysical Research, 2009, 114(D22103),
|
||||||
|
doi:10.1029/2008JD011590. <a href="/images/water_02.pdf">下载</a>
|
||||||
|
</p>
|
||||||
|
<p>马明国, 刘强, 阎广建, 陈尔学, 肖青, 苏培玺, 胡泽勇, 李新, 牛铮,王维真, 钱金
|
||||||
|
波, 宋怡, 丁松爽, 辛晓洲, 任华忠, 黄春林, 晋锐, 车涛, 楚荣忠.黑河流域遥感-
|
||||||
|
地面观测同步试验:森林水文和中游干旱区水文试验.地球科学进展,2009,24(7):681-695. <a href="/images/water_01.pdf">下载</a>
|
||||||
|
</p>
|
||||||
|
<p>王建,车涛,张立新,晋锐,王维真,李新,梁继,郝小华,李弘毅,吴月茹.黑河流域上游寒区
|
||||||
|
水文遥感-地面同步观测试验介绍.冰川冻土, 2009, 31(2): 189-197. <a href="/images/water_03.pdf">下载</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--
|
||||||
|
<div id="links">
|
||||||
|
|
||||||
|
<h3>
|
||||||
|
<?php echo $this->searchform; ?>
|
||||||
|
<a href="/data/advancesearch">高级搜索</a></h3>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<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>
|
||||||
|
-->
|
|
@ -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> 冰沟流域(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>
|
||||||
|
<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> 冰沟流域(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>
|
||||||
|
<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,83 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle("空间浏览");
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/metadata.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/data/tag">空间浏览</a>');
|
||||||
|
if (!empty($this->codename)) $this->breadcrumb($this->codename);
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
$this->headScript()->appendFile('/js/OpenLayers.js');
|
||||||
|
$this->headLink()->appendStylesheet('/js/theme/default/style.css');
|
||||||
|
?>
|
||||||
|
<script src='http://maps.google.com/maps?file=api&v=2&key=ABQIAAAACD-MqkkoOm60o_dvwdcKVhRBSKpgcP88GYi6r2Of16IkMX_4YhSBQsywCi4J2_fh4nBuWmK7gyRjLg'></script>
|
||||||
|
<div id='tools'>
|
||||||
|
<?= $this->partial('data/tools.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
<div id='leftnav'>
|
||||||
|
</div>
|
||||||
|
<div id='map' style="clear:left;height:500px;border:1px;"></div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
var map,selectedFeature;
|
||||||
|
|
||||||
|
map = new OpenLayers.Map('map');
|
||||||
|
map.addControl(new OpenLayers.Control.LayerSwitcher());
|
||||||
|
|
||||||
|
var gphy = new OpenLayers.Layer.Google(
|
||||||
|
"Google Physical",
|
||||||
|
{type: G_PHYSICAL_MAP}
|
||||||
|
);
|
||||||
|
var gmap = new OpenLayers.Layer.Google(
|
||||||
|
"Google Streets", // the default
|
||||||
|
{numZoomLevels: 20}
|
||||||
|
);
|
||||||
|
var ghyb = new OpenLayers.Layer.Google(
|
||||||
|
"Google Hybrid",
|
||||||
|
{type: G_HYBRID_MAP, numZoomLevels: 20}
|
||||||
|
);
|
||||||
|
var gsat = new OpenLayers.Layer.Google(
|
||||||
|
"Google Satellite",
|
||||||
|
{type: G_SATELLITE_MAP, numZoomLevels: 20}
|
||||||
|
);
|
||||||
|
|
||||||
|
var ol_wms = new OpenLayers.Layer.WMS( "OpenLayers WMS",
|
||||||
|
"http://labs.metacarta.com/wms/vmap0?", {layers: 'basic'} );
|
||||||
|
|
||||||
|
map.addLayers([ol_wms,gphy, gmap, ghyb, gsat]);
|
||||||
|
map.setCenter(new OpenLayers.LonLat(102, 36), 4);
|
||||||
|
|
||||||
|
function onPopupClose(evt) {
|
||||||
|
selectControl.unselect(selectedFeature);
|
||||||
|
}
|
||||||
|
function onFeatureSelect(feature) {
|
||||||
|
selectedFeature = feature;
|
||||||
|
popup = new OpenLayers.Popup.FramedCloud("chicken",
|
||||||
|
feature.geometry.getBounds().getCenterLonLat(),
|
||||||
|
null,
|
||||||
|
"<div style='font-size:.8em'><a href=/data/"+feature.attributes['uuid']+">"+ feature.attributes['title'] +"</a> | <a href=/data/map/id/"+feature.attributes['id']+"><img src=/images/map.gif></a><hr /><img src=/data/thumb/id/" + feature.attributes['id']+"/></div>",
|
||||||
|
null, false, onPopupClose);
|
||||||
|
feature.popup = popup;
|
||||||
|
map.addPopup(popup);
|
||||||
|
}
|
||||||
|
function onFeatureUnselect(feature) {
|
||||||
|
map.removePopup(feature.popup);
|
||||||
|
feature.popup.destroy();
|
||||||
|
feature.popup = null;
|
||||||
|
}
|
||||||
|
var ajax=new OpenLayers.Ajax.Request('/data/json<?php echo $this->params; ?>',{method:'get',onSuccess:featureresult});
|
||||||
|
function featureresult(response){
|
||||||
|
var feature1= eval('(' + response.responseText + ')');
|
||||||
|
//alert(feature1.type);
|
||||||
|
var geojson_format = new OpenLayers.Format.GeoJSON();
|
||||||
|
var vector_layer = new OpenLayers.Layer.Vector('metadata');
|
||||||
|
map.addLayer(vector_layer);
|
||||||
|
vector_layer.addFeatures(geojson_format.read(feature1));
|
||||||
|
var sf = new OpenLayers.Control.SelectFeature(vector_layer,{onSelect:onFeatureSelect,onUnselect:onFeatureUnselect});
|
||||||
|
map.addControl(sf);
|
||||||
|
sf.activate();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
|
@ -0,0 +1,22 @@
|
||||||
|
<ul>
|
||||||
|
<li><a href="/water/overview">试验简介</a></li>
|
||||||
|
<li><a href="/water/cold">上游寒区水文试验</a>
|
||||||
|
<ul><li><a href="/water/bg">冰沟试验区</a></li>
|
||||||
|
<li><a href="/water/ar">阿柔试验区</a></li>
|
||||||
|
<li><a href="/water/bdk">扁都口试验区</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a href="/water/forest">森林水文试验</a>
|
||||||
|
<ul><li><a href="/water/dyk">大野口试验区</a></li>
|
||||||
|
<li><a href="/water/plg">排露沟试验区</a></li></ul>
|
||||||
|
</li>
|
||||||
|
<li><a href="/water/arid">中游干旱区水文试验</a>
|
||||||
|
<ul><li><a href="/water/hzz">花寨子试验区</a></li>
|
||||||
|
<li><a href="/water/yk">盈科绿洲试验区</a></li>
|
||||||
|
<li><a href="/water/zy">张掖市试验区</a></li>
|
||||||
|
<li><a href="/water/zynoc">观象台试验区</a></li>
|
||||||
|
<li><a href="/water/lzg">临泽草地试验区</a></li>
|
||||||
|
<li><a href="/water/lzs">临泽站试验区</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
|
@ -0,0 +1,43 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('数据通讯');
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/newsletter.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('数据通讯');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<?php
|
||||||
|
foreach ($this->newsletters as $nl){
|
||||||
|
$name=basename($nl,'.pdf');
|
||||||
|
list(,$num)=explode("_",$name);
|
||||||
|
?>
|
||||||
|
<div class="newsletter">
|
||||||
|
|
||||||
|
<a href="/images/newsletter/<?php echo $nl; ?>" target="_blank">
|
||||||
|
<img src="/images/newsletter/<?php echo $name; ?>.jpg" style="margin-bottom: 10px; margin-right: 10px;" border="0" /></a><br />
|
||||||
|
<a href="/images/newsletter/<?php echo $nl; ?>" target="_blank">第<?php echo $num;?>期数据通讯</a>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<p style="clear:left;font-size: 110%;">
|
||||||
|
西部数据中心不定期发布数据通讯,通告中心动态、最新数据、数据工具,以及重要研究进展。</p>
|
||||||
|
<p>
|
||||||
|
在下面文本框里输入您的Email地址,可以订阅数据中心通讯。当通讯发布时,将在第一时间发送到您订阅的Email邮箱里。</p>
|
||||||
|
<div class="note">
|
||||||
|
注意,邮件列表发送的邮件,有可能被您的邮箱当成垃圾邮件隔离,所以请设置您的反垃圾邮箱配置。</div>
|
||||||
|
<?php echo $this->form; ?>
|
||||||
|
<?php if (!empty($this->messages)) : ?>
|
||||||
|
<div id="message">
|
||||||
|
<?php
|
||||||
|
foreach ($this->messages as $info)echo $info;
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
<div class="note"> 备注:您也可以直接给<a href="mailto:westdc-report-subscribe@lists.westgis.ac.cn">数据通讯</a>发送一封标题为subscribe的邮件进行订阅。
|
||||||
|
</div>
|
||||||
|
<br /><br />
|
||||||
|
</div>
|
|
@ -0,0 +1,30 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('最近20条离线数据申请');
|
||||||
|
$this->headTitle($this->codename);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/offlineapp.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('最近20条离线数据申请');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div id="offlinelist">
|
||||||
|
<table>
|
||||||
|
<thead><tr>
|
||||||
|
<td class="name">姓名</td>
|
||||||
|
<td class="unit">单位</td>
|
||||||
|
<td class="date">申请日期</td>
|
||||||
|
<td class="datalist">申请数据</td>
|
||||||
|
</tr></thead>
|
||||||
|
<?php foreach($this->rows as $r) : ?>
|
||||||
|
<tr>
|
||||||
|
<td class="name"><?= $r['username']; ?></td>
|
||||||
|
<td class="unit"><?= $r['unit']; ?></td>
|
||||||
|
<td class="date"><?= date('Y-m-d',strtotime($r['ts_created'])); ?></td>
|
||||||
|
<td class="datalist"><?= $r['datalist']; ?></td>
|
||||||
|
</tr>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</table>
|
||||||
|
</div>
|
|
@ -0,0 +1,25 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('离线数据清单');
|
||||||
|
$this->headTitle($this->codename);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/metadata.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('离线数据清单');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div id='tools'>
|
||||||
|
<?= $this->partial('data/tools.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<hr />
|
||||||
|
<div class="mditem">
|
||||||
|
<a href="/data/<?php echo $md['uuid'];?>"><?php echo $this->escape($md['title']);?></a>
|
||||||
|
<a href="/data/xml/id/<?php echo $md['id'];?>"><img src="/images/xml.gif" /></a>
|
||||||
|
</div>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
<hr />
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
|
@ -0,0 +1,25 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('在线数据清单');
|
||||||
|
$this->headTitle($this->codename);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/metadata.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('在线数据清单');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div id='tools'>
|
||||||
|
<?= $this->partial('data/tools.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<hr />
|
||||||
|
<div class="mditem">
|
||||||
|
<a href="/data/<?php echo $md['uuid'];?>"><?php echo $this->escape($md['title']);?></a>
|
||||||
|
<a href="/data/xml/id/<?php echo $md['id'];?>"><img src="/images/xml.gif" /></a>
|
||||||
|
</div>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
<hr />
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
|
@ -0,0 +1,83 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('离线申请');
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/order.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('离线申请');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div id="message">
|
||||||
|
<?php if ($this->md) : ?>
|
||||||
|
<p>您已经成功把<a href="/data/<?php echo $this->md['uuid']; ?>"><?php echo $this->md['title']; ?></a>放入数据申请程序中!</p>
|
||||||
|
<?php endif; if ($this->messages): foreach($this->messages as $msg): ?>
|
||||||
|
<p><?php echo $msg; ?></p>
|
||||||
|
<?php endforeach;endif; ?>
|
||||||
|
<?php if ($this->msg) : ?>
|
||||||
|
<p><?php echo $this->msg; ?></p>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php if ($this->dataorder0) : ?>
|
||||||
|
<div id="dataorder0">
|
||||||
|
<h1>正在下载中的在线数据(<a href="/data/order/finish/all">完成所有</a> <a href="/data/order/cancel/all">取消所有</a>)</h1>
|
||||||
|
<ul class="title"><li class="time">开始时间</li>
|
||||||
|
<li class="name">数据名称</li>
|
||||||
|
<li class="action">操作</li>
|
||||||
|
</ul>
|
||||||
|
<?php foreach($this->dataorder0 as $order) : ?>
|
||||||
|
<ul><li class="time"><?php echo date('Y-m-d H:i:s',strtotime($order['ts_created'])); ?></li>
|
||||||
|
<li class="name"><a href="/data/<?php echo $order['uuid']; ?>"><?php echo $order['title']; ?></a></li>
|
||||||
|
<li class="action">(<a href="/data/order/finish/<?php echo $order['id']; ?>">完成</a>
|
||||||
|
<a href="/data/order/cancel/<?php echo $order['id']; ?>">取消下载</a>)</li>
|
||||||
|
</ul>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if ($this->dataorder1) : ?>
|
||||||
|
<div id="dataorder1">
|
||||||
|
<h1>准备提交的离线申请(<a href="/data/order/apply/all">提交所有离线申请</a>)</h1>
|
||||||
|
<ul class="title"><li class="time">申请时间</li>
|
||||||
|
<li class="datatype">数据类型</li>
|
||||||
|
<li class="name">数据名称</li>
|
||||||
|
<li class="action">操作</li>
|
||||||
|
</ul>
|
||||||
|
<?php foreach($this->dataorder1 as $order) : ?>
|
||||||
|
<ul><li class="time"><?php echo date('Y-m-d H:i:s',strtotime($order['ts_created'])); ?></li>
|
||||||
|
<li class="datatype"><?php print $order['datatype']?'离线数据':'在线数据'; ?></li>
|
||||||
|
<li class="name"><a href="/data/<?php echo $order['uuid']; ?>"><?php echo $order['title']; ?></a></li>
|
||||||
|
<li class="action">(<a href="/data/order/del/<?php echo $order['id']; ?>">删除</a>
|
||||||
|
<a href="/data/order/apply/<?php echo $order['id']; ?>">离线申请</a>)</li>
|
||||||
|
</ul>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if ($this->dataorder2) : ?>
|
||||||
|
<div id="dataorder2">
|
||||||
|
<h1>已提交的离线申请(<a href="/data/order/pdf/1">生成PDF离线数据申请表</a> )</h1>
|
||||||
|
<ul class="title"><li class="time">申请时间</li>
|
||||||
|
<li class="name">数据名称</li>
|
||||||
|
<li class="status">申请状态</li></ul>
|
||||||
|
<?php foreach($this->dataorder2 as $order) : ?>
|
||||||
|
<ul><li class="time"><?php echo date('Y-m-d H:i:s',strtotime($order['ts_created'])); ?></li>
|
||||||
|
<li class="name"><a href="/data/<?php echo $order['uuid']; ?>"><?php echo $order['title']; ?></a>
|
||||||
|
</li>
|
||||||
|
<li class="status">
|
||||||
|
<?php switch($order['status']) {
|
||||||
|
case 2:
|
||||||
|
echo "请生成PDF申请表";
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
echo "请邮寄PDF申请表并等待";
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
|
@ -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> 冰沟流域(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>
|
||||||
|
<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('离线申请');
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/order.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/data/order">离线申请</a>');
|
||||||
|
$this->breadcrumb('生成离线申请表');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div id="message">
|
||||||
|
<?php if ($this->messages): foreach($this->messages as $msg): ?>
|
||||||
|
<p><?php echo $msg; ?></p>
|
||||||
|
<?php endforeach;endif; ?>
|
||||||
|
<?php if ($this->msg) : ?>
|
||||||
|
<p><?php echo $this->msg; ?></p>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<div id="data2">
|
||||||
|
<p> 为促进中国西部资源与生态环境科学研究,更好的为西部大开发服务,充分利用数据中心多年来的数据积累及国家自然科学基金委员会“中国西部环境与生态科学研究计划”、数字流域等的数据产出,
|
||||||
|
根据我国科学数据共享和基金项目数据管理的有关规定, 中科院寒区旱区环境与工程研究所(简称甲方)同意接收__________(以下简称乙方)的数据申请,并签订数据使用协议(<strong>其中用途部分,请填写您的项目名称、项目编号、项目类型以及使用目的,如自然科学基金、863、973等,以便能更快通过申请。</strong>):
|
||||||
|
</p>
|
||||||
|
<p style="color:red;"> 您必须点击 “提交申请到数据中心” 后西部数据中心才能开始受理您的数据申请!</p>
|
||||||
|
<h1>数据清单</h1>
|
||||||
|
<ul>
|
||||||
|
<?php foreach ($this->data2 as $i=>$md) : ?>
|
||||||
|
<li><?php echo ($i+1).". ".$md['title']; ?></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div id="user">
|
||||||
|
<h1>用户信息(请务必输入真实信息以便邮寄!)</h1>
|
||||||
|
<?php echo $this->form;?>
|
||||||
|
</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> 冰沟流域(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>
|
||||||
|
<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,58 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('如何申请数据');
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
//$this->headLink()->appendStylesheet('/css/terms.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb("<a href='/data'>".$this->config->title->data."</a>");
|
||||||
|
$this->breadcrumb('<a href="/data/request">如何申请数据</a>');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div class="LeftMargin">
|
||||||
|
<h1>如何申请数据?</h1>
|
||||||
|
<p>“西部数据中心”数据申请支持两种方式:在线方式和离线方式。</p>
|
||||||
|
<br />
|
||||||
|
<h2>在线方式: </h2>
|
||||||
|
<p>
|
||||||
|
在线数据获取请访问“西部数据中心”共享门户网站(<a href="Http://westdc.westgis.ac.cn">Http://westdc.westgis.ac.cn</a>),免费注册后,登陆,按类别浏览元数据或者根据关键词进行元数据搜索。如果元数据支持在线下载,在详细元数据里可以找到一个或多个下载链接,点击链接,按提示进行HTTP或FTP下载。使用客户端下载时,建议不超过5线程。<br />
|
||||||
|
</p>
|
||||||
|
<h2>离线方式:</h2>
|
||||||
|
受国家数据政策限制或数据提供者的要求,一些数据提供在线下载。“西部数据中心”有专人负责数据服务,会在尽短时间内回复离线数据请求。“西部数据中心”按照“完全与开放”数据共享原则,以不高于复印、邮寄或材料费提供数据。用户在收到数据后,请按通知返回上述费用。<br />
|
||||||
|
<p>1、找到需要的数据<br />
|
||||||
|
2、点击离线申请<br />
|
||||||
|
3、重复步骤1、2,选择所需的数据,最多可以同时申请5个数据。<br />
|
||||||
|
4、进入"数据篮",提交离线申请。<br />
|
||||||
|
5、根据系统反馈的邮件进行进一步的操作:打印申请表,签字盖章后邮寄给西部数据中心。<br />
|
||||||
|
6、等待西部数据中心答复</p>
|
||||||
|
<p>
|
||||||
|
地址:甘肃兰州东岗西路320号 中国科学院寒区旱区环境与工程研究所 遥感与地理信息科学研究室<br />
|
||||||
|
收件:“西部数据中心”服务组 (收)<br />
|
||||||
|
|
||||||
|
邮编: 730000<br />
|
||||||
|
电话: 0931-4967287 (李红星)<br />
|
||||||
|
<br />
|
||||||
|
</p>
|
||||||
|
<div align="center">
|
||||||
|
<img src="/images/DataRequest.jpg" alt="数据申请流程" width="562" height="410" border="0"
|
||||||
|
usemap="#Map" hidefocus="true" />
|
||||||
|
<map name="Map" id="Map">
|
||||||
|
|
||||||
|
<area shape="poly" coords="203,50,257,51,257,101,258,121,295,125,297,139,161,141,164,125,198,120"
|
||||||
|
href="http://westdc.westgis.ac.cn" />
|
||||||
|
<area shape="poly" coords="192,231,236,232,235,286,253,288,251,304,233,307,233,318,193,317,191,304,177,304,179,288,195,285"
|
||||||
|
href="Documents/application.pdf" />
|
||||||
|
<area shape="poly" coords="25,237,75,235,72,294,96,297,99,315,86,318,88,331,10,332,11,318,0,317,0,296,26,294"
|
||||||
|
href="mailto:westdc@lzb.ac.cn" />
|
||||||
|
</map>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h2>
|
||||||
|
联系我们:</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
任何意见和建议请联系我们,<a href="mailto:westdc@lzb.ac.cn">westdc@lzb.ac.cn</a>。<br />
|
||||||
|
或者<a href="/about/contact">在线提交</a>。<br />
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
|
@ -0,0 +1,31 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
|
||||||
|
$this->headTitle('快速搜索');
|
||||||
|
if (!empty($this->codename)) $this->headTitle($this->codename);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/metadata.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('快速搜索');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div id='tools'>
|
||||||
|
<?= $this->partial('data/tools.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
<?php echo $this->form; ?>
|
||||||
|
<?php if (!empty($this->metadata)) : ?>
|
||||||
|
<?php echo $this->page->getNavigation();
|
||||||
|
foreach($this->metadata as $md) : ?>
|
||||||
|
<hr />
|
||||||
|
<div class="mditem">
|
||||||
|
<div class="thumb"><img src="/data/thumb/id/<?php echo $md['id'];?>" /></div>
|
||||||
|
<h2><a href="/data/<?php echo $md['uuid'];?>"><?php echo $this->escape($md['title']);?></a>
|
||||||
|
</h2>
|
||||||
|
<span><?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?></span>
|
||||||
|
</div>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
<hr />
|
||||||
|
<?php echo $this->page->getNavigation();?>
|
||||||
|
<?php endif; ?>
|
|
@ -0,0 +1,49 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('数据集序列');
|
||||||
|
$this->headTitle($this->codename);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/metadata.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/data/series">数据集浏览</a>');
|
||||||
|
if (!empty($this->codename)) $this->breadcrumb($this->codename);
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div id='tools'>
|
||||||
|
<?= $this->partial('data/tools.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
<div id='leftnav'>
|
||||||
|
<fieldset><legend>数据集序列</legend>
|
||||||
|
<ul>
|
||||||
|
<?php foreach($this->serie as $cg) : ?>
|
||||||
|
<li><a href='/data/series/<?php echo $cg['name']; ?>'><?php echo $cg['name']; ?></a>(<?php echo $cg['count']; ?>)</li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ul></fieldset>
|
||||||
|
<?php if ($this->showtools) : ?>
|
||||||
|
<fieldset><legend>本序列中常用地点关键词</legend>
|
||||||
|
<ul>
|
||||||
|
<?php foreach($this->places as $place) : ?>
|
||||||
|
<li><a href='/data/series/<?php echo $this->seriesid; ?>/<?php echo urlencode($place['keyword']); ?>'><?php echo $place['keyword']; ?></a><span class="note">(<?php echo $place['count']; ?>)</span></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ul>
|
||||||
|
</fieldset>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<?php if (!empty($this->metadata)) : ?>
|
||||||
|
<div id='metacontent'>
|
||||||
|
<h1>当前浏览数据集序列:<?php echo $this->codename; ?></h1>
|
||||||
|
<?php if ($this->showtools) echo $this->form; ?>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<hr />
|
||||||
|
<div class="mditem">
|
||||||
|
<div class="thumb"><img src="/data/thumb/id/<?php echo $md['id'];?>" /></div>
|
||||||
|
<h2><a href="/data/<?php echo $md['uuid']; ?>"><?php echo $this->escape($md['title']);?></a>
|
||||||
|
</h2>
|
||||||
|
<span><?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?></span>
|
||||||
|
</div>
|
||||||
|
<?php endforeach; echo $this->page->getNavigation(); ?>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
|
@ -0,0 +1,31 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('用户服务');
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/service.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb("<a href='/data'>".$this->config->title->data."</a>");
|
||||||
|
$this->breadcrumb('用户服务');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div class="service"><h3>离线数据服务</h3>
|
||||||
|
主要包括网络传输和免费光盘邮寄。网络传输以电子邮件和ftp传输为主要形式,ftp提供72小时存储服务,过期数据自动删除。在数据量过大或不具备网络传输条件的情况下,则提供免费数据光盘邮寄服务。在国家数据共享政策允许范围内,用户按照离线数据申请程序,签署《中国西部环境与生态科学数据中心数据共享协议》之后即可获得离线数据服务。将有专职人员负责受理用户的数据申请,包括准备数据、建立ftp下载链接及后续的服务工作等。但由于基础地理数据、DEM数据、等高线数据、野外实际观测数据(包括气象观测站、水文数据和某些项目提供的野外观测数据)这四类数据属于国家部分保密数据和部分项目提供时要求签字的数据,故包含有上述四类数据的申请协议,申请者需请导师或项目负责人签字后再邮寄打印协议到西部数据中心。对于国家数据共享政策允许范围外的数据(包括密级较高的数据和没有得到数据生产单位授权的数据)数据中心则无法提供。用户在使用数据过程中须严格遵守<a href="/about/terms">在线使用条款和免责声明</a>。
|
||||||
|
<p>自数据服务工作实施以来,得到了广大用户的热情垂询和使用。截止2007年9月,已向80余家科研单位的科研人员提供离线数据服务达200多人次,离线申请数据量现已超过1Tb。网站在线下载数据量达20 GB。查看<a href="/data/offlineapp">离线数据服务纪录</a></p>
|
||||||
|
</div>
|
||||||
|
<div class="service"><h3>数据共享上门服务</h3>
|
||||||
|
|
||||||
|
主要针对西部计划项目进行上门服务,一方面提供数据中心已有共享数据,一方面了解数据需求以及各项目组对数据中心数据服务的意见、建议和要求等,广泛交流总结经验,不断完善数据共享体制。今后,数据共享上门服务将有计划的持续进行。
|
||||||
|
<p>截至2006年10月,数据服务小组共走访了14个城市,39家单位,58个西部计划项目,为西部计划项目免费提供了目前西部数据中心所拥有的共享数据,并广泛征集各项目组对西部数据中心数据服务的意见、建议和要求等,为提高数据服务工作质量奠定了良好的基础。</p>
|
||||||
|
</div>
|
||||||
|
<div class="service"><h3>在线数据服务</h3>
|
||||||
|
目前,数据中心门户网站提供了丰富的数据信息,而且大部分数据可以登录后在线下载。数据服务小组有专人负责维护网络链接的有效性和在线反馈意见的处理,保证数据在线下载顺利畅通,同时,不断完善、补充元数据,最大程度提高数据的利用率。今后,随着网站以及数据共享政策和体制的健全,数据服务将进一步在线化。
|
||||||
|
</div>
|
||||||
|
<div class="service"><h3>完善和收集共享数据</h3>
|
||||||
|
主要是完善现已提交共享的数据,查找数据中可能存在的错误,整理部分共享数据的文档,收集网络上尤其是国外网站上发布的相关的共享影像和气象水文数据。
|
||||||
|
如果您想提交您的数据,请查看<a href="/data/submit">如何提交您的数据</a>。
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="service"><h3>数据中心间的协调与共享</h3>
|
||||||
|
通过WEBSERVICES、RSS、GEOJSON等多种形式,在多个数据中心之间提供基于数据服务的共享。
|
||||||
|
</div>
|
|
@ -0,0 +1,33 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('如何提交数据');
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
//$this->headLink()->appendStylesheet('/css/terms.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb("<a href='/data'>".$this->config->title->data."</a>");
|
||||||
|
$this->breadcrumb('<a href="/data/submit">如何提交数据</a>');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<h2>准备数据</h2>
|
||||||
|
在提交数据之前,您需要首先整理数据,制作相应的数据文档。西部数据中心对数据格式没有要求,但如果是自定义的数据格式,请务必要在数据文档中说明各字段含义及数据使用方式。在撰写数据文档说明中请明确阐述数据背景、生产过程、质量控制、内容、引用等信息,详细请参考我们附件的样例文档。数据汇总后我们会加以整理,并在提交的数据文档基础上进行必要的整理和扩充。
|
||||||
|
|
||||||
|
<h2>提交数据</h2>
|
||||||
|
提交数据有多种方式,若您有任何不清楚,<a href="/about/contact">请务必联系我们</a>。
|
||||||
|
<h3>FTP传输方式</h3>
|
||||||
|
|
||||||
|
这是我们推荐给您的首选方式,优点是支持大文件传输,速度快。您可以使用FTP客户端工具上传数据到我们的文件服务器。
|
||||||
|
FTP地址: ftp://ftp.westgis.ac.cn 用户名:upload 密码:upload (注:此链接只用于数据上传,无法进行下载、删除等操作)
|
||||||
|
请在上传结束后,发送一封电子邮件给<a href="mailto:westdc@lzb.ac.cn">西部数据中心</a>,以便我们尽快地发布您的数据。
|
||||||
|
<h3>电子邮件传输方式</h3>
|
||||||
|
若您的数据量(小于5Mb)不大,也可以采用电子邮件方式发送给我们。我们的邮件地址是:<a href="mailto:westdc@lzb.ac.cn">westdc@lzb.ac.cn</a>。
|
||||||
|
<h3>传统邮寄方式</h3>
|
||||||
|
您也可以通过传统的邮递方式发送给我们,我们的联系地址是:
|
||||||
|
地址:甘肃兰州东岗西路320号 中国科学院寒区旱区环境与工程研究所 遥感与地理信息研究室<br />
|
||||||
|
|
||||||
|
收件:“西部数据中心”服务组 (收)<br />
|
||||||
|
邮编: 730000<br />
|
||||||
|
电话: 0931-4967287 (李红星)<br />
|
||||||
|
<h3>发布数据</h3>
|
||||||
|
我们在接收到您的数据后,将尽快根据您的数据文档制作元数据,发布到西部数据中心网站上。而在发布之前,我们将把其发送给您检查错误。
|
||||||
|
请您在提交数据的同时确定项目数据的共享程度,包括共享开始时间、共享人员范围和共享方式(在线下载或离线申请两种,在线下载只需要用户在西部数据中心网站注册登陆即可,离线申请需要用户签署数据共享协议),如果没有专门指定,我们将按照数据中心数据共享有关规范进行共享。
|
|
@ -0,0 +1,52 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
if (!empty($this->codename)) $this->headTitle($this->codename);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/metadata.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/data/tag">关键词浏览</a>');
|
||||||
|
if (!empty($this->codename)) $this->breadcrumb($this->codename);
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div id='tools'>
|
||||||
|
<?= $this->partial('data/tools.phtml'); ?>
|
||||||
|
</div>
|
||||||
|
<?php if (!empty($this->metadata)) : ?>
|
||||||
|
<div id='metacontent'>
|
||||||
|
<h1>当前浏览:<?php echo $this->codename; ?></h1>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<hr />
|
||||||
|
<div class="thumb"><img src="/data/thumb/id/<?php echo $md['id'];?>" /></div>
|
||||||
|
<div class="mditem">
|
||||||
|
<h2><a href="/data/<?php echo $md['uuid']; ?>"><?php echo $this->escape($md['title']);?></a>
|
||||||
|
|
||||||
|
</h2>
|
||||||
|
<span><?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?></span>
|
||||||
|
</div>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</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; ?>
|
|
@ -0,0 +1,7 @@
|
||||||
|
<?php
|
||||||
|
if (empty($this->thumb->data)) {
|
||||||
|
} else {
|
||||||
|
header("Content-Type:image/jpeg");
|
||||||
|
print base64_decode($this->thumb->data);
|
||||||
|
}
|
||||||
|
?>
|
|
@ -0,0 +1,16 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('时间轴导航');
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/metadata.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/data/timeline">时间轴导航</a>');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
$this->headScript()->appendFile('/js/timeline_var.js');
|
||||||
|
$this->headScript()->appendFile('/js/timeline_js/timeline-api.js');
|
||||||
|
$this->headScript()->appendFile('/js/time.js');
|
||||||
|
?>
|
||||||
|
<div id='tools'><?= $this->partial('data/tools.phtml'); ?></div>
|
||||||
|
<div id="tl" class="timeline-default" style="clear:left;height: 400px;"> </div>
|
|
@ -0,0 +1,83 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('时空导航');
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/metadata.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('<a href="/data/timeline">时空导航</a>');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
$this->headScript()->appendFile('http://maps.google.com/maps?file=api&v=2&key=ABQIAAAACD-MqkkoOm60o_dvwdcKVhRBSKpgcP88GYi6r2Of16IkMX_4YhSBQsywCi4J2_fh4nBuWmK7gyRjLg');
|
||||||
|
$this->headScript()->appendFile('/js/timeline_var.js');
|
||||||
|
$this->headScript()->appendFile('/js/timeline_js/timeline-api.js');
|
||||||
|
$this->headScript()->appendFile('/js/timemap/timemap.js');
|
||||||
|
$this->headScript()->captureStart();
|
||||||
|
?>
|
||||||
|
var tm;
|
||||||
|
window.onload=function() {
|
||||||
|
tm = TimeMap.init({
|
||||||
|
mapId: "map", // Id of map div element (required)
|
||||||
|
timelineId: "timeline", // Id of timeline div element (required)
|
||||||
|
options: {
|
||||||
|
eventIconPath: "../images/"
|
||||||
|
},
|
||||||
|
datasets: [
|
||||||
|
{
|
||||||
|
id: "artists",
|
||||||
|
title: "Artists",
|
||||||
|
theme: "orange",
|
||||||
|
// note that the lines below are now the preferred syntax
|
||||||
|
type: "basic",
|
||||||
|
options: {
|
||||||
|
items: [
|
||||||
|
<?php
|
||||||
|
foreach($this->rows as $row) : ?>
|
||||||
|
{
|
||||||
|
"start" : "<?php echo $row['timebegin']; ?>",
|
||||||
|
<?php if ($row['timeend']!='') : ?>
|
||||||
|
"end" : "<?php echo $row['timeend']; ?>",
|
||||||
|
<?php endif; ?>
|
||||||
|
"polygon" : [
|
||||||
|
{
|
||||||
|
"lat" : <?php echo $row['south']; ?>,
|
||||||
|
"lon" : <?php echo $row['west']; ?>
|
||||||
|
},{
|
||||||
|
"lat" : <?php echo $row['north']; ?>,
|
||||||
|
"lon" : <?php echo $row['west']; ?>
|
||||||
|
},{
|
||||||
|
"lat" : <?php echo $row['north']; ?>,
|
||||||
|
"lon" : <?php echo $row['east']; ?>
|
||||||
|
},{
|
||||||
|
"lat" : <?php echo $row['south']; ?>,
|
||||||
|
"lon" : <?php echo $row['east']; ?>
|
||||||
|
},{
|
||||||
|
"lat" : <?php echo $row['south']; ?>,
|
||||||
|
"lon" : <?php echo $row['west']; ?>
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"title" : "<?php echo $row['title']; ?>",
|
||||||
|
"options" : {
|
||||||
|
// set the full HTML for the info window
|
||||||
|
"infoHtml": "<a href=/data/<?php echo $row['uuid']; ?>><?php echo $row['title']; ?></a><hr /><img src=/data/thumb/id/<?php echo $row['id']; ?> />"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
<?php endforeach; ?>
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
bandIntervals: [
|
||||||
|
Timeline.DateTime.MONTH,
|
||||||
|
Timeline.DateTime.DECADE
|
||||||
|
]
|
||||||
|
});
|
||||||
|
// manipulate the timemap further here if you like
|
||||||
|
}
|
||||||
|
window.onunload=GUnload();
|
||||||
|
<?php $this->headScript()->captureEnd(); ?>
|
||||||
|
<div id='tools'><?= $this->partial('data/tools.phtml'); ?></div>
|
||||||
|
<div id="timemap" style="clear:both;">
|
||||||
|
<div id="timeline" style="height:300px;width:100%;"></div>
|
||||||
|
<div id="map" style="height:300px;"></div>
|
||||||
|
</div>
|
|
@ -0,0 +1,11 @@
|
||||||
|
<ul>
|
||||||
|
<li><a href="/data/tag">数据集关键词浏览</a></li>
|
||||||
|
<li><a href="/data/series">数据集序列浏览</a></li>
|
||||||
|
<li><a href="/data/category">数据集分类浏览</a></li>
|
||||||
|
<li><a href="/data/timeline">时间轴浏览</a></li>
|
||||||
|
<li><a href="/data/map">空间浏览</a></li>
|
||||||
|
<li><a href="/data/timemap">时空浏览</a></li>
|
||||||
|
<li><a href="/data/browse">浏览所有元数据</a></li>
|
||||||
|
<li><a href="/data/search">快速搜索</a></li>
|
||||||
|
<li><a href="/data/advancesearch">高级搜索</a></li>
|
||||||
|
</ul>
|
|
@ -0,0 +1,282 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('数据查看');
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/mdview.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/water">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('查看试验元数据');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
$this->headScript()->appendFile('/js/prototype.js');
|
||||||
|
$this->headScript()->appendFile('/js/OpenLayers.js');
|
||||||
|
$this->headScript()->appendFile('/js/window.js');
|
||||||
|
$this->headLink()->appendStylesheet('/js/theme/default/style.css');
|
||||||
|
?>
|
||||||
|
<?php $md=$this->metadata;if ($md):?>
|
||||||
|
<h1><?php echo $this->escape($md->title);
|
||||||
|
if ($md->title_en) echo '<br />'.$this->escape($md->title_en);?>
|
||||||
|
</h1>
|
||||||
|
<table width=100%><tr><td>
|
||||||
|
<div id="ImageViewer"><img src="/data/thumb/id/<?php echo $md->id;?>" /> </div>
|
||||||
|
</td><td valign="top" align="middle">
|
||||||
|
<div id="ItemSummary">
|
||||||
|
<div id="category">
|
||||||
|
<ul><?php foreach($this->category as $cat): ?>
|
||||||
|
<li><a href="/data/category/code/<?php echo $cat['code'];?>"><?php echo $this->escape($cat['name_zh']);?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
$kt='';
|
||||||
|
$i=0;
|
||||||
|
foreach($this->keys as $cg) :
|
||||||
|
if ($kt==$cg->keytype) :
|
||||||
|
$i+=1;
|
||||||
|
else :
|
||||||
|
if (!empty($kt)) echo '</ul></div>';
|
||||||
|
$kt=$cg->keytype;
|
||||||
|
$i=0;
|
||||||
|
endif;
|
||||||
|
if ($i==0) echo '<div id="'.$cg->keytype.'"><ul>';
|
||||||
|
echo '<li><a href="/data/tag/key/'.urlencode($cg->keyword).'">'.$cg->keyword.'</a></li>';
|
||||||
|
endforeach;
|
||||||
|
echo '</ul></div>';
|
||||||
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
<?php if ($this->series): ?>
|
||||||
|
<div id="series">
|
||||||
|
<ul><?php foreach($this->series as $serie): ?>
|
||||||
|
<li><a href="/data/series/id/<?php echo $serie['id']; ?>"> <?php echo $this->escape($serie['name']);?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<ul id=OtherInfo>
|
||||||
|
<li id="filesize">数据大小:<?php echo $md->filesize; ?>MB</li>
|
||||||
|
<li id="fileformat">数据格式:<?php echo $md->fileformat; ?></li>
|
||||||
|
<?php if ($this->downloaded>9) :?>
|
||||||
|
<li id="downtimes">下载:<?php echo $this->downloaded; ?>次</li>
|
||||||
|
<?php endif; ?>
|
||||||
|
<li id="viewtimes">浏览量:<?php echo $this->viewed; ?>次</li>
|
||||||
|
<?php if ($md->projection) : ?>
|
||||||
|
<li id="projection" title="<?= $this->projection; ?>">数据投影:
|
||||||
|
<?php
|
||||||
|
$p=explode(" ",$this->projection);
|
||||||
|
$p=explode("=",$p[0]);
|
||||||
|
if (!empty($p[1]))
|
||||||
|
echo $p[1];
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (is_numeric($md->projection)) echo 'EPSG_CODE_';
|
||||||
|
echo $md->projection;
|
||||||
|
}
|
||||||
|
?></li>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (!empty($md->timebegin)) : ?>
|
||||||
|
<li id="datatimes">数据时间范围:<?php echo date('Y-m-d',strtotime($md->timebegin));if (!empty($md->timeend)) echo " 至 ".date('Y-m-d',strtotime($md->timeend)); ?></li>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if (!empty($this->doc)) : ?>
|
||||||
|
<li id="datadoc"><a href="<?php $wikiTitle = $this->doc;
|
||||||
|
if(strpos($wikiTitle,'http://wiki.westgis.ac.cn/index.php/')!==false){
|
||||||
|
$title=str_replace('http://wiki.westgis.ac.cn/index.php/','',$wikiTitle);
|
||||||
|
echo "/metainfo/$title";
|
||||||
|
}else{
|
||||||
|
echo $this->doc;
|
||||||
|
}?>">数据说明文档</a></li>
|
||||||
|
<?php endif; ?>
|
||||||
|
<li id="datatype">数据类型:<?php if ($md->datatype) print "离线(可免费申请)"; else print "在线(可直接下载)";?></li>
|
||||||
|
</ul>
|
||||||
|
<div id="linkurl">
|
||||||
|
<?php if (!$md->datatype) : ?>
|
||||||
|
<a href="/data/download/uuid/<?php echo $md->uuid; ?>"><img src="/images/download.png" title="直接下载" /></a>
|
||||||
|
<?php endif; ?>
|
||||||
|
<a href="/data/order/uuid/<?php echo $md->uuid; ?>"><img src="/images/order.png" title="免费!离线申请此数据(在线数据和离线数据都可申请)"/></a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</td><td valign="top">
|
||||||
|
<div id="authors">
|
||||||
|
<h2>联系人</h2>
|
||||||
|
<ul>
|
||||||
|
<?php
|
||||||
|
$party_zh=array('resourceProvider'=>'资源提供者','custodian'=>'维护者','owner'=>'拥有者','user'=>'用户','distributor'=>'分发者','originator'=>'创建者','pointOfContact'=>'联系人','principalInvestigator'=>'调查者','processor'=>'处理者','publisher'=>'元数据发布者','author'=>'元数据作者');
|
||||||
|
$r='';
|
||||||
|
$i=0;
|
||||||
|
foreach($this->authors as $k=>$author) :
|
||||||
|
if ($author['role']!=$r)
|
||||||
|
{
|
||||||
|
$r=$author['role'];
|
||||||
|
$i=0;
|
||||||
|
if ($k>0) echo '</li>';
|
||||||
|
echo '<li>'.$party_zh[$author['role']].':';
|
||||||
|
}
|
||||||
|
if ($i>0) echo ',';
|
||||||
|
$i+=1;
|
||||||
|
echo '<strong title="'.$author['organisation'].'">';
|
||||||
|
if (!empty($author['individual']))
|
||||||
|
echo $author['individual'];
|
||||||
|
else
|
||||||
|
echo $author['organisation'];
|
||||||
|
echo '</strong>';
|
||||||
|
if ($k+1==count($this->authors)) echo '</li>';
|
||||||
|
endforeach;
|
||||||
|
?>
|
||||||
|
</ul>
|
||||||
|
<h2>其他信息</h2><ul>
|
||||||
|
<li>元数据更新时间:<?php print date('Y-m-d',strtotime($md->ts_created)); ?></li>
|
||||||
|
<li><a href="/data/detail/id/<?php echo $md->id;?>">详细元数据</a></li>
|
||||||
|
<li><a href="/data/xml/id/<?php echo $md->id;?>"><img src="/images/xml.gif" alt="查看XML源文件"></a></li>
|
||||||
|
<li><a href="#" id="show-list" rel="<?php echo $md->uuid;?>">文件列表</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</td></tr></table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
(function(a, b) {
|
||||||
|
var ah=document.getElementById(a).offsetHeight, bh=document.getElementById(b).offsetHeight;
|
||||||
|
if (ah > bh) document.getElementById(b).style.height = ah + 'px';
|
||||||
|
})('ItemSummary', 'ImageViewer');
|
||||||
|
</script>
|
||||||
|
<div style="clear:both;border-top:0px solid transparent !important;"></div>
|
||||||
|
<hr />
|
||||||
|
<div id='map'></div>
|
||||||
|
<div id="abstract">
|
||||||
|
<p>
|
||||||
|
<?php echo str_replace(array("\r\n", "\n", "\r"),'</p><p>',$md->description);?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<div id="cite">
|
||||||
|
<?php if ($md->citation) : ?>
|
||||||
|
<h2>本数据引用方式</h2>
|
||||||
|
<p><?php echo $this->escape($md->citation);?></p>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if ($this->ref) : ?>
|
||||||
|
<h2>建议参考文献</h2>
|
||||||
|
<ol>
|
||||||
|
<?php foreach($this->ref as $ref) :
|
||||||
|
echo '<li>'.$ref['reference'].'</li>';
|
||||||
|
endforeach;
|
||||||
|
?>
|
||||||
|
</ol>
|
||||||
|
<?php endif; ?>
|
||||||
|
<h2>数据使用声明</h2>
|
||||||
|
<?php
|
||||||
|
if ($this->uselimits) :
|
||||||
|
foreach($this->uselimits as $uselimit) :
|
||||||
|
echo '<p>'.str_replace(array("\r\n", "\n", "\r"),'</p><p>',$this->escape($uselimit['uselimit'])).'</p>';
|
||||||
|
endforeach;
|
||||||
|
?>
|
||||||
|
<?php else : ?>
|
||||||
|
<p>为尊重知识产权、保障数据作者的权益、扩展数据中心的服务、评估数据的应用潜力,请数据使用者在使用数据所产生的研究成果中(包括公开发表的论文、论著、数据产品和未公开发表的研究报告、数据产品等成果),明确注明数据来源和数据作者。对于转载(二次或多次发布)的数据,作者还须注明原始数据来源。</p>
|
||||||
|
<p>中文发表的成果参考以下规范注明: 数据来源于国家自然科学基金委员会"中国西部环境与生态科学数据中心"(http://westdc.westgis.ac.cn)</p>
|
||||||
|
<p>英文发表的成果依据以下规范注明: The data set is provided by Environmental and Ecological Science Data Center for West China,National Natural Science Foundation of China (http://westdc.westgis.ac.cn)</p>
|
||||||
|
</p>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if ($md->suppinfo) : ?>
|
||||||
|
<h2>项目支持信息</h2>
|
||||||
|
<p><?php echo '<p>'.str_replace(array("\r\n", "\n", "\r"),'</p><p>',$this->escape($md->suppinfo)).'</p>';?></p>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if ($this->resources) : ?>
|
||||||
|
<h2>其他在线资源</h2>
|
||||||
|
<ul><?php foreach($this->resources as $link) : ?>
|
||||||
|
<li><a href="<?php echo $link['linkage']; ?>" title="<?php echo $link['description']; ?>">
|
||||||
|
<?php
|
||||||
|
if (!empty($link['name']))
|
||||||
|
echo $link['name'];
|
||||||
|
elseif (!empty($link['description']))
|
||||||
|
echo $link['description'];
|
||||||
|
else
|
||||||
|
echo $link['linkage'];
|
||||||
|
?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ul>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<?php if ($this->documents) : ?>
|
||||||
|
<div id="documents">
|
||||||
|
<h2>相关文档</h2>
|
||||||
|
<ul>
|
||||||
|
<?php foreach ($this->documents as $r) : ?>
|
||||||
|
<li><a href="/data/<?= $r['uuid']; ?>"><?= $r['title']; ?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<div id="comment">
|
||||||
|
<h2>数据评论</h2>
|
||||||
|
<div id="allcomments">
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function loading()
|
||||||
|
{
|
||||||
|
$('loading').style.display = 'block';
|
||||||
|
}
|
||||||
|
|
||||||
|
function done()
|
||||||
|
{
|
||||||
|
$('loading').style.display = 'none';
|
||||||
|
}
|
||||||
|
|
||||||
|
function reportError(request)
|
||||||
|
{
|
||||||
|
alert('Sorry. There was an error.');
|
||||||
|
}
|
||||||
|
var request_pars = ''; //请求参数
|
||||||
|
var myAjax = new Ajax.Updater('allcomments', '/data/comment/uuid/<?= $md->uuid; ?>',{
|
||||||
|
method : 'get', // http 请求方法,get or post
|
||||||
|
parameters : request_pars, // 请求参数
|
||||||
|
onFailure : reportError, // 失败的时候调用 reportError 函数处理
|
||||||
|
onLoading : loading, // 加载时
|
||||||
|
onComplete : done // 读取完毕
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<?php echo $this->commentForm; ?>
|
||||||
|
</div>
|
||||||
|
<!--westdc.westgis.ac.cn-->
|
||||||
|
<script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAACD-MqkkoOm60o_dvwdcKVhRBSKpgcP88GYi6r2Of16IkMX_4YhSBQsywCi4J2_fh4nBuWmK7gyRjLg"></script>
|
||||||
|
<!--test.westgis.ac.cn
|
||||||
|
<script src='http://maps.google.com/maps?file=api&v=2&key=ABQIAAAACD-MqkkoOm60o_dvwdcKVhThiRESR0xRCe9JKd36EL3glTk0OxTsRzifkUWmTTrYWaE7dY1lYUlGxA'></script>
|
||||||
|
-->
|
||||||
|
<script type="text/javascript">
|
||||||
|
var map = new GMap2(document.getElementById("map"));
|
||||||
|
var plotbounds=new GLatLngBounds(new GLatLng(<?= $md->south; ?>,<?= $md->west; ?>),new GLatLng(<?= $md->north; ?>,<?= $md->east; ?>));
|
||||||
|
var zoomlevel=map.getBoundsZoomLevel(plotbounds);
|
||||||
|
zoomlevel--;
|
||||||
|
if (zoomlevel>16) zoomlevel=16;
|
||||||
|
map.setCenter(new GLatLng(<?= ($md->south+$md->north)/2; ?>,<?= ($md->east+$md->west)/2; ?>), zoomlevel);
|
||||||
|
map.setMapType(G_PHYSICAL_MAP);
|
||||||
|
map.setUIToDefault();
|
||||||
|
|
||||||
|
var polygon=new GPolygon([
|
||||||
|
new GLatLng(<?= $md->north; ?>,<?= $md->west; ?>),
|
||||||
|
new GLatLng(<?= $md->north; ?>,<?= $md->east; ?>),
|
||||||
|
new GLatLng(<?= $md->south; ?>,<?= $md->east; ?>),
|
||||||
|
new GLatLng(<?= $md->south; ?>,<?= $md->west; ?>),
|
||||||
|
new GLatLng(<?= $md->north; ?>,<?= $md->west; ?>)
|
||||||
|
],"#f33f00",5,1,"#ff0000",0.2);
|
||||||
|
map.addOverlay(polygon);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div id="window-outter" style="display:none;">
|
||||||
|
<div id="window-inner">
|
||||||
|
<div id="window-closer-container">[<a href="#" id="window-closer">关闭</a>]</div>
|
||||||
|
<div id="window-content-container">
|
||||||
|
<div id="window-loading">加载中...</div>
|
||||||
|
<ol id="file-list">
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php else: ?>
|
||||||
|
<p>Cannot find the metadata.</p>
|
||||||
|
<p>没有找到对应的元数据。</p>
|
||||||
|
<?php endif;?>
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
<?php
|
||||||
|
$this->headTitle($this->config->title->site);
|
||||||
|
$this->headTitle($this->config->title->data);
|
||||||
|
$this->headTitle('中国西部环境与生态科学重大研究计划');
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/westee.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
|
$this->breadcrumb('中国西部环境与生态科学重大研究计划');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<hr />
|
||||||
|
<div class="mditem">
|
||||||
|
<div class="itemid">ID</div>
|
||||||
|
<div class="title">名称</div>
|
||||||
|
<div class="sponsor">主持人</div>
|
||||||
|
<div class="institute">挂靠单位</div>
|
||||||
|
<div class="date">执行时间</div>
|
||||||
|
</div>
|
||||||
|
<?php foreach($this->westee as $md) : ?>
|
||||||
|
<hr />
|
||||||
|
<div class="mditem">
|
||||||
|
<div class="itemid"><?php echo $md['id'];?></div>
|
||||||
|
<div class="title"><?php echo $md['title'];?></div>
|
||||||
|
<span class="sponsor"><?php echo $md['sponsor'];?></span>
|
||||||
|
<div class="institute"><?php echo $md['institute'];?></div>
|
||||||
|
<div class="date"><?php echo date('Y-m',strtotime($md['start']));?>至<?php echo date('Y-m',strtotime($md['end']));?></div>
|
||||||
|
<?php foreach($this->westeemd as $eemd) : ?>
|
||||||
|
<?php if ($eemd['eeid']==$md['id']) : ?>
|
||||||
|
<div class="data">提交数据:<a href="/data/<?php echo $eemd['uuid'];?>"><?php echo $eemd['title'];?></a></div>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</div>
|
||||||
|
<?php endforeach; ?>
|
|
@ -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> 冰沟流域(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>
|
||||||
|
<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> 冰沟流域(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>
|
||||||
|
<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> 冰沟流域(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>
|
||||||
|
<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,6 +17,7 @@
|
||||||
// add the resources we want to have control over
|
// add the resources we want to have control over
|
||||||
$this->acl->add(new Zend_Acl_Resource('account'));
|
$this->acl->add(new Zend_Acl_Resource('account'));
|
||||||
$this->acl->add(new Zend_Acl_Resource('data'));
|
$this->acl->add(new Zend_Acl_Resource('data'));
|
||||||
|
$this->acl->add(new Zend_Acl_Resource('water'));
|
||||||
$this->acl->add(new Zend_Acl_Resource('admin'));
|
$this->acl->add(new Zend_Acl_Resource('admin'));
|
||||||
// allow access to everything for all users by default
|
// allow access to everything for all users by default
|
||||||
// except for the account management and administration areas
|
// except for the account management and administration areas
|
||||||
|
@ -30,6 +31,7 @@
|
||||||
'register',
|
'register',
|
||||||
'registercomplete'));
|
'registercomplete'));
|
||||||
$this->acl->deny('guest','data',array('download','order'));
|
$this->acl->deny('guest','data',array('download','order'));
|
||||||
|
$this->acl->deny('guest','water',array('download','order'));
|
||||||
// allow members access to the account management area
|
// allow members access to the account management area
|
||||||
$this->acl->allow('member', 'account');
|
$this->acl->allow('member', 'account');
|
||||||
// allows administrators access to the admin area
|
// allows administrators access to the admin area
|
||||||
|
|
Loading…
Reference in New Issue