245 lines
9.5 KiB
PHTML
Executable File
245 lines
9.5 KiB
PHTML
Executable File
<?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="/data">'.$this->config->title->data.'</a>');
|
|
$this->breadcrumb('查看元数据');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
$this->headScript()->appendFile('/js/prototype.js');
|
|
$this->headScript()->appendFile('/js/OpenLayers.js');
|
|
$this->headLink()->appendStylesheet('/js/theme/default/style.css');
|
|
?>
|
|
<?php $md=$this->metadata;if ($md):?>
|
|
<h1><?php echo $this->escape($md->title);?></h1>
|
|
<div id="ImageViewer"><img src="/data/thumb/id/<?php echo $md->id;?>" /> </div>
|
|
<div id="authors">
|
|
<h2>联系人</h2>
|
|
<ul>
|
|
<li>数据贡献者:<strong><?php echo $md->author; ?></li></strong>
|
|
<li>元数据撰写者:吴立宗</li>
|
|
<li>数据分发者:<a href="/about/contact">李红星</a></li></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>
|
|
</ul>
|
|
</div>
|
|
|
|
<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>
|
|
|
|
<div id="keyword">
|
|
<ul><?php foreach($this->keys as $cg) : ?>
|
|
<li><a href='/data/tag/key/<?php echo $cg->keyword; ?>'><?php echo $cg->keyword; ?></a></li>
|
|
<?php endforeach; ?>
|
|
</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"><span>数据大小:</span><?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>
|
|
<li id="projection" title="<?= $this->projection; ?>">数据投影:<?php if (is_numeric($md->projection)) echo 'EPSG_CODE_'; echo $md->projection; ?></li>
|
|
<?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; ?>
|
|
<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>
|
|
<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>',$this->escape($md->description));?>
|
|
</p>
|
|
</div>
|
|
<?php if ($this->related) : ?>
|
|
<hr />
|
|
<div id="related">
|
|
<h2>相关数据</h2>
|
|
<ul>
|
|
<?php foreach ($this->related as $r) : ?>
|
|
<li><a href="/data/<?= $r['uuid']; ?>"><?= $r['title']; ?></a></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ($this->literature) : ?>
|
|
<div id="literature">
|
|
<h2>相关文献</h2>
|
|
<ul>
|
|
<?php foreach ($this->literature as $r) :
|
|
$u=parse_url($r['url']);
|
|
if ($u['host']=='hdl.handle.net')
|
|
$url=$this->config->seekspace->handleurl.$u['path'];
|
|
else
|
|
$url=$r['url'];
|
|
?>
|
|
<li><a href="<?= $url; ?>" target="_blank"><?= $r['title']; ?></a></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?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="cite">
|
|
<h2>数据使用声明</h2>
|
|
<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 if ($md->citation) : ?>
|
|
<h2>本数据引用方式</h2>
|
|
<p><?php echo $this->escape($md->citation);?></p>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
|
|
<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.addControl(new GLargeMapControl());
|
|
map.addControl(new GMapTypeControl());
|
|
map.setMapType(G_HYBRID_MAP);
|
|
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>
|
|
<!--
|
|
<script type="text/javascript">
|
|
var map;
|
|
|
|
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
|
|
);
|
|
var ghyb = new OpenLayers.Layer.Google(
|
|
"Google Hybrid",
|
|
{type: G_HYBRID_MAP}
|
|
);
|
|
var gsat = new OpenLayers.Layer.Google(
|
|
"Google Satellite",
|
|
{type: G_SATELLITE_MAP}
|
|
);
|
|
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.zoomToExtent(extent);
|
|
//map.setCenter(new OpenLayers.LonLat(102, 36), 4);
|
|
|
|
|
|
var ajax=new OpenLayers.Ajax.Request('/metadata/json/id/<?php echo $md->id; ?>',{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));
|
|
map.zoomToExtent(vector_layer.getExtent());
|
|
var sf = new OpenLayers.Control.SelectFeature(vector_layer);
|
|
map.addControl(sf);
|
|
sf.activate();
|
|
}
|
|
</script>
|
|
-->
|
|
<?php else: ?>
|
|
<p>Cannot find the metadata.</p>
|
|
<p>没有找到对应的元数据。</p>
|
|
<?php endif;?>
|
|
|