diff --git a/application/config.ini b/application/config.ini index 0578b80f..04692e6a 100755 --- a/application/config.ini +++ b/application/config.ini @@ -94,6 +94,11 @@ routes.dataseries.route = "data/series/:id" routes.dataseries.defaults.controller = "data" routes.dataseries.defaults.action = "series" +routes.wateruuid.route = "water/:uuid" +routes.wateruuid.defaults.controller = "water" +routes.wateruuid.defaults.action = "view" +routes.wateruuid.reqs.uuid = "[[:xdigit:]]{8}(-[[:xdigit:]]{4}){3}-[[:xdigit:]]{12}" + routes.mddoc.route = "metainfo/:title" routes.mddoc.defaults.controller = "metainfo" routes.mddoc.defaults.action = "index" diff --git a/application/default/controllers/WaterController.php b/application/default/controllers/WaterController.php new file mode 100644 index 00000000..33707f9c --- /dev/null +++ b/application/default/controllers/WaterController.php @@ -0,0 +1,93 @@ +db->query("select keyword.keyword,count(*) from keyword left join metadata on keyword.id=metadata.id where keyword.keytype='place' and metadata.source='0595169a-279e-4b95-819f-129d0ba4280d' group by keyword.keyword order by count desc"); + $k1=$state->fetchAll(); + $state=$this->db->query("select k.keyword,count(k.keyword) from keyword k left join metadata m on k.id=m.id where k.keytype='theme' and m.source='0595169a-279e-4b95-819f-129d0ba4280d' group by k.keyword order by count(k.keyword) desc"); + $k2=$state->fetchAll(); + $state=$this->db->query("select keyword.keyword,count(*) from keyword left join metadata on keyword.id=metadata.id where keyword.keytype='temporal' and metadata.source='0595169a-279e-4b95-819f-129d0ba4280d' group by keyword.keyword order by count desc"); + $k5=$state->fetchAll(); + $this->view->keywords=array('place'=>$k1,'theme'=>$k2,'discipline'=>$k3,'stratum'=>$k4,'temporal'=>$k5); + + $searchform=new SearchForm(); + $this->view->searchform=$searchform; + } + function overviewAction() + { + } + function coldAction() + { + $this->getmd('上游寒区水文试验区'); + //$this->view->searchform=new SearchForm(); + } + function bgAction() + { + //metadata + // 必须确认时间范围信息检查! + $this->getmd('冰沟流域加密观测区'); + } + function arAction() + { + $this->getmd('阿柔试验区'); + } + function bdkAction() + { + $this->getmd('扁都口试验区'); + } + function forestAction() + { + $this->getmd('森林水文试验区'); + } + function dykAction() + { + $this->getmd('大野口试验区'); + } + function plgAction() + { + $this->getmd('排露沟流域加密观测区'); + } + function aridAction() + { + $this->getmd('中游干旱区水文试验区'); + } + function hzzAction() + { + $this->getmd('花寨子试验区'); + } + function ykAction() + { + $this->getmd('盈科绿洲试验区'); + } + function zyAction() + { + $this->getmd('张掖市试验区'); + } + function zynocAction() + { + $this->getmd('张掖观象台试验区'); + } + function lzgAction() + { + $this->getmd('临泽草地加密观测区'); + } + function lzsAction() + { + $this->getmd('临泽站试验区'); + } + private function getmd($keyword) + { + $page=(int)$this->_request->getParam('page'); + if (empty($page)) $page=1; + $offset=$this->limit*($page-1); + $state=$this->db->query("select count(*) from metadata where source='0595169a-279e-4b95-819f-129d0ba4280d' and id in (select id from keyword where keytype='place' and keyword='".$keyword."')"); + $row=$state->fetchAll(); + $sum=$row[0]['count']; + $sql="select uuid,title from metadata where source='0595169a-279e-4b95-819f-129d0ba4280d' and id in (select id from keyword where keytype='place' and keyword='".$keyword."') order by timebegin limit ? offset ?"; + $this->view->metadata=$this->db->fetchAll($sql,array($this->limit,$offset)); + $this->view->page=new Pagination($sum,$page,$this->limit); + } +} \ No newline at end of file diff --git a/application/default/views/scripts/water/advancesearch.phtml b/application/default/views/scripts/water/advancesearch.phtml new file mode 100644 index 00000000..77996de8 --- /dev/null +++ b/application/default/views/scripts/water/advancesearch.phtml @@ -0,0 +1,110 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); + +$this->headTitle('高级搜索'); +if (!empty($this->codename)) $this->headTitle($this->codename); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/metadata.css'); +$this->headLink()->appendStylesheet('/css/search.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('高级搜索'); +$this->breadcrumb()->setSeparator(' > '); +?> +
+partial('data/tools.phtml'); ?> +
+metadata)) : ?> +page->getNavigation(); +foreach($this->metadata as $md) : ?> +
+
+
+

escape($md['title']);?> +

+ 400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?> +
+ +
+page->getNavigation();?> + + + + + +
+
+ +
+ + + + +
+
搜索说明
+
+ + + + \ No newline at end of file diff --git a/application/default/views/scripts/water/ar.phtml b/application/default/views/scripts/water/ar.phtml new file mode 100644 index 00000000..a1a779ef --- /dev/null +++ b/application/default/views/scripts/water/ar.phtml @@ -0,0 +1,36 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/water.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('黑河综合遥感联合试验'); +$this->breadcrumb('阿柔试验区'); +$this->breadcrumb()->setSeparator(' > '); +?> + + + diff --git a/application/default/views/scripts/water/arid.phtml b/application/default/views/scripts/water/arid.phtml new file mode 100644 index 00000000..6557be49 --- /dev/null +++ b/application/default/views/scripts/water/arid.phtml @@ -0,0 +1,36 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/water.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('黑河综合遥感联合试验'); +$this->breadcrumb('中游干旱区水文试验'); +$this->breadcrumb()->setSeparator(' > '); +?> + + + diff --git a/application/default/views/scripts/water/bdk.phtml b/application/default/views/scripts/water/bdk.phtml new file mode 100644 index 00000000..a1a779ef --- /dev/null +++ b/application/default/views/scripts/water/bdk.phtml @@ -0,0 +1,36 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/water.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('黑河综合遥感联合试验'); +$this->breadcrumb('阿柔试验区'); +$this->breadcrumb()->setSeparator(' > '); +?> + + + diff --git a/application/default/views/scripts/water/bg.phtml b/application/default/views/scripts/water/bg.phtml new file mode 100644 index 00000000..3272b193 --- /dev/null +++ b/application/default/views/scripts/water/bg.phtml @@ -0,0 +1,36 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/water.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('黑河综合遥感联合试验'); +$this->breadcrumb('冰沟试验区'); +$this->breadcrumb()->setSeparator(' > '); +?> + + + diff --git a/application/default/views/scripts/water/browse.phtml b/application/default/views/scripts/water/browse.phtml new file mode 100755 index 00000000..dd25901b --- /dev/null +++ b/application/default/views/scripts/water/browse.phtml @@ -0,0 +1,28 @@ +headTitle($this->config->title->site); + $this->headTitle($this->config->title->data); + $this->headTitle('全部浏览'); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/metadata.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('浏览'); +$this->breadcrumb()->setSeparator(' > '); +?> +
+partial('data/tools.phtml'); ?> +
+page->getNavigation(); ?> +metadata as $md) : ?> +
+
+
+

escape($md['title']);?> + + +

+
',mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']));?>
+
+ +
+page->getNavigation(); ?> \ No newline at end of file diff --git a/application/default/views/scripts/water/category.phtml b/application/default/views/scripts/water/category.phtml new file mode 100755 index 00000000..6fc72b63 --- /dev/null +++ b/application/default/views/scripts/water/category.phtml @@ -0,0 +1,39 @@ +headTitle($this->config->title->site); + $this->headTitle($this->config->title->data); +$this->headTitle('分类浏览'); +if (!empty($this->codename)) $this->headTitle($this->codename); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/metadata.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('分类浏览'); +if (!empty($this->codename)) $this->breadcrumb($this->codename); +$this->breadcrumb()->setSeparator(' > '); +?> +
+partial('data/tools.phtml'); ?> +
+ +
+
数据集类别 +
+
+
+metadata)) : ?> +

当前浏览分类:codename; ?>

+metadata as $md) : ?> +
+
+
+

escape($md['title']);?> +

+ 400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?> +
+ +
\ No newline at end of file diff --git a/application/default/views/scripts/water/cold.phtml b/application/default/views/scripts/water/cold.phtml new file mode 100644 index 00000000..945da8d2 --- /dev/null +++ b/application/default/views/scripts/water/cold.phtml @@ -0,0 +1,72 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/water.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('黑河综合遥感联合试验'); +$this->breadcrumb('上游寒区水文试验'); +$this->breadcrumb()->setSeparator(' > '); +?> + + + + + + diff --git a/application/default/views/scripts/water/datasetcd.phtml b/application/default/views/scripts/water/datasetcd.phtml new file mode 100755 index 00000000..55a25cc6 --- /dev/null +++ b/application/default/views/scripts/water/datasetcd.phtml @@ -0,0 +1,35 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle('特色数据集'); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/datasetcd.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('特色数据集'); +$this->breadcrumb()->setSeparator(' > '); +$auth = Zend_Auth::getInstance(); +?> +rows as $row) { +?> +
+
+
title;?>
+
(size;?>MB)
+
简介:descript; ?>
+ + +
+ \ No newline at end of file diff --git a/application/default/views/scripts/water/detail.phtml b/application/default/views/scripts/water/detail.phtml new file mode 100644 index 00000000..a37706ab --- /dev/null +++ b/application/default/views/scripts/water/detail.phtml @@ -0,0 +1,14 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle('浏览详细元数据'); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/metadata.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('浏览详细元数据'); +$this->breadcrumb()->setSeparator(' > '); +?> +
+xml; ?> +
\ No newline at end of file diff --git a/application/default/views/scripts/water/download.phtml b/application/default/views/scripts/water/download.phtml new file mode 100644 index 00000000..d392a707 --- /dev/null +++ b/application/default/views/scripts/water/download.phtml @@ -0,0 +1,53 @@ +headTitle($this->config->title->site); + $this->headTitle($this->config->title->data); + $this->headTitle('下载'); + $this->headTitle()->setSeparator(' - '); + $this->headLink()->appendStylesheet('/css/download.css'); + $this->breadcrumb('首页'); + $this->breadcrumb(''.$this->config->title->data.''); + $this->breadcrumb('下载'); + $this->breadcrumb()->setSeparator(' > '); +?> +
+

md['title']; ?>(md['filesize']; ?>MB)

+
+
+
FTP下载地址 +
    + ftpurls) : ?> + ftpurls as $ftp) : ?> +
  • + +
+
+
+ +
+
FTP使用说明 + 帐号信息如下:
  • FTP的用户名:username; ?>
  • +
  • FTP的密码:userpass; ?>
  • +
  • 密码有效期限:ftptime; ?>
  • +
+

FTP是一种常用的文件传输协议,西部数据中心推荐您使用使用开源的FileZilla软件来进行数据下载,您可以使用您自己喜欢的FTP客户端来进行数据下载。

+ 以FileZilla演示如何下载数据 +
+
+
\ No newline at end of file diff --git a/application/default/views/scripts/water/dyk.phtml b/application/default/views/scripts/water/dyk.phtml new file mode 100644 index 00000000..24968eff --- /dev/null +++ b/application/default/views/scripts/water/dyk.phtml @@ -0,0 +1,36 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/water.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('黑河综合遥感联合试验'); +$this->breadcrumb('大野口试验区'); +$this->breadcrumb()->setSeparator(' > '); +?> + + + diff --git a/application/default/views/scripts/water/feature.phtml b/application/default/views/scripts/water/feature.phtml new file mode 100644 index 00000000..d7f08d0e --- /dev/null +++ b/application/default/views/scripts/water/feature.phtml @@ -0,0 +1,20 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle('特色推荐'); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/feature.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('特色推荐'); +$this->breadcrumb()->setSeparator(' > '); +$auth = Zend_Auth::getInstance(); +?> +feature as $f) { ?> +
+ <?= $f['imgtext']; ?> +

+
+
详细
+
+ \ No newline at end of file diff --git a/application/default/views/scripts/water/forest.phtml b/application/default/views/scripts/water/forest.phtml new file mode 100644 index 00000000..35937e18 --- /dev/null +++ b/application/default/views/scripts/water/forest.phtml @@ -0,0 +1,36 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/water.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('黑河综合遥感联合试验'); +$this->breadcrumb('森林水文试验'); +$this->breadcrumb()->setSeparator(' > '); +?> + + + diff --git a/application/default/views/scripts/water/hzz.phtml b/application/default/views/scripts/water/hzz.phtml new file mode 100644 index 00000000..3d13a5ff --- /dev/null +++ b/application/default/views/scripts/water/hzz.phtml @@ -0,0 +1,36 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/water.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('黑河综合遥感联合试验'); +$this->breadcrumb('花寨子试验区'); +$this->breadcrumb()->setSeparator(' > '); +?> + + + diff --git a/application/default/views/scripts/water/index.phtml b/application/default/views/scripts/water/index.phtml new file mode 100755 index 00000000..dba2d9f2 --- /dev/null +++ b/application/default/views/scripts/water/index.phtml @@ -0,0 +1,113 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/water.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('黑河综合遥感联合试验'); +$this->breadcrumb()->setSeparator(' > '); +?> + + + diff --git a/application/default/views/scripts/water/lzg.phtml b/application/default/views/scripts/water/lzg.phtml new file mode 100644 index 00000000..5b7a5939 --- /dev/null +++ b/application/default/views/scripts/water/lzg.phtml @@ -0,0 +1,36 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/water.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('黑河综合遥感联合试验'); +$this->breadcrumb('临泽草地试验区'); +$this->breadcrumb()->setSeparator(' > '); +?> + + + diff --git a/application/default/views/scripts/water/lzs.phtml b/application/default/views/scripts/water/lzs.phtml new file mode 100644 index 00000000..d3217d89 --- /dev/null +++ b/application/default/views/scripts/water/lzs.phtml @@ -0,0 +1,36 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/water.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('黑河综合遥感联合试验'); +$this->breadcrumb('临泽站试验区'); +$this->breadcrumb()->setSeparator(' > '); +?> + + + diff --git a/application/default/views/scripts/water/map.phtml b/application/default/views/scripts/water/map.phtml new file mode 100755 index 00000000..3eaadef7 --- /dev/null +++ b/application/default/views/scripts/water/map.phtml @@ -0,0 +1,83 @@ +headTitle($this->config->title->site); + $this->headTitle($this->config->title->data); + $this->headTitle("空间浏览"); + $this->headTitle()->setSeparator(' - '); + $this->headLink()->appendStylesheet('/css/metadata.css'); + $this->breadcrumb('首页'); + $this->breadcrumb(''.$this->config->title->data.''); + $this->breadcrumb('空间浏览'); + if (!empty($this->codename)) $this->breadcrumb($this->codename); + $this->breadcrumb()->setSeparator(' > '); + $this->headScript()->appendFile('/js/OpenLayers.js'); + $this->headLink()->appendStylesheet('/js/theme/default/style.css'); +?> + +
+partial('data/tools.phtml'); ?> +
+
+
+
+ diff --git a/application/default/views/scripts/water/navi.phtml b/application/default/views/scripts/water/navi.phtml new file mode 100644 index 00000000..62a9028d --- /dev/null +++ b/application/default/views/scripts/water/navi.phtml @@ -0,0 +1,22 @@ + \ No newline at end of file diff --git a/application/default/views/scripts/water/newsletter.phtml b/application/default/views/scripts/water/newsletter.phtml new file mode 100755 index 00000000..a30c8063 --- /dev/null +++ b/application/default/views/scripts/water/newsletter.phtml @@ -0,0 +1,43 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle('数据通讯'); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/newsletter.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('数据通讯'); +$this->breadcrumb()->setSeparator(' > '); +?> +newsletters as $nl){ + $name=basename($nl,'.pdf'); + list(,$num)=explode("_",$name); +?> +
+ + +
+ 期数据通讯 +
+ +

+ 西部数据中心不定期发布数据通讯,通告中心动态、最新数据、数据工具,以及重要研究进展。

+

+ 在下面文本框里输入您的Email地址,可以订阅数据中心通讯。当通讯发布时,将在第一时间发送到您订阅的Email邮箱里。

+
+ 注意,邮件列表发送的邮件,有可能被您的邮箱当成垃圾邮件隔离,所以请设置您的反垃圾邮箱配置。
+ form; ?> +messages)) : ?> +
+messages as $info)echo $info; + ?> +
+ +
备注:您也可以直接给数据通讯发送一封标题为subscribe的邮件进行订阅。 +
+

  + \ No newline at end of file diff --git a/application/default/views/scripts/water/offlineapp.phtml b/application/default/views/scripts/water/offlineapp.phtml new file mode 100644 index 00000000..ebbba21c --- /dev/null +++ b/application/default/views/scripts/water/offlineapp.phtml @@ -0,0 +1,30 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle('最近20条离线数据申请'); +$this->headTitle($this->codename); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/offlineapp.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('最近20条离线数据申请'); +$this->breadcrumb()->setSeparator(' > '); +?> +
+ + + + + + + +rows as $r) : ?> + + + + + + + +
姓名单位申请日期申请数据
+
\ No newline at end of file diff --git a/application/default/views/scripts/water/offlinelist.phtml b/application/default/views/scripts/water/offlinelist.phtml new file mode 100755 index 00000000..aeb2dafe --- /dev/null +++ b/application/default/views/scripts/water/offlinelist.phtml @@ -0,0 +1,25 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle('离线数据清单'); +$this->headTitle($this->codename); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/metadata.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('离线数据清单'); +$this->breadcrumb()->setSeparator(' > '); +?> +
+partial('data/tools.phtml'); ?> +
+page->getNavigation(); ?> +metadata as $md) : ?> +
+
+ escape($md['title']);?> + +
+ +
+page->getNavigation(); ?> \ No newline at end of file diff --git a/application/default/views/scripts/water/onlinelist.phtml b/application/default/views/scripts/water/onlinelist.phtml new file mode 100755 index 00000000..129305fc --- /dev/null +++ b/application/default/views/scripts/water/onlinelist.phtml @@ -0,0 +1,25 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle('在线数据清单'); +$this->headTitle($this->codename); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/metadata.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('在线数据清单'); +$this->breadcrumb()->setSeparator(' > '); +?> +
+partial('data/tools.phtml'); ?> +
+page->getNavigation(); ?> +metadata as $md) : ?> +
+
+ escape($md['title']);?> + +
+ +
+page->getNavigation(); ?> \ No newline at end of file diff --git a/application/default/views/scripts/water/order.phtml b/application/default/views/scripts/water/order.phtml new file mode 100644 index 00000000..f0bdd469 --- /dev/null +++ b/application/default/views/scripts/water/order.phtml @@ -0,0 +1,83 @@ +headTitle($this->config->title->site); + $this->headTitle($this->config->title->data); + $this->headTitle('离线申请'); + $this->headTitle()->setSeparator(' - '); + $this->headLink()->appendStylesheet('/css/order.css'); + $this->breadcrumb('首页'); + $this->breadcrumb(''.$this->config->title->data.''); + $this->breadcrumb('离线申请'); + $this->breadcrumb()->setSeparator(' > '); +?> +
+md) : ?> +

您已经成功把md['title']; ?>放入数据申请程序中!

+messages): foreach($this->messages as $msg): ?> +

+ +msg) : ?> +

msg; ?>

+ +
+ +dataorder0) : ?> +
+

正在下载中的在线数据(完成所有 取消所有

+ +dataorder0 as $order) : ?> + + +
+ +dataorder1) : ?> +
+

准备提交的离线申请(提交所有离线申请

+ +dataorder1 as $order) : ?> + + +
+ +dataorder2) : ?> +
+

已提交的离线申请(生成PDF离线数据申请表

+ +dataorder2 as $order) : ?> + + +
+ \ No newline at end of file diff --git a/application/default/views/scripts/water/overview.phtml b/application/default/views/scripts/water/overview.phtml new file mode 100644 index 00000000..2b537ea3 --- /dev/null +++ b/application/default/views/scripts/water/overview.phtml @@ -0,0 +1,36 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/water.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('黑河综合遥感联合试验'); +$this->breadcrumb('试验简介'); +$this->breadcrumb()->setSeparator(' > '); +?> + + + diff --git a/application/default/views/scripts/water/pdf.phtml b/application/default/views/scripts/water/pdf.phtml new file mode 100644 index 00000000..591e8894 --- /dev/null +++ b/application/default/views/scripts/water/pdf.phtml @@ -0,0 +1,36 @@ +headTitle($this->config->title->site); + $this->headTitle($this->config->title->data); + $this->headTitle('离线申请'); + $this->headTitle()->setSeparator(' - '); + $this->headLink()->appendStylesheet('/css/order.css'); + $this->breadcrumb('首页'); + $this->breadcrumb(''.$this->config->title->data.''); + $this->breadcrumb('离线申请'); + $this->breadcrumb('生成离线申请表'); + $this->breadcrumb()->setSeparator(' > '); +?> +
+messages): foreach($this->messages as $msg): ?> +

+ +msg) : ?> +

msg; ?>

+ +
+
+

为促进中国西部资源与生态环境科学研究,更好的为西部大开发服务,充分利用数据中心多年来的数据积累及国家自然科学基金委员会“中国西部环境与生态科学研究计划”、数字流域等的数据产出, +根据我国科学数据共享和基金项目数据管理的有关规定, 中科院寒区旱区环境与工程研究所(简称甲方)同意接收__________(以下简称乙方)的数据申请,并签订数据使用协议(其中用途部分,请填写您的项目名称、项目编号、项目类型以及使用目的,如自然科学基金、863、973等,以便能更快通过申请。): +

+

您必须点击 “提交申请到数据中心” 后西部数据中心才能开始受理您的数据申请!

+

数据清单

+ +
+
+

用户信息(请务必输入真实信息以便邮寄!)

+form;?> +
\ No newline at end of file diff --git a/application/default/views/scripts/water/plg.phtml b/application/default/views/scripts/water/plg.phtml new file mode 100644 index 00000000..bd979d66 --- /dev/null +++ b/application/default/views/scripts/water/plg.phtml @@ -0,0 +1,36 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/water.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('黑河综合遥感联合试验'); +$this->breadcrumb('排露沟试验区'); +$this->breadcrumb()->setSeparator(' > '); +?> + + + diff --git a/application/default/views/scripts/water/request.phtml b/application/default/views/scripts/water/request.phtml new file mode 100755 index 00000000..5eebe3db --- /dev/null +++ b/application/default/views/scripts/water/request.phtml @@ -0,0 +1,58 @@ +headTitle($this->config->title->site); + $this->headTitle($this->config->title->data); + $this->headTitle('如何申请数据'); +$this->headTitle()->setSeparator(' - '); +//$this->headLink()->appendStylesheet('/css/terms.css'); +$this->breadcrumb('首页'); +$this->breadcrumb("".$this->config->title->data.""); +$this->breadcrumb('如何申请数据'); +$this->breadcrumb()->setSeparator(' > '); +?> +
+

如何申请数据?

+

“西部数据中心”数据申请支持两种方式:在线方式和离线方式。

+
+

在线方式:

+

+ 在线数据获取请访问“西部数据中心”共享门户网站(Http://westdc.westgis.ac.cn),免费注册后,登陆,按类别浏览元数据或者根据关键词进行元数据搜索。如果元数据支持在线下载,在详细元数据里可以找到一个或多个下载链接,点击链接,按提示进行HTTP或FTP下载。使用客户端下载时,建议不超过5线程。
+

+

离线方式:

+受国家数据政策限制或数据提供者的要求,一些数据提供在线下载。“西部数据中心”有专人负责数据服务,会在尽短时间内回复离线数据请求。“西部数据中心”按照“完全与开放”数据共享原则,以不高于复印、邮寄或材料费提供数据。用户在收到数据后,请按通知返回上述费用。
+

1、找到需要的数据
+2、点击离线申请
+3、重复步骤1、2,选择所需的数据,最多可以同时申请5个数据。
+4、进入"数据篮",提交离线申请。
+5、根据系统反馈的邮件进行进一步的操作:打印申请表,签字盖章后邮寄给西部数据中心。
+6、等待西部数据中心答复

+

+ 地址:甘肃兰州东岗西路320号 中国科学院寒区旱区环境与工程研究所 遥感与地理信息科学研究室
+ 收件:“西部数据中心”服务组 (收)
+ + 邮编: 730000
+ 电话: 0931-4967287 (李红星)
+
+

+
+ 数据申请流程 + + + + + + +
+
+

+ 联系我们:

+ +

+ 任何意见和建议请联系我们,westdc@lzb.ac.cn
+ 或者在线提交
+

+
+
diff --git a/application/default/views/scripts/water/search.phtml b/application/default/views/scripts/water/search.phtml new file mode 100755 index 00000000..ca1e9266 --- /dev/null +++ b/application/default/views/scripts/water/search.phtml @@ -0,0 +1,31 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); + +$this->headTitle('快速搜索'); +if (!empty($this->codename)) $this->headTitle($this->codename); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/metadata.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('快速搜索'); +$this->breadcrumb()->setSeparator(' > '); +?> +
+partial('data/tools.phtml'); ?> +
+form; ?> +metadata)) : ?> +page->getNavigation(); +foreach($this->metadata as $md) : ?> +
+
+
+

escape($md['title']);?> +

+ 400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?> +
+ +
+page->getNavigation();?> + \ No newline at end of file diff --git a/application/default/views/scripts/water/series.phtml b/application/default/views/scripts/water/series.phtml new file mode 100755 index 00000000..8a91f765 --- /dev/null +++ b/application/default/views/scripts/water/series.phtml @@ -0,0 +1,49 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle('数据集序列'); +$this->headTitle($this->codename); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/metadata.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('数据集浏览'); +if (!empty($this->codename)) $this->breadcrumb($this->codename); +$this->breadcrumb()->setSeparator(' > '); +?> +
+partial('data/tools.phtml'); ?> +
+
+
数据集序列 +
+showtools) : ?> +
本序列中常用地点关键词 + +
+ +
+metadata)) : ?> +
+

当前浏览数据集序列:codename; ?>

+showtools) echo $this->form; ?> +page->getNavigation(); ?> +metadata as $md) : ?> +
+
+
+

escape($md['title']);?> +

+ 400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?> +
+page->getNavigation(); ?> +
+ \ No newline at end of file diff --git a/application/default/views/scripts/water/service.phtml b/application/default/views/scripts/water/service.phtml new file mode 100755 index 00000000..fc9b3f54 --- /dev/null +++ b/application/default/views/scripts/water/service.phtml @@ -0,0 +1,31 @@ +headTitle($this->config->title->site); + $this->headTitle($this->config->title->data); + $this->headTitle('用户服务'); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/service.css'); +$this->breadcrumb('首页'); +$this->breadcrumb("".$this->config->title->data.""); +$this->breadcrumb('用户服务'); +$this->breadcrumb()->setSeparator(' > '); +?> +

离线数据服务

+ 主要包括网络传输和免费光盘邮寄。网络传输以电子邮件和ftp传输为主要形式,ftp提供72小时存储服务,过期数据自动删除。在数据量过大或不具备网络传输条件的情况下,则提供免费数据光盘邮寄服务。在国家数据共享政策允许范围内,用户按照离线数据申请程序,签署《中国西部环境与生态科学数据中心数据共享协议》之后即可获得离线数据服务。将有专职人员负责受理用户的数据申请,包括准备数据、建立ftp下载链接及后续的服务工作等。但由于基础地理数据、DEM数据、等高线数据、野外实际观测数据(包括气象观测站、水文数据和某些项目提供的野外观测数据)这四类数据属于国家部分保密数据和部分项目提供时要求签字的数据,故包含有上述四类数据的申请协议,申请者需请导师或项目负责人签字后再邮寄打印协议到西部数据中心。对于国家数据共享政策允许范围外的数据(包括密级较高的数据和没有得到数据生产单位授权的数据)数据中心则无法提供。用户在使用数据过程中须严格遵守在线使用条款和免责声明。 +

自数据服务工作实施以来,得到了广大用户的热情垂询和使用。截止2007年9月,已向80余家科研单位的科研人员提供离线数据服务达200多人次,离线申请数据量现已超过1Tb。网站在线下载数据量达20 GB。查看离线数据服务纪录

+
+

数据共享上门服务

+ + 主要针对西部计划项目进行上门服务,一方面提供数据中心已有共享数据,一方面了解数据需求以及各项目组对数据中心数据服务的意见、建议和要求等,广泛交流总结经验,不断完善数据共享体制。今后,数据共享上门服务将有计划的持续进行。 +

截至2006年10月,数据服务小组共走访了14个城市,39家单位,58个西部计划项目,为西部计划项目免费提供了目前西部数据中心所拥有的共享数据,并广泛征集各项目组对西部数据中心数据服务的意见、建议和要求等,为提高数据服务工作质量奠定了良好的基础。

+
+

在线数据服务

+ 目前,数据中心门户网站提供了丰富的数据信息,而且大部分数据可以登录后在线下载。数据服务小组有专人负责维护网络链接的有效性和在线反馈意见的处理,保证数据在线下载顺利畅通,同时,不断完善、补充元数据,最大程度提高数据的利用率。今后,随着网站以及数据共享政策和体制的健全,数据服务将进一步在线化。 +
+

完善和收集共享数据

+ 主要是完善现已提交共享的数据,查找数据中可能存在的错误,整理部分共享数据的文档,收集网络上尤其是国外网站上发布的相关的共享影像和气象水文数据。 + 如果您想提交您的数据,请查看如何提交您的数据。 +
+ +

数据中心间的协调与共享

+ 通过WEBSERVICES、RSS、GEOJSON等多种形式,在多个数据中心之间提供基于数据服务的共享。 +
\ No newline at end of file diff --git a/application/default/views/scripts/water/submit.phtml b/application/default/views/scripts/water/submit.phtml new file mode 100755 index 00000000..27100e25 --- /dev/null +++ b/application/default/views/scripts/water/submit.phtml @@ -0,0 +1,33 @@ +headTitle($this->config->title->site); + $this->headTitle($this->config->title->data); + $this->headTitle('如何提交数据'); +$this->headTitle()->setSeparator(' - '); +//$this->headLink()->appendStylesheet('/css/terms.css'); +$this->breadcrumb('首页'); +$this->breadcrumb("".$this->config->title->data.""); +$this->breadcrumb('如何提交数据'); +$this->breadcrumb()->setSeparator(' > '); +?> +

准备数据

+ 在提交数据之前,您需要首先整理数据,制作相应的数据文档。西部数据中心对数据格式没有要求,但如果是自定义的数据格式,请务必要在数据文档中说明各字段含义及数据使用方式。在撰写数据文档说明中请明确阐述数据背景、生产过程、质量控制、内容、引用等信息,详细请参考我们附件的样例文档。数据汇总后我们会加以整理,并在提交的数据文档基础上进行必要的整理和扩充。 + +

提交数据

+ 提交数据有多种方式,若您有任何不清楚,请务必联系我们。 +

FTP传输方式

+ + 这是我们推荐给您的首选方式,优点是支持大文件传输,速度快。您可以使用FTP客户端工具上传数据到我们的文件服务器。 + FTP地址: ftp://ftp.westgis.ac.cn 用户名:upload 密码:upload (注:此链接只用于数据上传,无法进行下载、删除等操作) + 请在上传结束后,发送一封电子邮件给西部数据中心,以便我们尽快地发布您的数据。 +

电子邮件传输方式

+ 若您的数据量(小于5Mb)不大,也可以采用电子邮件方式发送给我们。我们的邮件地址是:westdc@lzb.ac.cn。 +

传统邮寄方式

+ 您也可以通过传统的邮递方式发送给我们,我们的联系地址是: + 地址:甘肃兰州东岗西路320号 中国科学院寒区旱区环境与工程研究所 遥感与地理信息研究室
+ + 收件:“西部数据中心”服务组 (收)
+ 邮编: 730000
+ 电话: 0931-4967287 (李红星)
+

发布数据

+我们在接收到您的数据后,将尽快根据您的数据文档制作元数据,发布到西部数据中心网站上。而在发布之前,我们将把其发送给您检查错误。 +请您在提交数据的同时确定项目数据的共享程度,包括共享开始时间、共享人员范围和共享方式(在线下载或离线申请两种,在线下载只需要用户在西部数据中心网站注册登陆即可,离线申请需要用户签署数据共享协议),如果没有专门指定,我们将按照数据中心数据共享有关规范进行共享。 \ No newline at end of file diff --git a/application/default/views/scripts/water/tag.phtml b/application/default/views/scripts/water/tag.phtml new file mode 100755 index 00000000..8e9fb477 --- /dev/null +++ b/application/default/views/scripts/water/tag.phtml @@ -0,0 +1,52 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +if (!empty($this->codename)) $this->headTitle($this->codename); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/metadata.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('关键词浏览'); +if (!empty($this->codename)) $this->breadcrumb($this->codename); +$this->breadcrumb()->setSeparator(' > '); +?> +
+partial('data/tools.phtml'); ?> +
+metadata)) : ?> +
+

当前浏览:codename; ?>

+page->getNavigation(); ?> +metadata as $md) : ?> +
+
+
+

escape($md['title']);?> + +

+ 400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?> +
+ +
+ +
+'地点关键词','theme'=>'主题关键词','discipline'=>'学科关键词','stratum'=>'地层关键词','temporal'=>'时间关键词'); +$type=''; +foreach($this->keywords as $cg) : + if ($type!=$cg['keytype']) : + if ($type!='') : ?> + + +
+ +
+ diff --git a/application/default/views/scripts/water/thumb.phtml b/application/default/views/scripts/water/thumb.phtml new file mode 100755 index 00000000..bd126a1f --- /dev/null +++ b/application/default/views/scripts/water/thumb.phtml @@ -0,0 +1,7 @@ +thumb->data)) { + } else { + header("Content-Type:image/jpeg"); + print base64_decode($this->thumb->data); + } +?> \ No newline at end of file diff --git a/application/default/views/scripts/water/timeline.phtml b/application/default/views/scripts/water/timeline.phtml new file mode 100755 index 00000000..aed49cd2 --- /dev/null +++ b/application/default/views/scripts/water/timeline.phtml @@ -0,0 +1,16 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle('时间轴导航'); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/metadata.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('时间轴导航'); +$this->breadcrumb()->setSeparator(' > '); +$this->headScript()->appendFile('/js/timeline_var.js'); +$this->headScript()->appendFile('/js/timeline_js/timeline-api.js'); +$this->headScript()->appendFile('/js/time.js'); +?> +
partial('data/tools.phtml'); ?>
+
\ No newline at end of file diff --git a/application/default/views/scripts/water/timemap.phtml b/application/default/views/scripts/water/timemap.phtml new file mode 100644 index 00000000..a7000e2e --- /dev/null +++ b/application/default/views/scripts/water/timemap.phtml @@ -0,0 +1,83 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle('时空导航'); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/metadata.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('时空导航'); +$this->breadcrumb()->setSeparator(' > '); +$this->headScript()->appendFile('http://maps.google.com/maps?file=api&v=2&key=ABQIAAAACD-MqkkoOm60o_dvwdcKVhRBSKpgcP88GYi6r2Of16IkMX_4YhSBQsywCi4J2_fh4nBuWmK7gyRjLg'); +$this->headScript()->appendFile('/js/timeline_var.js'); +$this->headScript()->appendFile('/js/timeline_js/timeline-api.js'); +$this->headScript()->appendFile('/js/timemap/timemap.js'); +$this->headScript()->captureStart(); +?> +var tm; +window.onload=function() { + tm = TimeMap.init({ + mapId: "map", // Id of map div element (required) + timelineId: "timeline", // Id of timeline div element (required) + options: { + eventIconPath: "../images/" + }, + datasets: [ + { + id: "artists", + title: "Artists", + theme: "orange", + // note that the lines below are now the preferred syntax + type: "basic", + options: { + items: [ + rows as $row) : ?> + { + "start" : "", + + "end" : "", + + "polygon" : [ + { + "lat" : , + "lon" : + },{ + "lat" : , + "lon" : + },{ + "lat" : , + "lon" : + },{ + "lat" : , + "lon" : + },{ + "lat" : , + "lon" : + } + ], + "title" : "", + "options" : { + // set the full HTML for the info window + "infoHtml": ">
/>" + } + }, + + ] + } + } + ], + bandIntervals: [ + Timeline.DateTime.MONTH, + Timeline.DateTime.DECADE + ] + }); + // manipulate the timemap further here if you like +} +window.onunload=GUnload(); +headScript()->captureEnd(); ?> +
partial('data/tools.phtml'); ?>
+
+
+
+
diff --git a/application/default/views/scripts/water/tools.phtml b/application/default/views/scripts/water/tools.phtml new file mode 100755 index 00000000..fb7dd85d --- /dev/null +++ b/application/default/views/scripts/water/tools.phtml @@ -0,0 +1,11 @@ + \ No newline at end of file diff --git a/application/default/views/scripts/water/view.phtml b/application/default/views/scripts/water/view.phtml new file mode 100755 index 00000000..f15f9cea --- /dev/null +++ b/application/default/views/scripts/water/view.phtml @@ -0,0 +1,282 @@ +headTitle($this->config->title->site); + $this->headTitle($this->config->title->data); + $this->headTitle('数据查看'); + $this->headTitle()->setSeparator(' - '); + $this->headLink()->appendStylesheet('/css/mdview.css'); + $this->breadcrumb('首页'); + $this->breadcrumb(''.$this->config->title->data.''); + $this->breadcrumb('查看试验元数据'); + $this->breadcrumb()->setSeparator(' > '); + $this->headScript()->appendFile('/js/prototype.js'); + $this->headScript()->appendFile('/js/OpenLayers.js'); + $this->headScript()->appendFile('/js/window.js'); + $this->headLink()->appendStylesheet('/js/theme/default/style.css'); +?> +metadata;if ($md):?> +

escape($md->title); +if ($md->title_en) echo '
'.$this->escape($md->title_en);?> +

+
+
+
+
+
+ +
+keys as $cg) : + if ($kt==$cg->keytype) : + $i+=1; + else : + if (!empty($kt)) echo '
'; + $kt=$cg->keytype; + $i=0; + endif; + if ($i==0) echo '
'; +?> + + + series): ?> +
+ +
+ + +
    +
  • 数据大小:filesize; ?>MB
  • +
  • 数据格式:fileformat; ?>
  • + downloaded>9) :?> +
  • 下载:downloaded; ?>次
  • + +
  • 浏览量:viewed; ?>次
  • +projection) : ?> +
  • 数据投影: +projection); +$p=explode("=",$p[0]); +if (!empty($p[1])) + echo $p[1]; +else +{ + if (is_numeric($md->projection)) echo 'EPSG_CODE_'; + echo $md->projection; +} +?>
  • + + timebegin)) : ?> +
  • 数据时间范围:timebegin));if (!empty($md->timeend)) echo " 至 ".date('Y-m-d',strtotime($md->timeend)); ?>
  • + + doc)) : ?> +
  • doc; + }?>">数据说明文档
  • + +
  • 数据类型:datatype) print "离线(可免费申请)"; else print "在线(可直接下载)";?>
  • +
+
+datatype) : ?> + + + +
+ + +
+
+

联系人

+
    +'资源提供者','custodian'=>'维护者','owner'=>'拥有者','user'=>'用户','distributor'=>'分发者','originator'=>'创建者','pointOfContact'=>'联系人','principalInvestigator'=>'调查者','processor'=>'处理者','publisher'=>'元数据发布者','author'=>'元数据作者'); +$r=''; +$i=0; +foreach($this->authors as $k=>$author) : +if ($author['role']!=$r) +{ + $r=$author['role']; + $i=0; + if ($k>0) echo ''; + echo '
  • '.$party_zh[$author['role']].':'; +} + if ($i>0) echo ','; + $i+=1; + echo ''; + if (!empty($author['individual'])) + echo $author['individual']; + else + echo $author['organisation']; + echo ''; +if ($k+1==count($this->authors)) echo '
  • '; +endforeach; +?> +
+

其他信息

+
+
+ +
+
+
+
+

+

',$md->description);?> +

+
+
+
+ citation) : ?> +

本数据引用方式

+

escape($md->citation);?>

+ +ref) : ?> +

建议参考文献

+
    + ref as $ref) : + echo '
  1. '.$ref['reference'].'
  2. '; + endforeach; + ?> +
+ +

数据使用声明

+uselimits) : +foreach($this->uselimits as $uselimit) : +echo '

'.str_replace(array("\r\n", "\n", "\r"),'

',$this->escape($uselimit['uselimit'])).'

'; +endforeach; +?> + +

为尊重知识产权、保障数据作者的权益、扩展数据中心的服务、评估数据的应用潜力,请数据使用者在使用数据所产生的研究成果中(包括公开发表的论文、论著、数据产品和未公开发表的研究报告、数据产品等成果),明确注明数据来源和数据作者。对于转载(二次或多次发布)的数据,作者还须注明原始数据来源。

+

中文发表的成果参考以下规范注明: 数据来源于国家自然科学基金委员会"中国西部环境与生态科学数据中心"(http://westdc.westgis.ac.cn)

+

英文发表的成果依据以下规范注明: 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)

+

+ +suppinfo) : ?> +

项目支持信息

+

'.str_replace(array("\r\n", "\n", "\r"),'

',$this->escape($md->suppinfo)).'

';?>

+ +resources) : ?> +

其他在线资源

+ + + +
+ + +documents) : ?> +
+

相关文档

+ +
+ +
+ +
+

数据评论

+
+
+ +commentForm; ?> +
+ + + + + + + +

Cannot find the metadata.

+

没有找到对应的元数据。

+ + diff --git a/application/default/views/scripts/water/westee.phtml b/application/default/views/scripts/water/westee.phtml new file mode 100644 index 00000000..f66250a6 --- /dev/null +++ b/application/default/views/scripts/water/westee.phtml @@ -0,0 +1,34 @@ +headTitle($this->config->title->site); + $this->headTitle($this->config->title->data); + $this->headTitle('中国西部环境与生态科学重大研究计划'); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/westee.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('中国西部环境与生态科学重大研究计划'); +$this->breadcrumb()->setSeparator(' > '); +?> +
+
+
ID
+
名称
+ +
挂靠单位
+
执行时间
+
+westee as $md) : ?> +
+
+
+
+ +
+
+westeemd as $eemd) : ?> + +
提交数据:
+ + +
+ diff --git a/application/default/views/scripts/water/yk.phtml b/application/default/views/scripts/water/yk.phtml new file mode 100644 index 00000000..3d13a5ff --- /dev/null +++ b/application/default/views/scripts/water/yk.phtml @@ -0,0 +1,36 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/water.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('黑河综合遥感联合试验'); +$this->breadcrumb('花寨子试验区'); +$this->breadcrumb()->setSeparator(' > '); +?> + + + diff --git a/application/default/views/scripts/water/zy.phtml b/application/default/views/scripts/water/zy.phtml new file mode 100644 index 00000000..f21380ba --- /dev/null +++ b/application/default/views/scripts/water/zy.phtml @@ -0,0 +1,36 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/water.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('黑河综合遥感联合试验'); +$this->breadcrumb('张掖市试验区'); +$this->breadcrumb()->setSeparator(' > '); +?> + + + diff --git a/application/default/views/scripts/water/zynoc.phtml b/application/default/views/scripts/water/zynoc.phtml new file mode 100644 index 00000000..72846e94 --- /dev/null +++ b/application/default/views/scripts/water/zynoc.phtml @@ -0,0 +1,36 @@ +headTitle($this->config->title->site); +$this->headTitle($this->config->title->data); +$this->headTitle()->setSeparator(' - '); +$this->headLink()->appendStylesheet('/css/water.css'); +$this->breadcrumb('首页'); +$this->breadcrumb(''.$this->config->title->data.''); +$this->breadcrumb('黑河综合遥感联合试验'); +$this->breadcrumb('观象台试验区'); +$this->breadcrumb()->setSeparator(' > '); +?> + + + diff --git a/application/models/CustomControllerAclManager.php b/application/models/CustomControllerAclManager.php index b957bbc3..babcb578 100755 --- a/application/models/CustomControllerAclManager.php +++ b/application/models/CustomControllerAclManager.php @@ -17,6 +17,7 @@ // add the resources we want to have control over $this->acl->add(new Zend_Acl_Resource('account')); $this->acl->add(new Zend_Acl_Resource('data')); + $this->acl->add(new Zend_Acl_Resource('water')); $this->acl->add(new Zend_Acl_Resource('admin')); // allow access to everything for all users by default // except for the account management and administration areas @@ -29,7 +30,8 @@ 'fetchpwd', 'register', 'registercomplete')); - $this->acl->deny('guest','data',array('download','order')); + $this->acl->deny('guest','data',array('download','order')); + $this->acl->deny('guest','water',array('download','order')); // allow members access to the account management area $this->acl->allow('member', 'account'); // allows administrators access to the admin area