修改黑河专题页面,修改高级搜索页面插件
This commit is contained in:
parent
d360fd8eff
commit
7491be2bd2
|
@ -7,6 +7,7 @@ class HeiheController extends DataController
|
||||||
{
|
{
|
||||||
parent::preDispatch();
|
parent::preDispatch();
|
||||||
$this->debug = 1;
|
$this->debug = 1;
|
||||||
|
$this->view->pageID = "heihe-".$this->_request->getActionName();
|
||||||
}
|
}
|
||||||
|
|
||||||
function indexAction()
|
function indexAction()
|
||||||
|
@ -276,6 +277,7 @@ class HeiheController extends DataController
|
||||||
function categoryAction()
|
function categoryAction()
|
||||||
{
|
{
|
||||||
$code = (int)$this->_request->getParam('code');
|
$code = (int)$this->_request->getParam('code');
|
||||||
|
$this->view->code = $code;
|
||||||
$page=(int)$this->_request->getParam('page');
|
$page=(int)$this->_request->getParam('page');
|
||||||
if (empty($page)) $page=1;
|
if (empty($page)) $page=1;
|
||||||
$offset=$this->limit*($page-1);
|
$offset=$this->limit*($page-1);
|
||||||
|
|
|
@ -288,7 +288,6 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
</div>
|
</div>
|
||||||
<!-- //页面内容 -->
|
<!-- //页面内容 -->
|
||||||
<script>
|
<script>
|
||||||
$('#wapper').width($('body').width()-300);
|
|
||||||
|
|
||||||
$(function() {
|
$(function() {
|
||||||
//Google map (不启用预先加载)
|
//Google map (不启用预先加载)
|
||||||
|
|
|
@ -12,30 +12,25 @@ $this->breadcrumb('<a href="/author">'.$this->config->title->author.'</a>');
|
||||||
$this->breadcrumb('新建数据');
|
$this->breadcrumb('新建数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
<!-- 左侧导航 -->
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span3">
|
||||||
<div id='leftnavi'>
|
|
||||||
<?= $this->partial('author/navi.phtml'); ?>
|
<?= $this->partial('author/navi.phtml'); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="span9">
|
||||||
<!-- //左侧导航 -->
|
<div>
|
||||||
|
<ul class="nav nav-pills">
|
||||||
<!-- 页面内容 -->
|
<li><a href="/author/newdata">未提交数据列表</a></li>
|
||||||
<div id="wapper">
|
<li><a class="iframe" href="/service/geonetwork?url=metadata.xmlinsert.form">导入元数据</a></li>
|
||||||
<div id="tabs-controller">
|
<li><a href="/author/newdata/ac/add-by-template">根据模板新建元数据</a></li>
|
||||||
<ul>
|
<li><a href="/author/newdata/ac/add-by-data">根据已有数据新建元数据</a></li>
|
||||||
<li class="box-shadow"><a class="text-shadow" href="/author/newdata">未提交数据列表</a></li>
|
<li class="active"><a href="/author/metadata">新建元数据</a></li>
|
||||||
<li class="box-shadow"><a class="text-shadow iframe" href="/service/geonetwork?url=metadata.xmlinsert.form">导入元数据</a></li>
|
|
||||||
<li class="box-shadow"><a class="text-shadow" href="/author/newdata/ac/add-by-template">根据模板新建元数据</a></li>
|
|
||||||
<li class="box-shadow"><a class="text-shadow" href="/author/newdata/ac/add-by-data">根据已有数据新建元数据</a></li>
|
|
||||||
<li class="box-shadow active"><a class="text-shadow" href="/author/metadata">新建元数据</a></li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div id="datalist">
|
<div>
|
||||||
<ul>
|
<ul class="unstyled">
|
||||||
<?php if(!empty($this->MDList)) { ?>
|
<?php if(!empty($this->MDList)) { ?>
|
||||||
<?php foreach($this->MDList as $k=>$v) { ?>
|
<?php foreach($this->MDList as $k=>$v) { ?>
|
||||||
<li id="item_<?= $v['id'] ?>"><p><a href="/author/metadata/ac/new/uuid/<?= $v['uuid']?>"><?= $v['content']->title ?></a></p>
|
<li class="well" id="item_<?= $v['id'] ?>"><p><a href="/author/metadata/ac/new/uuid/<?= $v['uuid']?>"><?= $v['content']->title ?></a></p>
|
||||||
<p>[ 状态:<?= $v['status']==0 ? "草稿":"已提审"?> | <a href="/author/metadata/ac/new/uuid/<?= $v['uuid']?>">修改</a> |
|
<p>[ 状态:<?= $v['status']==0 ? "草稿":"已提审"?> | <a href="/author/metadata/ac/new/uuid/<?= $v['uuid']?>">修改</a> |
|
||||||
<a href="javascript:void(0);" onclick="del(<?= $v['id'] ?>,'<?= $v['uuid']?>')" id="delBtn_<?= $v['id'] ?>">删除</a> ]</p></li>
|
<a href="javascript:void(0);" onclick="del(<?= $v['id'] ?>,'<?= $v['uuid']?>')" id="delBtn_<?= $v['id'] ?>">删除</a> ]</p></li>
|
||||||
<?php }?>
|
<?php }?>
|
||||||
|
@ -45,6 +40,7 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- //页面内容 -->
|
<!-- //页面内容 -->
|
||||||
<script>
|
<script>
|
||||||
|
|
|
@ -5,12 +5,14 @@ $this->headTitle('高级搜索');
|
||||||
if (!empty($this->codename)) $this->headTitle($this->codename);
|
if (!empty($this->codename)) $this->headTitle($this->codename);
|
||||||
$this->headTitle()->setSeparator(' - ');
|
$this->headTitle()->setSeparator(' - ');
|
||||||
$this->headLink()->appendStylesheet('/css/metadata.css');
|
$this->headLink()->appendStylesheet('/css/metadata.css');
|
||||||
$this->headLink()->appendStylesheet('/css/search.css');
|
|
||||||
$this->breadcrumb('<a href="/">首页</a>');
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('高级搜索');
|
$this->breadcrumb('高级搜索');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
$this->headScript()->appendFile('http://maps.google.cn/maps?file=api&v=2&key='.$this->config->google->maps->api);
|
$this->theme->AppendPlus($this,'google_map_v3');
|
||||||
|
$this->theme->AppendPlus($this,'google_map_keydragzone');
|
||||||
|
$this->theme->AppendPlus($this,'jquery_ui');
|
||||||
|
$this->theme->AppendPlus($this,'colorbox');
|
||||||
?>
|
?>
|
||||||
<div>
|
<div>
|
||||||
<?= $this->partial('data/tools.phtml'); ?>
|
<?= $this->partial('data/tools.phtml'); ?>
|
||||||
|
@ -30,69 +32,172 @@ foreach($this->metadata as $md) : ?>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
<?php echo $this->page->getNavigation();?>
|
<?php echo $this->page->getNavigation();?>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<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>
|
<div class="row">
|
||||||
<li><span>南:</span>
|
<div class="span8" id="map_canvas" style="height:500px;"></div>
|
||||||
<input name="s" id="s" type="text" /></li>
|
<div class="span4">
|
||||||
<li><span>西:</span>
|
<form id="search" enctype="application/x-www-form-urlencoded" action="/data/advancesearch" method="post">
|
||||||
<input name="w" id="w" type="text" /></li>
|
<fieldset><legend>时间范围</legend>
|
||||||
<li><span>北:</span>
|
<label>
|
||||||
<input name="n" id="n" type="text" /></li></ul></fieldset>
|
开始时间
|
||||||
<span>关键词:</span><input name="q" id="q" type="text" />
|
<input name="start" type="text" id="start" />
|
||||||
<input id="search" type="submit" value="搜索" onclick="dosubmit()" />
|
</label>
|
||||||
</form>
|
<label>
|
||||||
|
结束时间
|
||||||
|
<input name="end" type="text" id="end" />
|
||||||
|
</label>
|
||||||
|
</fieldset>
|
||||||
|
<fieldset><legend>空间范围</legend>
|
||||||
|
<label>东
|
||||||
|
<input name="e" id="e" type="text" /></label>
|
||||||
|
<label>南
|
||||||
|
<input name="s" id="s" type="text" /></label>
|
||||||
|
<label>西
|
||||||
|
<input name="w" id="w" type="text" /></label>
|
||||||
|
<label>北
|
||||||
|
<input name="n" id="n" type="text" /></label>
|
||||||
|
</fieldset>
|
||||||
|
<label>关键词
|
||||||
|
<input name="q" id="q" type="text" /></label>
|
||||||
|
<button id="search" class="btn btn-large btn-block btn-primary" type="submit" value="" onclick="dosubmit()" ><i class="icon-search"></i>搜索</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
function dosubmit()
|
$(function() {
|
||||||
|
//Google map (不启用预先加载)
|
||||||
|
google.maps.event.addDomListener(window, 'load', initialize);
|
||||||
|
//jquery ui datepicker
|
||||||
|
$("#start").datepicker({dateFormat:"yy-mm-dd"});
|
||||||
|
$("#end").datepicker({dateFormat:"yy-mm-dd"});
|
||||||
|
});
|
||||||
|
// Google Map Part
|
||||||
|
var map = null;
|
||||||
|
var mapElementID = "map_canvas";
|
||||||
|
var bounds = null;
|
||||||
|
var rectangle = null;
|
||||||
|
var input = {east:'#e',west:'#w',north:'#n',south:'#s'};
|
||||||
|
|
||||||
|
function initialize() {
|
||||||
|
//加载地图
|
||||||
|
var myLatlng = new google.maps.LatLng(35.656456,105.819946);
|
||||||
|
var myOptions = {
|
||||||
|
zoom: 3,
|
||||||
|
center: myLatlng,
|
||||||
|
mapTypeId: google.maps.MapTypeId.ROADMAP
|
||||||
|
}
|
||||||
|
map = new google.maps.Map(document.getElementById(mapElementID), myOptions);
|
||||||
|
|
||||||
|
//Keydragzone
|
||||||
|
map.enableKeyDragZoom({
|
||||||
|
key: "shift",
|
||||||
|
boxStyle: {
|
||||||
|
border: "1px dashed black",
|
||||||
|
backgroundColor: "transparent",
|
||||||
|
opacity: 1.0
|
||||||
|
},
|
||||||
|
veilStyle: {
|
||||||
|
backgroundColor: "white",
|
||||||
|
opacity: 0.35,
|
||||||
|
cursor: "crosshair"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
var dz = map.getDragZoomObject();
|
||||||
|
google.maps.event.addListener(dz, 'dragstart', function (latlng) {
|
||||||
|
RemoveRectangle();
|
||||||
|
//console.dir(latlng);
|
||||||
|
});
|
||||||
|
google.maps.event.addListener(dz, 'dragend', function (latlng) {
|
||||||
|
MapValueChange(latlng.fa.d,latlng.Z.d,latlng.fa.b,latlng.Z.b);
|
||||||
|
setRectangle(latlng.fa.d,latlng.fa.b,latlng.Z.b,latlng.Z.d);
|
||||||
|
//console.dir(latlng);
|
||||||
|
});
|
||||||
|
|
||||||
|
InputValueChange();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function setRectangle(east,west,south,north){
|
||||||
|
|
||||||
|
bounds = new google.maps.LatLngBounds(
|
||||||
|
new google.maps.LatLng(south,west),
|
||||||
|
new google.maps.LatLng(north,east)
|
||||||
|
);
|
||||||
|
|
||||||
|
rectangle = new google.maps.Rectangle({
|
||||||
|
bounds: bounds,
|
||||||
|
editable: true
|
||||||
|
});
|
||||||
|
|
||||||
|
rectangle.setMap(map);
|
||||||
|
|
||||||
|
google.maps.event.addListener(rectangle, 'bounds_changed', function () {
|
||||||
|
var latlng = rectangle.getBounds();
|
||||||
|
MapValueChange(latlng.ca.d,latlng.Z.d,latlng.ca.b,latlng.Z.b);
|
||||||
|
//console.dir(latlng);
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function RemoveRectangle(){
|
||||||
|
if(rectangle != null)
|
||||||
{
|
{
|
||||||
|
rectangle.setMap(null);
|
||||||
|
rectangle = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function MapValueChange(east,north,west,south){
|
||||||
|
$(input.east).val(east);
|
||||||
|
$(input.north).val(north);
|
||||||
|
$(input.west).val(west);
|
||||||
|
$(input.south).val(south);
|
||||||
|
}
|
||||||
|
|
||||||
|
function InputValueChange(){
|
||||||
|
if(MapInputValueCheck() == true)
|
||||||
|
{
|
||||||
|
if(rectangle == null)
|
||||||
|
{
|
||||||
|
setRectangle($(input.east).val(),$(input.west).val(),$(input.south).val(),$(input.north).val());
|
||||||
|
}else{
|
||||||
|
var reSetBounds = new google.maps.LatLngBounds(
|
||||||
|
new google.maps.LatLng($(input.south).val(),$(input.west).val()),
|
||||||
|
new google.maps.LatLng($(input.north).val(),$(input.east).val())
|
||||||
|
);
|
||||||
|
rectangle.setBounds(reSetBounds);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function MapInputValueCheck()
|
||||||
|
{
|
||||||
|
if($(input.east).val() != "" && $(input.west).val() != "" && $(input.north).val() != "" && $(input.south).val() != "")
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}else{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$(input.east).bind('blur',InputValueChange);
|
||||||
|
$(input.west).bind('blur',InputValueChange);
|
||||||
|
$(input.north).bind('blur',InputValueChange);
|
||||||
|
$(input.south).bind('blur',InputValueChange);
|
||||||
|
|
||||||
|
// Google map Part --End
|
||||||
|
|
||||||
|
|
||||||
|
function Alert(content){
|
||||||
|
$.colorbox({innerWidth:'40%',html:'<div style="line-height:30px;font-size:16px;">'+ content +'</div>'});
|
||||||
|
}
|
||||||
|
|
||||||
|
function dosubmit() {
|
||||||
theForm.action="/data/advancesearch";
|
theForm.action="/data/advancesearch";
|
||||||
}
|
}
|
||||||
</script>
|
</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">
|
<div id="help">
|
||||||
<fieldset><legend>搜索说明</legend><ul><li>关键词:您可以使用一个关键词,比如“沙漠”,也可以使用多个关键词,中间用空格分开。</li>
|
<fieldset><legend>搜索说明</legend><ul><li>关键词:您可以使用一个关键词,比如“沙漠”,也可以使用多个关键词,中间用空格分开。</li>
|
||||||
<li>空间范围:这是以度为单位的十进制数字。比如,东经125度30分,可以输入为125.5。您也可以通过下面的在线地图工具直接在图上拉框选择一个范围,空间坐标会自动转换到文本框中。</li>
|
<li>空间范围:这是以度为单位的十进制数字。比如,东经125度30分,可以输入为125.5。您也可以通过下面的在线地图工具直接在图上拉框选择一个范围,空间坐标会自动转换到文本框中。</li>
|
||||||
|
|
|
@ -10,9 +10,6 @@ $this->breadcrumb('缩略图浏览');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
$this->theme->AppendPlus($this,'masonry');
|
$this->theme->AppendPlus($this,'masonry');
|
||||||
?>
|
?>
|
||||||
<style>
|
|
||||||
|
|
||||||
</style>
|
|
||||||
<div class="row-fluit">
|
<div class="row-fluit">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<ul class="thumb unstyled" id="container">
|
<ul class="thumb unstyled" id="container">
|
||||||
|
|
|
@ -9,31 +9,29 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('基础数据');
|
$this->breadcrumb('基础数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div id="intro">
|
||||||
<div id='right'>
|
<p>
|
||||||
<div> </div>
|
基础数据指为流域生态-水文研究提供各种自然、生态、水文、社会经济等本底信息的数据,同时还包括了主要的几次科学试验数据、模型数据集等。
|
||||||
<div id="intro">
|
</p>
|
||||||
<p>
|
<p>
|
||||||
基础数据指为流域生态-水文研究提供各种自然、生态、水文、社会经济等本底信息的数据,同时还包括了主要的几次科学试验数据、模型数据集等。
|
基础数据主要包括了流域基础地理数据、流域各种专题数据、水文水资源数据、流域科学试验数据、航空遥感和卫星遥感数据、模型数据、社会经济数据等。
|
||||||
</p>
|
</p>
|
||||||
<p>
|
</div>
|
||||||
基础数据主要包括了流域基础地理数据、流域各种专题数据、水文水资源数据、流域科学试验数据、航空遥感和卫星遥感数据、模型数据、社会经济数据等。
|
<hr />
|
||||||
</p>
|
<?php if ($this->metadata) : ?>
|
||||||
</div>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<hr />
|
<div id="mdlist">
|
||||||
<?php if ($this->metadata) : ?>
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -10,21 +10,21 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('浏览');
|
$this->breadcrumb('浏览');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
<div id='sidebar'>
|
<div class="row">
|
||||||
<div id='leftnavi'>
|
<div class="span2">
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
<div id='right'>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
<hr />
|
||||||
<hr />
|
<div class="mdlist">
|
||||||
<div id="mdlist">
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>" title="<?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>" title="<?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -11,35 +11,39 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('分类浏览:'.$this->codename);
|
$this->breadcrumb('分类浏览:'.$this->codename);
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
<div id='sidebar'>
|
<div class="row">
|
||||||
<div id='leftnavi'>
|
<div class="span2">
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
<div id='right'>
|
<div>
|
||||||
<div class="clear"> </div>
|
<ul class="nav nav-pills">
|
||||||
<div id='links'>
|
<?php foreach($this->category as $cg) : ?>
|
||||||
<ul>
|
<li <?php if($cg['code']== $this->code) echo 'class="active"' ?>>
|
||||||
<?php foreach($this->category as $cg) : ?>
|
<a href='/heihe/category/code/<?php echo $cg['code']; ?>'>
|
||||||
<li><a href='/heihe/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 (empty($cg['name_zh']))?print($cg['name']):print($cg['name_zh']); ?>
|
||||||
<?php endforeach; ?>
|
<span class="note">(<?php echo $cg['count']; ?>)</span>
|
||||||
</ul>
|
</a>
|
||||||
</div>
|
</li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
<?php if (!empty($this->metadata)) : ?>
|
<?php if (!empty($this->metadata)) : ?>
|
||||||
<div id='mdlist'>
|
<div class="md-list">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<hr />
|
<hr />
|
||||||
<div id="mdlist">
|
<div class="md-list">
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>" title="<?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>" title="<?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -9,26 +9,24 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('核心数据');
|
$this->breadcrumb('核心数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div id="intro">
|
||||||
<div id='right'>
|
<p>流域核心数据指流域生态-水文模型、陆面过程模型、社会经济模型以及其他各类模型所需要的关键性的驱动和参数数据集以及验证、发展和改进模型所需的关键观测数据。</p>
|
||||||
<div class="clear"> </div>
|
</div>
|
||||||
<div id="intro">
|
<hr />
|
||||||
<p>流域核心数据指流域生态-水文模型、陆面过程模型、社会经济模型以及其他各类模型所需要的关键性的驱动和参数数据集以及验证、发展和改进模型所需的关键观测数据。</p>
|
<?php if ($this->metadata) : ?>
|
||||||
</div>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<hr />
|
<div id="mdlist">
|
||||||
<?php if ($this->metadata) : ?>
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
|
||||||
</div>
|
</div>
|
|
@ -9,27 +9,25 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('DEM数据');
|
$this->breadcrumb('DEM数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div id="intro">
|
||||||
<div id='right'>
|
<p>DEM是数字高程模型的英文简称(Digital Elevation Model),DEM是地貌形态信息的离散表示,这些信息包含流域网格单元的坡度、坡向以及单元格之间的关系等,是开展流域研究的重要原始资料。</p>
|
||||||
<div class="clear"> </div>
|
<p>数据包括黑河全流域范围各种不同分辨率的数字高程模型(DEM)(栅格大小为30m、90m、1000m和30sec)。</p>
|
||||||
<div id="intro">
|
</div>
|
||||||
<p>DEM是数字高程模型的英文简称(Digital Elevation Model),DEM是地貌形态信息的离散表示,这些信息包含流域网格单元的坡度、坡向以及单元格之间的关系等,是开展流域研究的重要原始资料。</p>
|
<hr />
|
||||||
<p>数据包括黑河全流域范围各种不同分辨率的数字高程模型(DEM)(栅格大小为30m、90m、1000m和30sec)。</p>
|
<?php if ($this->metadata) : ?>
|
||||||
</div>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<hr />
|
<div id="mdlist">
|
||||||
<?php if ($this->metadata) : ?>
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -12,47 +12,45 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('数据文档');
|
$this->breadcrumb('数据文档');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div id="intro">
|
||||||
<div id='right'>
|
<h3>黑河数据清单:</h3>
|
||||||
<div> </div>
|
<ol>
|
||||||
<div id="intro">
|
<li>数据清单详版2011:年雁云, 吴立宗,李新,冉有华,盖春梅,胡晓利,李红星. 2011. 黑河流域数据清单. 中国科学院寒区旱区环境与工程研究所, 兰州. 246 pp</li>
|
||||||
<h3>黑河数据清单:</h3>
|
<li>数据清单简版2011</li>
|
||||||
<ol>
|
</ol>
|
||||||
<li>数据清单详版2011:年雁云, 吴立宗,李新,冉有华,盖春梅,胡晓利,李红星. 2011. 黑河流域数据清单. 中国科学院寒区旱区环境与工程研究所, 兰州. 246 pp</li>
|
<h3>数字黑河总结文献:</h3>
|
||||||
<li>数据清单简版2011</li>
|
<ol>
|
||||||
</ol>
|
<li>李新, 程国栋, 吴立宗. 数字黑河的思考与实践1:为流域科学服务的数字流域. 地球科学进展, 2010, 25(3): 297-305.
|
||||||
<h3>数字黑河总结文献:</h3>
|
</li>
|
||||||
<ol>
|
<li>李新, 吴立宗, 马明国, 盖迎春, 冉有华, 王亮绪, 南卓铜. 数字黑河的思考与实践2:数据集成. 地球科学进展, 2010, 25(3): 306-316. </li>
|
||||||
<li>李新, 程国栋, 吴立宗. 数字黑河的思考与实践1:为流域科学服务的数字流域. 地球科学进展, 2010, 25(3): 297-305.
|
<li>Li X, Nan ZT, Cheng GD, Ding YJ, Wu LZ, Wang LX, Wang J, Ran YH, Li HX, Pan XD, Zhu ZM. Toward an improved data stewardship and service for environmental and ecological science data in west China. International Journal of Digital Earth, 2011, 4(4): 347-359. DOI: 10.1080/17538947.2011.558123. </li>
|
||||||
</li>
|
</ol>
|
||||||
<li>李新, 吴立宗, 马明国, 盖迎春, 冉有华, 王亮绪, 南卓铜. 数字黑河的思考与实践2:数据集成. 地球科学进展, 2010, 25(3): 306-316. </li>
|
</div>
|
||||||
<li>Li X, Nan ZT, Cheng GD, Ding YJ, Wu LZ, Wang LX, Wang J, Ran YH, Li HX, Pan XD, Zhu ZM. Toward an improved data stewardship and service for environmental and ecological science data in west China. International Journal of Digital Earth, 2011, 4(4): 347-359. DOI: 10.1080/17538947.2011.558123. </li>
|
<hr />
|
||||||
</ol>
|
<h3>数据相关文献</h3>
|
||||||
</div>
|
<?php if ($this->refs) : ?>
|
||||||
<hr />
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<h3>数据相关文献</h3>
|
<div id="mdlist">
|
||||||
<?php if ($this->refs) : ?>
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->refs as $md) : ?>
|
<?php foreach($this->refs as $md) : ?>
|
||||||
<li><?php echo $md['reference'];
|
<li><?php echo $md['reference'];
|
||||||
if ($md['link'])
|
if ($md['link'])
|
||||||
{
|
{
|
||||||
echo ' <a href="'.$md['link'].'">下载</a>';
|
echo ' <a href="'.$md['link'].'">下载</a>';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
[<a href="javascript:;" onclick="showdata('<?php echo $md['id'];?>',0)">相关数据</a>]
|
[<a href="javascript:;" onclick="showdata('<?php echo $md['id'];?>',0)">相关数据</a>]
|
||||||
</li>
|
</li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script>
|
<script>
|
||||||
function showdata(id,page){
|
function showdata(id,page){
|
||||||
|
|
|
@ -9,28 +9,26 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('社会经济数据');
|
$this->breadcrumb('社会经济数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div id="intro">
|
||||||
<div id='right'>
|
<p>
|
||||||
<div class="clear"> </div>
|
各类社会经济数据。
|
||||||
<div id="intro">
|
</p>
|
||||||
<p>
|
</div>
|
||||||
各类社会经济数据。
|
<hr />
|
||||||
</p>
|
<?php if ($this->metadata) : ?>
|
||||||
</div>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<hr />
|
<div id="mdlist">
|
||||||
<?php if ($this->metadata) : ?>
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -9,25 +9,23 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('基础地理数据');
|
$this->breadcrumb('基础地理数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div id='right'>
|
||||||
</div>
|
<div id="intro">
|
||||||
<div id='right'>
|
</div>
|
||||||
<div> </div>
|
<hr />
|
||||||
<div id="intro">
|
<?php if ($this->metadata) : ?>
|
||||||
</div>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<hr />
|
<div id="mdlist">
|
||||||
<?php if ($this->metadata) : ?>
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -9,32 +9,30 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('水文观测数据');
|
$this->breadcrumb('水文观测数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div id="intro">
|
||||||
<div id='right'>
|
<p>
|
||||||
<div class="clear"> </div>
|
黑河流域的基本水文观测站点共计30个,其中包括了水文站18个,雨量站12个。
|
||||||
<div id="intro">
|
按照水文站点实际控制黑河流域的状况,我们收集了黑河流域范围10个核心水文站的水文数据,
|
||||||
<p>
|
其中主要包括了位于黑河上游东、西支的祁连站、扎马什克站,黑河干流的莺落峡站、高崖站、正义峡站,
|
||||||
黑河流域的基本水文观测站点共计30个,其中包括了水文站18个,雨量站12个。
|
位于黑河第二大支流-梨园河的肃南站、梨园堡站(控制主要灌区),其他支流上的李桥站、冰沟站等,
|
||||||
按照水文站点实际控制黑河流域的状况,我们收集了黑河流域范围10个核心水文站的水文数据,
|
以及黑河下游的额济纳旗站。
|
||||||
其中主要包括了位于黑河上游东、西支的祁连站、扎马什克站,黑河干流的莺落峡站、高崖站、正义峡站,
|
</p>
|
||||||
位于黑河第二大支流-梨园河的肃南站、梨园堡站(控制主要灌区),其他支流上的李桥站、冰沟站等,
|
</div>
|
||||||
以及黑河下游的额济纳旗站。
|
<hr />
|
||||||
</p>
|
<?php if ($this->metadata) : ?>
|
||||||
</div>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<hr />
|
<div id="mdlist">
|
||||||
<?php if ($this->metadata) : ?>
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -9,35 +9,34 @@ $this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
||||||
$this->breadcrumb($this->config->title->heihe);
|
$this->breadcrumb($this->config->title->heihe);
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
<style>.next:hover{cursor:pointer;}</style>
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div class="clear"> </div>
|
||||||
<div id='right'>
|
<div id="intro">
|
||||||
<div class="clear"> </div>
|
<h1>黑河流域数据简介</h1>
|
||||||
<div id="intro">
|
<p>
|
||||||
<h1>黑河流域数据简介</h1>
|
黑河流域是我国第二大内陆河流域,从流域上游到下游,以水为纽带形成了“冰雪/冻土-森林-草原-河流-湖泊-绿洲-沙漠-戈壁”的多元自然景观,流域内寒区和干旱区并存,山区冰冻圈和极端干旱的河流尾闾地区形成了鲜明对比。与此同时,黑河开发历史悠久,人类活动显著地影响了流域的水文环境,2000多年来,这一地区的农业开发,屯田垦殖,多种文化的碰撞交流、此消彼长,无不与水深刻地联系在一起。自然和人文过程交汇在一起,使黑河流域成为开展流域综合研究的一个十分理想的试验流域。
|
||||||
<p>
|
无论从黑河流域独特的自然地理环境,还是从几千年的人类活动影响,黑河流域都是我国内陆河研究的重要基地。目前,大量科学研究与实验积累下来的丰富和宝贵的资料,为流域生态水文研究奠定了很好的科学数据基础。
|
||||||
黑河流域是我国第二大内陆河流域,从流域上游到下游,以水为纽带形成了“冰雪/冻土-森林-草原-河流-湖泊-绿洲-沙漠-戈壁”的多元自然景观,流域内寒区和干旱区并存,山区冰冻圈和极端干旱的河流尾闾地区形成了鲜明对比。与此同时,黑河开发历史悠久,人类活动显著地影响了流域的水文环境,2000多年来,这一地区的农业开发,屯田垦殖,多种文化的碰撞交流、此消彼长,无不与水深刻地联系在一起。自然和人文过程交汇在一起,使黑河流域成为开展流域综合研究的一个十分理想的试验流域。
|
</p>
|
||||||
无论从黑河流域独特的自然地理环境,还是从几千年的人类活动影响,黑河流域都是我国内陆河研究的重要基地。目前,大量科学研究与实验积累下来的丰富和宝贵的资料,为流域生态水文研究奠定了很好的科学数据基础。
|
<p>黑河流域各种类型的空间数据,其空间坐标系统主要包括了以下三个类型:WGS84坐标系,ALBERS坐标系,高斯坐标系。其中WGS84坐标系采用原点是地球质心,椭球体为WGS84椭球体,主要考虑到许多来自GPS野外定位测量的数据和国际组织机构发布的空间数据使用这一坐标系;ALBERS坐标系采用Krasovsky椭球体,两根标准纬线分别为北纬25度和北纬47度,中央经线采用东经105度,该坐标系主要在小比例尺而且要求保持等面积特性的数据情况下使用,如小于1:100万比例尺的数据,同时该投影与我国小比例尺专题图的投影是吻合的,有助于和这些数据的配准;高斯坐标系采用Krasovsky椭球体,中央经线采用东经99度,假东取500Km,该坐标系适用于大于等于50万比例尺的各类空间数据。</p>
|
||||||
</p>
|
</div>
|
||||||
<p>黑河流域各种类型的空间数据,其空间坐标系统主要包括了以下三个类型:WGS84坐标系,ALBERS坐标系,高斯坐标系。其中WGS84坐标系采用原点是地球质心,椭球体为WGS84椭球体,主要考虑到许多来自GPS野外定位测量的数据和国际组织机构发布的空间数据使用这一坐标系;ALBERS坐标系采用Krasovsky椭球体,两根标准纬线分别为北纬25度和北纬47度,中央经线采用东经105度,该坐标系主要在小比例尺而且要求保持等面积特性的数据情况下使用,如小于1:100万比例尺的数据,同时该投影与我国小比例尺专题图的投影是吻合的,有助于和这些数据的配准;高斯坐标系采用Krasovsky椭球体,中央经线采用东经99度,假东取500Km,该坐标系适用于大于等于50万比例尺的各类空间数据。</p>
|
<div id="heihe_ad">
|
||||||
</div>
|
<h2>已整理数据展示</h2>
|
||||||
<div id="heihe_ad">
|
<ul id="heihe_list">
|
||||||
<h2>已整理数据展示</h2>
|
<?php foreach($this->meatdata as $md) : ?>
|
||||||
<ul id="heihe_list">
|
<li>
|
||||||
<?php foreach($this->meatdata as $md) : ?>
|
|
||||||
<li>
|
|
||||||
<a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><span><?php echo $md['title']; ?></span>
|
<a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><span><?php echo $md['title']; ?></span>
|
||||||
<img src="/service/thumb/id/<?php echo $md['id']; ?>" alt="Data Thumbnail" title="<?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?>" />
|
<img src="/service/thumb/id/<?php echo $md['id']; ?>" alt="Data Thumbnail" title="<?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?>" />
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ul>
|
</ul>
|
||||||
<img class="next" src="/images/next.png" onclick="changetlist()" />
|
<img class="next" src="/images/next.png" onclick="changetlist()" />
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript" language="javascript">
|
<script type="text/javascript" language="javascript">
|
||||||
function changetlist(){
|
function changetlist(){
|
||||||
|
|
|
@ -10,30 +10,29 @@ $this->breadcrumb('水文观测数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div id='sidebar'>
|
<div class="row">
|
||||||
<div id='leftnavi'>
|
<div class="span2">
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
<div id='right'>
|
<div id="intro">
|
||||||
<div class="clear"> </div>
|
<p>
|
||||||
<div id="intro">
|
黑河流域中游的水资源模拟主要是针对地表径流、地下水以及地表水与地下水相互转换等内容来开展,
|
||||||
<p>
|
而对绿洲灌溉系统的水资源利用工作相对较少,这主要是因为没有绿洲灌溉系统的详细信息。如果能够获得渠系灌溉和机井灌溉的用水量信息,
|
||||||
黑河流域中游的水资源模拟主要是针对地表径流、地下水以及地表水与地下水相互转换等内容来开展,
|
就可以更为完整地模拟整个黑河流域中游的水资源利用特征,为优化水资源利用提供参考依据。
|
||||||
而对绿洲灌溉系统的水资源利用工作相对较少,这主要是因为没有绿洲灌溉系统的详细信息。如果能够获得渠系灌溉和机井灌溉的用水量信息,
|
这些数据为中游地区水文水资源模型建模工作提供了数据支撑,也为政府部门特别是水务部门的灌溉管理提供了重要的数据支持,为电子水务提供了可能性。
|
||||||
就可以更为完整地模拟整个黑河流域中游的水资源利用特征,为优化水资源利用提供参考依据。
|
</p>
|
||||||
这些数据为中游地区水文水资源模型建模工作提供了数据支撑,也为政府部门特别是水务部门的灌溉管理提供了重要的数据支持,为电子水务提供了可能性。
|
</div>
|
||||||
</p>
|
<hr />
|
||||||
</div>
|
<?php if ($this->metadata) : ?>
|
||||||
<hr />
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<?php if ($this->metadata) : ?>
|
<div id="mdlist">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -9,26 +9,24 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('陆地表层数据');
|
$this->breadcrumb('陆地表层数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div id="intro">
|
||||||
<div id='right'>
|
<p>陆地表层数据包括冰川、沙漠、草场、植被、地貌等数据。</p>
|
||||||
<div class="clear"> </div>
|
</div>
|
||||||
<div id="intro">
|
<hr />
|
||||||
<p>陆地表层数据包括冰川、沙漠、草场、植被、地貌等数据。</p>
|
<?php if ($this->metadata) : ?>
|
||||||
</div>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<hr />
|
<div id="mdlist">
|
||||||
<?php if ($this->metadata) : ?>
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -9,26 +9,24 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('土地利用数据');
|
$this->breadcrumb('土地利用数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div id="intro">
|
||||||
<div id='right'>
|
<p>1:10万土地利用数据是在中国科学院“八五”重大应用项目《全国资源环境遥感宏观调查与动态研究》组织了中国科学院所属19个研究所的遥感科技队伍,以卫星遥感为手段,在三年内基于Landsat MSS,TM和ETM遥感数据建立了中国1:10万土地利用影像和矢量数据库。</p>
|
||||||
<div class="clear"> </div>
|
</div>
|
||||||
<div id="intro">
|
<hr />
|
||||||
<p>1:10万土地利用数据是在中国科学院“八五”重大应用项目《全国资源环境遥感宏观调查与动态研究》组织了中国科学院所属19个研究所的遥感科技队伍,以卫星遥感为手段,在三年内基于Landsat MSS,TM和ETM遥感数据建立了中国1:10万土地利用影像和矢量数据库。</p>
|
<?php if ($this->metadata) : ?>
|
||||||
</div>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<hr />
|
<div id="mdlist">
|
||||||
<?php if ($this->metadata) : ?>
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -8,34 +8,32 @@ $this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
$this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('数据列表');
|
$this->breadcrumb('数据列表');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
$this->theme->AppendPlus($this,'colorbox');
|
||||||
$this->headScript()->appendFile('/js/jquery.colorbox-min.js');
|
|
||||||
$this->headLink()->appendStylesheet('/css/colorbox.css');
|
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div id="intro"></div>
|
||||||
<div id='right'>
|
<?php if ($this->metadata) : ?>
|
||||||
<div class="clear"> </div>
|
<div>
|
||||||
<div id="intro">
|
<ol class="md-list">
|
||||||
</div>
|
|
||||||
<?php if ($this->metadata) : ?>
|
|
||||||
<div id="mdlist">
|
|
||||||
<ol>
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li class="singleline"><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a>
|
<li>
|
||||||
[<a class="colorbox" href="/service/bigthumb/uuid/<?php echo $md['uuid']; ?>" title="<?php echo $md['title']; ?>"><img src="/images/westdc_40w.gif" alt="缩略图幻灯片"/>缩略图幻灯片</a>]
|
<a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a>
|
||||||
[<a href="/service/pdf/review/1/uuid/<?php echo $md['uuid']; ?>"><img src="/images/pdf_icon.jpg" alt="Adobe PDF格式">PDF版本下载</a>]
|
<span class="pull-right">
|
||||||
[<a href="/service/odt/review/1/uuid/<?php echo $md['uuid']; ?>"><img src="/images/odt_icon.png" alt="OpenOffice odt格式">ODT版本下载</a>]
|
[<a class="colorbox" href="/service/bigthumb/uuid/<?php echo $md['uuid']; ?>" title="<?php echo $md['title']; ?>"><i class="icon-facetime-video"></i>缩略图幻灯片</a>]
|
||||||
[<a href="/service/doc/review/1/uuid/<?php echo $md['uuid']; ?>"><img src="/images/doc_icon.gif" alt="MS Word doc格式">DOC版本下载</a>]
|
[<a href="/service/pdf/review/1/uuid/<?php echo $md['uuid']; ?>"><i class="icon-file"></i>PDF版本下载</a>]
|
||||||
|
[<a href="/service/odt/review/1/uuid/<?php echo $md['uuid']; ?>"><i class="icon-book"></i>ODT版本下载</a>]
|
||||||
|
[<a href="/service/doc/review/1/uuid/<?php echo $md['uuid']; ?>"><i class="icon-list-alt"></i>DOC版本下载</a>]
|
||||||
|
</span>
|
||||||
</li>
|
</li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript" charset="utf-8">
|
<script type="text/javascript" charset="utf-8">
|
||||||
$(document).ready(function(){$(".colorbox").colorbox({slideshow:"true",rel:"colorbox",photo:"true",transition:"fade"});});
|
$(document).ready(function(){$(".colorbox").colorbox({slideshow:"true",rel:"colorbox",photo:"true",transition:"fade"});});
|
||||||
|
|
|
@ -9,28 +9,26 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('气象观测数据');
|
$this->breadcrumb('气象观测数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div id="intro">
|
||||||
<div id='right'>
|
<p>
|
||||||
<div class="clear"> </div>
|
黑河流域及其周边地区的气象常规观测站点共21个。观测要素包括日平均气压、最高气压、最低气压、平均气温、最高气温、最低气温、平均相对湿度、最小相对湿度、平均风速、最大风速及风向、极大风速及风向、日照时数、降水量。
|
||||||
<div id="intro">
|
</p>
|
||||||
<p>
|
</div>
|
||||||
黑河流域及其周边地区的气象常规观测站点共21个。观测要素包括日平均气压、最高气压、最低气压、平均气温、最高气温、最低气温、平均相对湿度、最小相对湿度、平均风速、最大风速及风向、极大风速及风向、日照时数、降水量。
|
<hr />
|
||||||
</p>
|
<?php if ($this->metadata) : ?>
|
||||||
</div>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<hr />
|
<div id="mdlist">
|
||||||
<?php if ($this->metadata) : ?>
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -9,28 +9,26 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('模型数据');
|
$this->breadcrumb('模型数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div id="intro">
|
||||||
<div id='right'>
|
<p>
|
||||||
<div class="clear"> </div>
|
包括大气驱动数据、辐射数据、SWAT模型数据等。
|
||||||
<div id="intro">
|
</p>
|
||||||
<p>
|
</div>
|
||||||
包括大气驱动数据、辐射数据、SWAT模型数据等。
|
<hr />
|
||||||
</p>
|
<?php if ($this->metadata) : ?>
|
||||||
</div>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<hr />
|
<div id="mdlist">
|
||||||
<?php if ($this->metadata) : ?>
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -1,41 +1,41 @@
|
||||||
<ul class="nav nav-list">
|
<ul class="nav nav-pills nav-stacked">
|
||||||
<li><a href="/heihe/">黑河流域数据简介</a></li>
|
<li id="Nav-heihe-index"><a href="/heihe/">黑河流域数据简介</a></li>
|
||||||
<li><a href="/heihe/core">核心数据</a>
|
<li id="Nav-heihe-core"><a href="/heihe/core">核心数据</a>
|
||||||
<ul>
|
<ul class="nav nav-list heihe-subnav">
|
||||||
<li><a href="/heihe/dem">DEM数据</a></li>
|
<li id="Nav-heihe-dem"><i class="icon-chevron-right"></i><a href="/heihe/dem">DEM数据</a></li>
|
||||||
<li><a href="/heihe/landuse">土地利用数据</a></li>
|
<li id="Nav-heihe-landuse"><i class="icon-chevron-right"></i><a href="/heihe/landuse">土地利用数据</a></li>
|
||||||
<li><a href="/heihe/soil">土壤数据</a></li>
|
<li id="Nav-heihe-soil"><i class="icon-chevron-right"></i><a href="/heihe/soil">土壤数据</a></li>
|
||||||
<li><a href="/heihe/meteo">气象观测数据</a></li>
|
<li id="Nav-heihe-meteo"><i class="icon-chevron-right"></i><a href="/heihe/meteo">气象观测数据</a></li>
|
||||||
<li><a href="/heihe/hydro">水文观测数据</a></li>
|
<li id="Nav-heihe-hydro"><i class="icon-chevron-right"></i><a href="/heihe/hydro">水文观测数据</a></li>
|
||||||
<li><a href="/heihe/irragation">灌溉数据</a></li>
|
<li id="Nav-heihe-irragation"><i class="icon-chevron-right"></i><a href="/heihe/irragation">灌溉数据</a></li>
|
||||||
<li><a href="/heihe/obs">观测试验数据</a></li>
|
<li id="Nav-heihe-obs"><i class="icon-chevron-right"></i><a href="/heihe/obs">观测试验数据</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li><a href="/heihe/base">基础数据</a>
|
<li id="Nav-heihe-base"><a href="/heihe/base">基础数据</a>
|
||||||
<ul>
|
<ul class="nav nav-list heihe-subnav">
|
||||||
<li><a href="/heihe/geobase">基础地理数据</a></li>
|
<li id="Nav-heihe-geobase"><i class="icon-chevron-right"></i><a href="/heihe/geobase">基础地理数据</a></li>
|
||||||
<li><a href="/heihe/landsurface">陆地表层数据</a></li>
|
<li id="Nav-heihe-landsurface"><i class="icon-chevron-right"></i><a href="/heihe/landsurface">陆地表层数据</a></li>
|
||||||
<li><a href="/heihe/rs">遥感数据</a></li>
|
<li id="Nav-heihe-rs"><i class="icon-chevron-right"></i><a href="/heihe/rs">遥感数据</a></li>
|
||||||
<li><a href="/heihe/water">水文水资源数据</a></li>
|
<li id="Nav-heihe-water"><i class="icon-chevron-right"></i><a href="/heihe/water">水文水资源数据</a></li>
|
||||||
<li><a href="/heihe/model">模型数据</a></li>
|
<li id="Nav-heihe-model"><i class="icon-chevron-right"></i><a href="/heihe/model">模型数据</a></li>
|
||||||
<li><a href="/heihe/economic">社会经济数据</a></li>
|
<li id="Nav-heihe-economic"><i class="icon-chevron-right"></i><a href="/heihe/economic">社会经济数据</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="nav nav-list">
|
<ul class="nav nav-pills nav-stacked">
|
||||||
<li><a href="/heihe/document">黑河文档</a></li>
|
<li id="Nav-heihe-document"><a href="/heihe/document">黑河文档</a></li>
|
||||||
<li><a href="/heihe/list">数据列表</a></li>
|
<li id="Nav-heihe-list"><a href="/heihe/list">数据列表</a></li>
|
||||||
<li><a href="/heihe/browse">整体浏览</a></li>
|
<li id="Nav-heihe-browse"><a href="/heihe/browse">整体浏览</a></li>
|
||||||
<li><a href="/heihe/category">ISO19115分类</a></li>
|
<li id="Nav-heihe-category"><a href="/heihe/category">ISO19115分类</a></li>
|
||||||
<li><a href="/heihe/thumb">缩略图浏览</a></li>
|
<li id="Nav-heihe-thumb"><a href="/heihe/thumb">缩略图浏览</a></li>
|
||||||
<li><a href="/heihe/tag">关键词导航</a></li>
|
<li id="Nav-heihe-tag"><a href="/heihe/tag">关键词导航</a></li>
|
||||||
<li><a href="/heihe/timeline">时间轴导航</a></li>
|
<li id="Nav-heihe-timeline"><a href="/heihe/timeline">时间轴导航</a></li>
|
||||||
<li><a href="/heihe/timemap">时空联合导航</a></li>
|
<li id="Nav-heihe-timemap"><a href="/heihe/timemap">时空联合导航</a></li>
|
||||||
<!-- <li>WebGIS地图浏览</li>
|
<!-- <li>WebGIS地图浏览</li>
|
||||||
<li>黑河计划数据汇交</li>
|
<li>黑河计划数据汇交</li>
|
||||||
<li>数据使用协议</li> -->
|
<li>数据使用协议</li> -->
|
||||||
<li class="bigtitle text-shadow"><a href="/heihe/submit">数据汇交</a></li>
|
<li id="Nav-heihe-submit"><a href="/heihe/submit">数据汇交</a></li>
|
||||||
<li class="bigtitle text-shadow"><a href="/heihe/projects">数据汇交计划</a></li>
|
<li id="Nav-heihe-projects"><a href="/heihe/projects">数据汇交计划</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<form id="search" enctype="application/x-www-form-urlencoded" action="/heihe/search" method="post">
|
<form id="search" enctype="application/x-www-form-urlencoded" action="/heihe/search" method="post">
|
||||||
<input type="text" name="q" id="q" value="<?php echo (empty($this->key))?'回车搜索标题和摘要':$this->key; ?>" onfocus="myfocus(this);" onblur="myblur(this);" style="width:100%;">
|
<input type="text" name="q" id="q" value="<?php echo (empty($this->key))?'回车搜索标题和摘要':$this->key; ?>" onfocus="myfocus(this);" onblur="myblur(this);" style="width:100%;">
|
||||||
|
|
|
@ -9,38 +9,36 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('观测试验数据');
|
$this->breadcrumb('观测试验数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div id="intro">
|
||||||
<div id='right'>
|
<ol>
|
||||||
<div> </div>
|
<li><a href="/water">黑河综合遥感联合试验</a></li>
|
||||||
<div id="intro">
|
<p>
|
||||||
<ol>
|
“黑河综合遥感联合试验” (WATER试验)的总体目标是:开展航空卫星遥感与地面观测同步试验,为发展流域科学积累基础数据;发展能够融合多源遥感观测的流域尺度陆面数据同化系统,为实现卫星遥感对流域的动态监测提供方法和范例。
|
||||||
<li><a href="/water">黑河综合遥感联合试验</a></li>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
“黑河综合遥感联合试验” (WATER试验)的总体目标是:开展航空卫星遥感与地面观测同步试验,为发展流域科学积累基础数据;发展能够融合多源遥感观测的流域尺度陆面数据同化系统,为实现卫星遥感对流域的动态监测提供方法和范例。
|
主要研究内容包括:(1)上游寒区水文试验;(2)森林水文试验;(3)中游干旱区水文试验;(4)模拟平台和数据平台;(5)综合集成研究。
|
||||||
</p>
|
“黑河综合遥感联合试验”分为试验准备期、预试验期、加强试验和持续观测期4个阶段。其中,预试验在2007年7~12月展开。加强试验在2008年3月~9月间分阶段展开,共计120天,由28个单位280多名科研人员、研究生和工程技术人员参加。2009年底完成了持续观测试验。
|
||||||
<p>
|
</p>
|
||||||
主要研究内容包括:(1)上游寒区水文试验;(2)森林水文试验;(3)中游干旱区水文试验;(4)模拟平台和数据平台;(5)综合集成研究。
|
<p>
|
||||||
“黑河综合遥感联合试验”分为试验准备期、预试验期、加强试验和持续观测期4个阶段。其中,预试验在2007年7~12月展开。加强试验在2008年3月~9月间分阶段展开,共计120天,由28个单位280多名科研人员、研究生和工程技术人员参加。2009年底完成了持续观测试验。
|
试验使用了5类传感器(L, K和Ka波段微波辐射计、激光雷达、高光谱成像仪、红外广角双模式成像仪和多光谱CCD相机)完成了25个有效架次的航空遥感试验。在地面建立了包括12个加强自动气象站、5个涡动相关通量站、2个大孔径闪烁仪以及大量业务气象站和水文站在内加密的地面气象水文和通量观测网,使用了车载降雨雷达、地基微波辐射计、地基散射计、地基激光雷达、探地雷达等地面设备和大量自动观测仪器,获取了丰富的积雪、地表冻融、森林结构、蒸散发、土壤水分、反照率/反射率、地表温度、生物物理参数和生物化学参数。
|
||||||
</p>
|
</p>
|
||||||
<p>
|
</ol>
|
||||||
试验使用了5类传感器(L, K和Ka波段微波辐射计、激光雷达、高光谱成像仪、红外广角双模式成像仪和多光谱CCD相机)完成了25个有效架次的航空遥感试验。在地面建立了包括12个加强自动气象站、5个涡动相关通量站、2个大孔径闪烁仪以及大量业务气象站和水文站在内加密的地面气象水文和通量观测网,使用了车载降雨雷达、地基微波辐射计、地基散射计、地基激光雷达、探地雷达等地面设备和大量自动观测仪器,获取了丰富的积雪、地表冻融、森林结构、蒸散发、土壤水分、反照率/反射率、地表温度、生物物理参数和生物化学参数。
|
</div>
|
||||||
</p>
|
<hr />
|
||||||
</ol>
|
<?php if ($this->metadata) : ?>
|
||||||
</div>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<hr />
|
<div id="mdlist">
|
||||||
<?php if ($this->metadata) : ?>
|
<ol start="2">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="2">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -9,25 +9,23 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('遥感数据');
|
$this->breadcrumb('遥感数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div id="intro">
|
||||||
<div id='right'>
|
</div>
|
||||||
<div> </div>
|
<hr />
|
||||||
<div id="intro">
|
<?php if ($this->metadata) : ?>
|
||||||
</div>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<hr />
|
<div id="mdlist">
|
||||||
<?php if ($this->metadata) : ?>
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -9,28 +9,26 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('土壤数据');
|
$this->breadcrumb('土壤数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div id="intro">
|
||||||
<div id='right'>
|
<p>
|
||||||
<div class="clear"> </div>
|
黑河流域已有的土壤数据主要包括了陆面过程模型和水文模型所需要的土壤质地数据,同时也提供了国内资源环境科学研究常用的土壤类型数据。
|
||||||
<div id="intro">
|
</p>
|
||||||
<p>
|
</div>
|
||||||
黑河流域已有的土壤数据主要包括了陆面过程模型和水文模型所需要的土壤质地数据,同时也提供了国内资源环境科学研究常用的土壤类型数据。
|
<hr />
|
||||||
</p>
|
<?php if ($this->metadata) : ?>
|
||||||
</div>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<hr />
|
<div id="mdlist">
|
||||||
<?php if ($this->metadata) : ?>
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -8,34 +8,27 @@ $this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
$this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('新建元数据');
|
$this->breadcrumb('新建元数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
$this->theme->AppendPlus($this,'colorbox');
|
||||||
$this->headScript()->appendFile('/js/jquery.colorbox-min.js');
|
|
||||||
$this->headLink()->appendStylesheet('/css/colorbox.css');
|
|
||||||
?>
|
?>
|
||||||
<div id='sidebar'>
|
<div class="row">
|
||||||
<div id='leftnavi'>
|
<div class="span2">
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
<div id='right'>
|
|
||||||
<div class="clear"> </div>
|
|
||||||
<?php if(!empty($this->error)) {?>
|
<?php if(!empty($this->error)) {?>
|
||||||
<div id="intro"><?php echo $this->error;?></div>
|
<div id="intro"><?php echo $this->error;?></div>
|
||||||
<?php }else{?>
|
<?php }else{?>
|
||||||
<div style="overflow:hidden;">
|
<div>
|
||||||
<div id="tabs-controller">
|
<ul class="nav nav-pills">
|
||||||
<ul>
|
<li class="active"><a href="/heihe/submit/">汇交计划首页</a></li>
|
||||||
<li class="box-shadow"><a class="text-shadow" href="/heihe/submit/ac/newdata">根据模板创建元数据</a></li>
|
<li><a href="/heihe/submit/ac/newdata">根据模板创建元数据</a></li>
|
||||||
<li class="box-shadow"><a class="text-shadow" href="/heihe/submit/ac/newdata/do/add">根据已有数据创建元数据</a></li>
|
<li><a href="/heihe/submit/ac/newdata/do/add">根据已有数据创建元数据</a></li>
|
||||||
<li class="box-shadow"><a class="text-shadow iframe" href="/service/geonetwork?url=metadata.xmlinsert.form">导入元数据</a></li>
|
<li><a class="iframe" href="/service/geonetwork?url=metadata.xmlinsert.form">导入元数据</a></li>
|
||||||
<li class="box-shadow"><a class="text-shadow" href="/heihe/submit/ac/unsubmit">未提交元数据</a></li>
|
<li><a href="/heihe/submit/ac/unsubmit">未提交元数据</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript" charset="utf-8">
|
<script type="text/javascript" charset="utf-8">
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
|
|
|
@ -8,43 +8,41 @@ $this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
$this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('新建元数据');
|
$this->breadcrumb('新建元数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
$this->theme->AppendPlus($this,'colorbox');
|
||||||
$this->headScript()->appendFile('/js/jquery.colorbox-min.js');
|
|
||||||
$this->headLink()->appendStylesheet('/css/colorbox.css');
|
|
||||||
?>
|
?>
|
||||||
<div id='sidebar'>
|
<div class="row">
|
||||||
<div id='leftnavi'>
|
<div class="span2">
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
<div id='right'>
|
|
||||||
<div class="clear"> </div>
|
|
||||||
<?php if(!empty($this->error)) {?>
|
<?php if(!empty($this->error)) {?>
|
||||||
<div id="intro"><?php echo $this->error;?></div>
|
<div id="intro"><?php echo $this->error;?></div>
|
||||||
<?php }else{?>
|
<?php }else{?>
|
||||||
<div style="overflow:hidden;">
|
<div>
|
||||||
<div id="tabs-controller">
|
<ul class="nav nav-pills">
|
||||||
<ul>
|
<li><a href="/heihe/submit/">汇交计划首页</a></li>
|
||||||
<li class="box-shadow"><a class="text-shadow" href="/heihe/submit/ac/newdata">根据模板创建元数据</a></li>
|
<li><a href="/heihe/submit/ac/newdata">根据模板创建元数据</a></li>
|
||||||
<li class="box-shadow active"><a class="text-shadow" href="/heihe/submit/ac/newdata/do/add">根据已有数据创建元数据</a></li>
|
<li class="active"><a href="/heihe/submit/ac/newdata/do/add">根据已有数据创建元数据</a></li>
|
||||||
<li class="box-shadow"><a class="text-shadow iframe" href="/service/geonetwork?url=metadata.xmlinsert.form">导入元数据</a></li>
|
<li><a class="iframe" href="/service/geonetwork?url=metadata.xmlinsert.form">导入元数据</a></li>
|
||||||
<li class="box-shadow"><a class="text-shadow" href="/heihe/submit/ac/unsubmit">未提交元数据</a></li>
|
<li><a href="/heihe/submit/ac/unsubmit">未提交元数据</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div id="datalist">
|
<div id="datalist">
|
||||||
<h2>根据已有元数据来创建数据</h2>
|
<h2>根据已有元数据来创建数据</h2>
|
||||||
|
<div class="input-append">
|
||||||
<form id="datasearch" class="search_form" action="/submit/newdata/ac/add">
|
<form id="datasearch" class="search_form" action="/submit/newdata/ac/add">
|
||||||
<input type="text" id="keyword" name="q" value="<?php if(!empty($this->q)) echo $this->q; ?>" />
|
<input type="text" id="keyword" name="q" value="<?php if(!empty($this->q)) echo $this->q; ?>" />
|
||||||
<button type="submit" class="btn" id="search_btn">搜索</button>
|
<button type="submit" class="btn" id="search_btn">搜索</button>
|
||||||
</form>
|
</form>
|
||||||
|
</div>
|
||||||
<?php
|
<?php
|
||||||
if (count($this->paginator)):
|
if (count($this->paginator)):
|
||||||
echo "<ul>";
|
echo '<ul class="unstyled">';
|
||||||
$autoindex=0;
|
$autoindex=0;
|
||||||
foreach ($this->paginator as $item):
|
foreach ($this->paginator as $item):
|
||||||
$autoindex++;
|
$autoindex++;
|
||||||
?>
|
?>
|
||||||
<li>
|
<li class="well well-small">
|
||||||
<p><span class="title"><?php echo $item['title'];?></span>
|
<p><span class="title"><?php echo $item['title'];?></span>
|
||||||
【<a href="/service/geonetwork?url=metadata.create?group=2<?php echo urlencode('&id='.$item['gid']); ?>" target="_blank">以此为模板新建</a>
|
【<a href="/service/geonetwork?url=metadata.create?group=2<?php echo urlencode('&id='.$item['gid']); ?>" target="_blank">以此为模板新建</a>
|
||||||
| <a href="/data/<?php echo $item['uuid'];?>" target="_blank">查看数据</a>】</p>
|
| <a href="/data/<?php echo $item['uuid'];?>" target="_blank">查看数据</a>】</p>
|
||||||
|
@ -54,12 +52,10 @@ $this->headLink()->appendStylesheet('/css/colorbox.css');
|
||||||
endforeach;
|
endforeach;
|
||||||
echo "</ul>";
|
echo "</ul>";
|
||||||
endif; ?>
|
endif; ?>
|
||||||
</div>
|
|
||||||
<div class="pagenavi"><?= $this->paginator; ?></div>
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript" charset="utf-8">
|
<script type="text/javascript" charset="utf-8">
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
|
|
|
@ -8,44 +8,41 @@ $this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
$this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('新建元数据');
|
$this->breadcrumb('新建元数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
$this->theme->AppendPlus($this,'colorbox');
|
||||||
$this->headScript()->appendFile('/js/jquery.colorbox-min.js');
|
|
||||||
$this->headLink()->appendStylesheet('/css/colorbox.css');
|
|
||||||
?>
|
?>
|
||||||
<div id='sidebar'>
|
<div class="row">
|
||||||
<div id='leftnavi'>
|
<div class="span2">
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
<div id='right'>
|
|
||||||
<div class="clear"> </div>
|
|
||||||
<?php if(!empty($this->error)) {?>
|
<?php if(!empty($this->error)) {?>
|
||||||
<div id="intro"><?php echo $this->error;?></div>
|
<div id="intro"><?php echo $this->error;?></div>
|
||||||
<?php }else{?>
|
<?php }else{?>
|
||||||
<div style="overflow:hidden;">
|
<div>
|
||||||
<div id="tabs-controller">
|
<ul class="nav nav-pills">
|
||||||
<ul>
|
<li><a href="/heihe/submit/">汇交计划首页</a></li>
|
||||||
<li class="box-shadow active"><a class="text-shadow" href="/heihe/submit/ac/newdata">根据模板创建元数据</a></li>
|
<li class="active"><a href="/heihe/submit/ac/newdata">根据模板创建元数据</a></li>
|
||||||
<li class="box-shadow"><a class="text-shadow" href="/heihe/submit/ac/newdata/do/add">根据已有数据创建元数据</a></li>
|
<li><a href="/heihe/submit/ac/newdata/do/add">根据已有数据创建元数据</a></li>
|
||||||
<li class="box-shadow"><a class="text-shadow iframe" href="/service/geonetwork?url=metadata.xmlinsert.form">导入元数据</a></li>
|
<li><a class="iframe" href="/service/geonetwork?url=metadata.xmlinsert.form">导入元数据</a></li>
|
||||||
<li class="box-shadow"><a class="text-shadow" href="/heihe/submit/ac/unsubmit">未提交元数据</a></li>
|
<li><a href="/heihe/submit/ac/unsubmit">未提交元数据</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
<div id="datalist">
|
<h2>根据预制元数据模板创建数据</h2>
|
||||||
<h2>根据预制元数据模板创建数据</h2>
|
<div class="input-append">
|
||||||
<form id="datasearch" class="search_form" action="/submit/newdata/">
|
<form id="datasearch" class="search_form" action="/submit/newdata/">
|
||||||
<input type="text" id="keyword" name="q" value="<?php if(!empty($this->q)) echo $this->q; ?>" />
|
<input type="text" id="keyword" name="q" value="<?php if(!empty($this->q)) echo $this->q; ?>" />
|
||||||
<button type="submit" class="btn" id="search_btn">搜索</button>
|
<button type="submit" class="btn" id="search_btn">搜索</button>
|
||||||
</form>
|
</form>
|
||||||
|
</div>
|
||||||
<?php
|
<?php
|
||||||
if (count($this->paginator)):
|
if (count($this->paginator)):
|
||||||
echo "<ul>";
|
echo '<ul class="unstyled">';
|
||||||
$autoindex=0;
|
$autoindex=0;
|
||||||
foreach ($this->paginator as $item):
|
foreach ($this->paginator as $item):
|
||||||
$autoindex++;
|
$autoindex++;
|
||||||
?>
|
?>
|
||||||
<li>
|
<li class="well well-small">
|
||||||
<p><span class="title"><?php echo $item['title'];?></span>
|
<p><span class="title"><?php echo $item['title'];?></span>
|
||||||
【<a href="/service/geonetwork?url=metadata.create?group=2<?php echo urlencode('&id='.$item['id']); ?>" target="_blank">以此为模板新建</a>
|
【<a href="/service/geonetwork?url=metadata.create?group=2<?php echo urlencode('&id='.$item['id']); ?>" target="_blank">以此为模板新建</a>
|
||||||
<?php if ($this->isadmin || $item['isowner']==0) : ?>
|
<?php if ($this->isadmin || $item['isowner']==0) : ?>
|
||||||
|
@ -57,10 +54,10 @@ $this->headLink()->appendStylesheet('/css/colorbox.css');
|
||||||
endforeach;
|
endforeach;
|
||||||
echo "</ul>";
|
echo "</ul>";
|
||||||
endif; ?>
|
endif; ?>
|
||||||
</div>
|
|
||||||
<div class="pagenavi"><?= $this->paginator; ?></div>
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript" charset="utf-8">
|
<script type="text/javascript" charset="utf-8">
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
|
|
|
@ -8,24 +8,20 @@ $this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
$this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('数据列表');
|
$this->breadcrumb('数据列表');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
$this->theme->AppendPlus($this,'colorbox');
|
||||||
$this->headScript()->appendFile('/js/jquery.colorbox-min.js');
|
|
||||||
$this->headLink()->appendStylesheet('/css/colorbox.css');
|
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div>
|
||||||
<div id='right'>
|
<ul class="nav nav-pills">
|
||||||
<div class="clear"> </div>
|
<li><a href="/heihe/submit/">汇交计划首页</a></li>
|
||||||
<div id="tabs-controller">
|
<li><a href="/heihe/submit/ac/newdata">根据模板创建元数据</a></li>
|
||||||
<ul>
|
<li><a href="/heihe/submit/ac/newdata/do/add">根据已有数据创建元数据</a></li>
|
||||||
<li class="box-shadow"><a class="text-shadow" href="/heihe/submit/ac/newdata">根据模板创建元数据</a></li>
|
<li><a class="iframe" href="/service/geonetwork?url=metadata.xmlinsert.form">导入元数据</a></li>
|
||||||
<li class="box-shadow"><a class="text-shadow" href="/heihe/submit/ac/newdata/do/add">根据已有数据创建元数据</a></li>
|
<li class="active"><a href="/heihe/submit/ac/unsubmit">未提交元数据</a></li>
|
||||||
<li class="box-shadow"><a class="text-shadow iframe" href="/service/geonetwork?url=metadata.xmlinsert.form">导入元数据</a></li>
|
|
||||||
<li class="box-shadow active"><a class="text-shadow" href="/heihe/submit/ac/unsubmit">未提交元数据</a></li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<?php if(!empty($this->error)) {?>
|
<?php if(!empty($this->error)) {?>
|
||||||
|
@ -34,12 +30,12 @@ $this->headLink()->appendStylesheet('/css/colorbox.css');
|
||||||
<div id="datalist">
|
<div id="datalist">
|
||||||
<?php
|
<?php
|
||||||
if (count($this->paginator)):
|
if (count($this->paginator)):
|
||||||
echo "<ul>";
|
echo '<ul class="unstyled">';
|
||||||
$autoindex=0;
|
$autoindex=0;
|
||||||
foreach ($this->paginator as $item):
|
foreach ($this->paginator as $item):
|
||||||
$autoindex++;
|
$autoindex++;
|
||||||
?>
|
?>
|
||||||
<li>
|
<li class="well well-small">
|
||||||
<p><span class="title"><?php echo $item['title'];?></span> </p>
|
<p><span class="title"><?php echo $item['title'];?></span> </p>
|
||||||
<p>【<a href="/service/geonetwork?url=metadata.show?id=<?php echo $item['id']; ?>" target="_blank">在geonetwork里查看</a>
|
<p>【<a href="/service/geonetwork?url=metadata.show?id=<?php echo $item['id']; ?>" target="_blank">在geonetwork里查看</a>
|
||||||
| <a href="/service/geonetwork?url=metadata.edit?id=<?php echo $item['id']; ?>" target="_blank">在geonetwork里修改</a>
|
| <a href="/service/geonetwork?url=metadata.edit?id=<?php echo $item['id']; ?>" target="_blank">在geonetwork里修改</a>
|
||||||
|
@ -57,6 +53,7 @@ $this->headLink()->appendStylesheet('/css/colorbox.css');
|
||||||
</div>
|
</div>
|
||||||
<div class="pagenavi"><?= $this->paginator; ?></div>
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script>
|
<script>
|
||||||
$(".iframe").colorbox({iframe:true, width:"80%",height:"80%"});
|
$(".iframe").colorbox({iframe:true, width:"80%",height:"80%"});
|
||||||
|
|
|
@ -10,45 +10,44 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('关键词导航'.(($this->codename)?':'.$this->codename:''));
|
$this->breadcrumb('关键词导航'.(($this->codename)?':'.$this->codename:''));
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
<div id='sidebar'>
|
<div class="row">
|
||||||
<div id='leftnavi'>
|
<div class="span2">
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
<div id='right'>
|
<?php if (!empty($this->metadata)) : ?>
|
||||||
<div class="clear"> </div>
|
<div id='mdlist'>
|
||||||
<?php if (!empty($this->metadata)) : ?>
|
<h1>关键词:<?php echo $this->codename; ?> 【<a href="/heihe/tag/">全部关键词</a>】</h1>
|
||||||
<div id='mdlist'>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<h1>关键词:<?php echo $this->codename; ?> 【<a href="/heihe/tag/">全部关键词</a>】</h1>
|
<hr />
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
<div class="md-list">
|
||||||
<hr />
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>" title="<?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>" title="<?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
</div>
|
</div>
|
||||||
<?php else : ?>
|
<?php else : ?>
|
||||||
|
|
||||||
<div id='links'>
|
<div id='links'>
|
||||||
<?php
|
<?php
|
||||||
$keytypezh=array('place'=>'地点关键词','theme'=>'主题关键词','discipline'=>'学科关键词','stratum'=>'地层关键词','temporal'=>'时间关键词');
|
$keytypezh=array('place'=>'地点关键词','theme'=>'主题关键词','discipline'=>'学科关键词','stratum'=>'地层关键词','temporal'=>'时间关键词');
|
||||||
foreach($this->keywords as $type=>$kcg) :
|
foreach($this->keywords as $type=>$kcg) :
|
||||||
if (is_array($kcg) && count($kcg)>0 ) :
|
if (is_array($kcg) && count($kcg)>0 ) :
|
||||||
?>
|
?>
|
||||||
<fieldset><legend><?php echo $keytypezh[$type]; ?></legend>
|
<fieldset><legend><?php echo $keytypezh[$type]; ?></legend>
|
||||||
<ul>
|
<ul>
|
||||||
<?php foreach($kcg as $cg) : ?>
|
<?php foreach($kcg as $cg) : ?>
|
||||||
<li><a href='/heihe/tag/key/<?php echo urlencode($cg['keyword']); ?>'><?php echo $cg['keyword']; ?></a><span class="note">(<?php echo $cg['count']; ?>)</span></li>
|
<li><a href='/heihe/tag/key/<?php echo urlencode($cg['keyword']); ?>'><?php echo $cg['keyword']; ?></a><span class="note">(<?php echo $cg['count']; ?>)</span></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<?php endif;endforeach; ?>
|
<?php endif;endforeach; ?>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<?php endif; ?>
|
|
||||||
|
|
|
@ -9,34 +9,41 @@ $this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||||||
$this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
$this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('缩略图浏览');
|
$this->breadcrumb('缩略图浏览');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
$this->theme->AppendPlus($this,'colorbox');
|
||||||
$this->headScript()->appendFile('/js/jquery.colorbox-min.js');
|
$this->theme->AppendPlus($this,'masonry');
|
||||||
$this->headLink()->appendStylesheet('/css/colorbox.css');
|
|
||||||
?>
|
?>
|
||||||
<div id='sidebar'>
|
<div class="row">
|
||||||
<div id='leftnavi'>
|
<div class="span2">
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div id='right'>
|
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
<hr />
|
|
||||||
<div id="mdlist">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
|
||||||
<div class="thumb">
|
|
||||||
|
|
||||||
<div class="thumbtitle">
|
|
||||||
<a href="/heihe/view/uuid/<?php echo $md['uuid'];?>"><?php echo $this->escape($md['title']); ?> </a>
|
|
||||||
</div>
|
</div>
|
||||||
<a class="colorbox" href="/service/bigthumb/id/<?php echo $md['id'];?>" title="<?php echo $this->escape($md['title']); ?>">
|
<div class="span10">
|
||||||
<img src="/service/thumb/id/<?php echo $md['id'];?>" alt="<?php echo $this->escape($md['title']);?>" title="<?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?>" />
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
|
<hr />
|
||||||
|
<div>
|
||||||
|
<ul class="thumb water-thumb unstyled" id="container">
|
||||||
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
|
<li class="items">
|
||||||
|
<h4><a href="/heihe/view/uuid/<?php echo $md['uuid'];?>"><?= $this->escape($md['title']);?></a></h4>
|
||||||
|
<a href="/heihe/view/uuid/<?php echo $md['uuid'];?>" class="thumbnail">
|
||||||
|
<img src="/service/thumb/id/<?php echo $md['id'];?>" alt="">
|
||||||
</a>
|
</a>
|
||||||
|
<div class="caption">
|
||||||
|
<p>
|
||||||
|
<?php echo mb_strlen($md['description'])>120?$this->escape(mb_substr($md['description'],0,120,'UTF-8').'...'):$this->escape($md['description']);?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<span class="pull-right"><a href="/data/<?php echo $md['uuid'];?>" class="btn"><i class="icon-zoom-in"></i>查看</a></span>
|
||||||
|
</li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<hr class="clearfix" />
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
</div>
|
</div>
|
||||||
<?php endforeach; ?>
|
|
||||||
</div>
|
|
||||||
<hr style="clear:left;"/>
|
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript" charset="utf-8">
|
<script type="text/javascript" charset="utf-8">
|
||||||
$(document).ready(function(){$(".colorbox").colorbox({rel:"colorbox",photo:"true",transition:"fade"});});
|
$(document).ready(function(){$(".colorbox").colorbox({rel:"colorbox",photo:"true",transition:"fade"});});
|
||||||
|
$('#container').masonry({
|
||||||
|
itemSelector : '.items',
|
||||||
|
});
|
||||||
</script>
|
</script>
|
|
@ -13,11 +13,11 @@ $this->headScript()->appendFile('/js/timeline_var.js');
|
||||||
$this->headScript()->appendFile('/js/timeline_js/timeline-api.js');
|
$this->headScript()->appendFile('/js/timeline_js/timeline-api.js');
|
||||||
$this->headScript()->appendFile('/js/heihetime.js');
|
$this->headScript()->appendFile('/js/heihetime.js');
|
||||||
?>
|
?>
|
||||||
<div id='sidebar'>
|
<div class="row">
|
||||||
<div id='leftnavi'>
|
<div class="span2">
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
<div id='right'>
|
<div id="tl" class="timeline-default" style="height:600px;"> </div>
|
||||||
<div id="tl" class="timeline-default" style="height:600px;"> </div>
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -12,23 +12,20 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
//$this->headScript()->appendFile('http://maps.google.cN/maps?file=api&v=2&key='.$this->config->google->maps->api);
|
//$this->headScript()->appendFile('http://maps.google.cN/maps?file=api&v=2&key='.$this->config->google->maps->api);
|
||||||
$this->headScript()->appendFile('/js/timeline_var.js');
|
$this->headScript()->appendFile('/js/timeline_var.js');
|
||||||
$this->headScript()->appendFile('/js/timeline_js/timeline-api.js');
|
$this->headScript()->appendFile('/js/timeline_js/timeline-api.js');
|
||||||
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
|
||||||
$this->headScript()->appendFile('/js/timemap.2.0.1/lib/mxn/mxn.js?(google)');
|
$this->headScript()->appendFile('/js/timemap.2.0.1/lib/mxn/mxn.js?(google)');
|
||||||
$this->headScript()->appendFile('/js/timemap.2.0.1/timemap.pack.js');
|
$this->headScript()->appendFile('/js/timemap.2.0.1/timemap.pack.js');
|
||||||
$this->headScript()->appendFile('/js/jquery.colorbox-min.js');
|
$this->theme->AppendPlus($this,'colorbox');
|
||||||
$this->headLink()->appendStylesheet('/css/colorbox.css');
|
|
||||||
?>
|
?>
|
||||||
<div id='sidebar'>
|
<div class="row">
|
||||||
<div id='leftnavi'>
|
<div class="span2">
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
<div id='right'>
|
|
||||||
<div id="timemap">
|
<div id="timemap">
|
||||||
<div id="watermap" style="height:500px;width:40%;float:right;"></div>
|
<div id="watermap" style="height:500px;width:40%;float:right;"></div>
|
||||||
<div id="timeline" style="height:500px;border-right:1px solid #abc;"></div>
|
<div id="timeline" style="height:500px;border-right:1px solid #abc;"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript" charset="utf-8">
|
<script type="text/javascript" charset="utf-8">
|
||||||
var tm;
|
var tm;
|
||||||
|
|
|
@ -9,32 +9,30 @@ $this->breadcrumb('<a href="/heihe/">'.$this->config->title->heihe.'</a>');
|
||||||
$this->breadcrumb('水文水资源数据');
|
$this->breadcrumb('水文水资源数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
|
<div class="row">
|
||||||
<div id='sidebar'>
|
<div class="span2">
|
||||||
<div id='leftnavi'>
|
<?= $this->partial('heihe/navi.phtml'); ?>
|
||||||
<?= $this->partial('heihe/navi.phtml'); ?>
|
</div>
|
||||||
</div>
|
<div class="span10">
|
||||||
</div>
|
<div id="intro">
|
||||||
<div id='right'>
|
<p>
|
||||||
<div class="clear"> </div>
|
黑河流域的基本水文观测站点共计30个,其中包括了水文站18个,雨量站12个。
|
||||||
<div id="intro">
|
按照水文站点实际控制黑河流域的状况,我们收集了黑河流域范围10个核心水文站的水文数据,
|
||||||
<p>
|
其中主要包括了位于黑河上游东、西支的祁连站、扎马什克站,黑河干流的莺落峡站、高崖站、正义峡站,
|
||||||
黑河流域的基本水文观测站点共计30个,其中包括了水文站18个,雨量站12个。
|
位于黑河第二大支流-梨园河的肃南站、梨园堡站(控制主要灌区),其他支流上的李桥站、冰沟站等,
|
||||||
按照水文站点实际控制黑河流域的状况,我们收集了黑河流域范围10个核心水文站的水文数据,
|
以及黑河下游的额济纳旗站。
|
||||||
其中主要包括了位于黑河上游东、西支的祁连站、扎马什克站,黑河干流的莺落峡站、高崖站、正义峡站,
|
</p>
|
||||||
位于黑河第二大支流-梨园河的肃南站、梨园堡站(控制主要灌区),其他支流上的李桥站、冰沟站等,
|
</div>
|
||||||
以及黑河下游的额济纳旗站。
|
<hr />
|
||||||
</p>
|
<?php if ($this->metadata) : ?>
|
||||||
</div>
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<hr />
|
<div id="mdlist">
|
||||||
<?php if ($this->metadata) : ?>
|
<ol start="<?php echo $this->offset; ?>">
|
||||||
<?php echo $this->page->getNavigation(); ?>
|
|
||||||
<div id="mdlist">
|
|
||||||
<ol start="<?php echo $this->offset; ?>">
|
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
<li><a href="/heihe/view/uuid/<?php echo $md['uuid']; ?>"><?php echo $md['title']; ?></a></li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -1,20 +1,7 @@
|
||||||
#divContent{margin:0 auto;padding:0;}
|
|
||||||
/* water */
|
/* water */
|
||||||
#sidebar{margin:0;padding:0;width:220px;_margin-right:-3px;float:left;border-right:2px solid #ddd;background:#ddd;}
|
|
||||||
#right{margin:0;padding:0;border-left:2px solid #ddd;margin-left:220px;}
|
|
||||||
#leftnavi{margin:0;padding:0;}
|
|
||||||
#leftnavi input{margin-left:5px;width:200px;border:1px solid #006;background: #ffc;}
|
|
||||||
#intro {margin-top:10px;padding:0;padding-left:5px;}
|
|
||||||
#intro p{text-indent:2em;}
|
#intro p{text-indent:2em;}
|
||||||
#intro img{padding:5px;}
|
|
||||||
#intro h1{text-indent:2em;font-size:24px;}
|
|
||||||
#intro li{white-space: normal;}
|
|
||||||
/* used in water */
|
/* used in water */
|
||||||
.PageNavigation{padding-left:30px;}
|
|
||||||
hr{border: none 0;border-bottom:1px dashed #ccc;height: 1px;width:100%;margin:0;padding:5px 0 5px 0;}
|
|
||||||
#mdlist{}
|
|
||||||
#mdlist span{width:80%;}
|
|
||||||
#mdlist ol li{white-space:normal;}
|
|
||||||
.t1highlight{background-color: #ccccff;}
|
.t1highlight{background-color: #ccccff;}
|
||||||
.t3highlight{background-color: #ccccff;}
|
.t3highlight{background-color: #ccccff;}
|
||||||
.t2highlight{background-color: #FFCCCC;}
|
.t2highlight{background-color: #FFCCCC;}
|
||||||
|
@ -59,11 +46,6 @@ form{display:inline;float:left;}
|
||||||
#latest, #services{width:48%;float:left;margin-bottom:10px;font-size:13px;}
|
#latest, #services{width:48%;float:left;margin-bottom:10px;font-size:13px;}
|
||||||
#leftContainer{margin-top:5px;}
|
#leftContainer{margin-top:5px;}
|
||||||
|
|
||||||
/*data_links*/
|
|
||||||
#links .title{background:#c7ddc7; padding: 5px 15px 5px;font-size: 16px; font-weight:bold;}
|
|
||||||
#links h3{clear:both;color: rgb(153, 0, 51);font-size: 14px;
|
|
||||||
background: url(/images/arrow_red_10x10.gif) no-repeat left top; padding-left: 13px;}
|
|
||||||
#leftnav li,#tools li,#category li,#keyword li,#series li{padding-left: 10px;background: url(/images/square.gif) no-repeat left center;}
|
|
||||||
.submit-group,.element-group{}
|
.submit-group,.element-group{}
|
||||||
|
|
||||||
#leftnav ul,#leftContainer ul{margin:0px; padding-left:0px;clear:left;}
|
#leftnav ul,#leftContainer ul{margin:0px; padding-left:0px;clear:left;}
|
||||||
|
@ -103,6 +85,7 @@ ol,ol li{list-style:decimal;margin-left:20px;}
|
||||||
font-size:12px;font-weight:bold;color:#00A9FF;white-space: normal;}
|
font-size:12px;font-weight:bold;color:#00A9FF;white-space: normal;}
|
||||||
.singleline img{height:20px;vertical-align:middle;}
|
.singleline img{height:20px;vertical-align:middle;}
|
||||||
|
|
||||||
|
/****new****/
|
||||||
.row-fluit{overflow:hidden;}
|
.row-fluit{overflow:hidden;}
|
||||||
.thumb{overflow:hidden;}
|
.thumb{overflow:hidden;}
|
||||||
.thumb li {width:320px;float:left; margin:10px 20px; overflow:hidden;border: 1px solid #DDDDDD;
|
.thumb li {width:320px;float:left; margin:10px 20px; overflow:hidden;border: 1px solid #DDDDDD;
|
||||||
|
@ -116,3 +99,10 @@ ol,ol li{list-style:decimal;margin-left:20px;}
|
||||||
.thumb li img{width:100%;}
|
.thumb li img{width:100%;}
|
||||||
.thumb li h4{ position:relative;top:0;height:40px;}
|
.thumb li h4{ position:relative;top:0;height:40px;}
|
||||||
.thumb li p{word-break:break-all;word-wrap:break-word;}
|
.thumb li p{word-break:break-all;word-wrap:break-word;}
|
||||||
|
|
||||||
|
.water-thumb li{width:260px;}
|
||||||
|
|
||||||
|
.heihe-subnav li .icon-chevron-right{float:left;margin-top:7px;}
|
||||||
|
|
||||||
|
.md-list li{line-height:24px;}
|
||||||
|
.md-list li:hover{background:#ccc; border-radius:3px;}
|
Loading…
Reference in New Issue