Project

General

Profile

1 1976 jones
<!--
2
  *  '$RCSfile$'
3
  *      Authors: Matt Jones
4
  *    Copyright: 2000 Regents of the University of California and the
5
  *               National Center for Ecological Analysis and Synthesis
6
  *  For Details: http://www.nceas.ucsb.edu/
7
  *
8
  *   '$Author$'
9
  *     '$Date$'
10
  * '$Revision$'
11
  *
12
  * This is an HTML document for displaying metadata catalog tools
13
  *
14
  * This program is free software; you can redistribute it and/or modify
15
  * it under the terms of the GNU General Public License as published by
16
  * the Free Software Foundation; either version 2 of the License, or
17
  * (at your option) any later version.
18
  *
19
  * This program is distributed in the hope that it will be useful,
20
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
  * GNU General Public License for more details.
23
  *
24
  * You should have received a copy of the GNU General Public License
25
  * along with this program; if not, write to the Free Software
26
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27
-->
28
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
29
<html>
30
<head>
31 1980 jones
<title>NCEAS Data Repository</title>
32 1976 jones
<link rel="stylesheet" href="@html-path@/style/default.css" type="text/css">
33
  <link rel="stylesheet" type="text/css"
34 2809 bowdish
        href="@systemidserver@@style-skins-path@/nceas/nceas.css">
35 1976 jones
  <script language="JavaScript" type="text/JavaScript"
36
          src="@systemidserver@@style-skins-path@/nceas/nceas.js"></script>
37
  <script language="JavaScript" type="text/JavaScript"
38
          src="@systemidserver@@style-common-path@/branding.js"></script>
39 2546 sgarg
  <script language="Javascript">
40
        function trim(stringToTrim) {
41
                return stringToTrim.replace(/^\s*/, '').replace(/\s*$/,'');
42
        }
43
44
        function checkSearch(submitFormObj) {
45
                var searchString = trim(submitFormObj.searchstring.value);
46 2704 sgarg
 		var checkBox = document.getElementById("searchAll");
47 2546 sgarg
48
                if (searchString=="") {
49 2704 sgarg
			if (confirm("Show *all* data in the KNB?")) {
50
          			searchString = "%";
51
        		} else {
52
          			return false;
53
        		}
54 2546 sgarg
                }
55
56 2704 sgarg
                if(!checkBox.checked && searchString!="%"){
57 2694 sgarg
                        submitFormObj.query.value = "<pathquery version=\"1.2\">"
58 2546 sgarg
                                                           +"<querytitle>Web-Search</querytitle>"
59
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
60
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
61
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype>"
62
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype>"
63
                                                           +"<returndoctype>-//NCEAS//resource//EN</returndoctype>"
64
                                                           +"<returndoctype>-//NCEAS//eml-dataset//EN</returndoctype>"
65
                                                           +"<returnfield>originator/individualName/surName</returnfield>"
66
                                                           +"<returnfield>originator/individualName/givenName</returnfield>"
67
                                                           +"<returnfield>creator/individualName/surName</returnfield>"
68
                                                           +"<returnfield>creator/individualName/givenName</returnfield>"
69
                                                           +"<returnfield>originator/organizationName</returnfield>"
70
                                                           +"<returnfield>creator/organizationName</returnfield>"
71
                                                           +"<returnfield>dataset/title</returnfield>"
72
                                                           +"<returnfield>keyword</returnfield>"
73
                                                           +"<querygroup operator=\"INTERSECT\">"
74
                                                                +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
75
                                                                        +"<value>National Center for Ecological Analysis and Synthesis</value>"
76
                                                                        +"<pathexpr>organizationName</pathexpr>"
77
                                                                +"</queryterm>"
78
                                                                +"<querygroup operator=\"UNION\">"
79
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
80
                                                                                +"<value>" + searchString + "</value>"
81
                                                                                +"<pathexpr>surName</pathexpr>"
82
                                                                        +"</queryterm>"
83
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
84
                                                                                +"<value>" + searchString + "</value>"
85
                                                                                +"<pathexpr>givenName</pathexpr>"
86
                                                                        +"</queryterm>"
87
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
88
                                                                                +"<value>" + searchString + "</value>"
89
                                                                                +"<pathexpr>keyword</pathexpr>"
90
                                                                        +"</queryterm>"
91
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
92
                                                                                +"<value>" + searchString + "</value>"
93
                                                                         +"<pathexpr>para</pathexpr>"
94
                                                                        +"</queryterm>"
95
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
96
                                                                                +"<value>" + searchString + "</value>"
97
                                                                                +"<pathexpr>geographicDescription</pathexpr>"
98
                                                                        +"</queryterm>"
99
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
100
                                                                                +"<value>" + searchString + "</value>"
101
                                                                                +"<pathexpr>literalLayout</pathexpr>"
102
                                                                        +"</queryterm>"
103
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
104
                                                                                +"<value>" + searchString + "</value>"
105 2708 sgarg
                                                                                +"<pathexpr>title</pathexpr>"
106
                                                                        +"</queryterm>"
107
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
108
                                                                                +"<value>" + searchString + "</value>"
109 2853 sgarg
                                                                                +"<pathexpr>@packageId</pathexpr>"
110
                                                                        +"</queryterm>"
111
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
112
                                                                                +"<value>" + searchString + "</value>"
113 2546 sgarg
                                                                                +"<pathexpr>abstract/para</pathexpr>"
114
                                                                        +"</queryterm>"
115
                                                                +"</querygroup>"
116
                                                          +"</querygroup>"
117
                                                  +"</pathquery>";
118
                } else {
119
                        queryTermString = "";
120
                        if(searchString != "%"){
121
                                queryTermString = "<queryterm searchmode=\"contains\" casesensitive=\"false\">"
122
                                                        +"<value>" + searchString + "</value>"
123
                                                 +"</queryterm>";
124
                        }
125 2695 sgarg
                        submitFormObj.query.value = "<pathquery version=\"1.2\">"
126 2546 sgarg
                                                           +"<querytitle>Web-Search</querytitle>"
127
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
128
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
129
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype>"
130
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype>"
131
                                                           +"<returndoctype>-//NCEAS//resource//EN</returndoctype>"
132
                                                           +"<returndoctype>-//NCEAS//eml-dataset//EN</returndoctype>"
133
                                                           +"<returnfield>originator/individualName/surName</returnfield>"
134
                                                           +"<returnfield>originator/individualName/givenName</returnfield>"
135
                                                           +"<returnfield>creator/individualName/surName</returnfield>"
136
                                                           +"<returnfield>creator/individualName/givenName</returnfield>"
137
                                                           +"<returnfield>originator/organizationName</returnfield>"
138
                                                           +"<returnfield>creator/organizationName</returnfield>"
139
                                                           +"<returnfield>dataset/title</returnfield>"
140
                                                           +"<returnfield>keyword</returnfield>"
141
                                                           +"<querygroup operator=\"INTERSECT\">"
142
                                                                +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
143
                                                                        +"<value>National Center for Ecological Analysis and Synthesis</value>"
144
                                                                        +"<pathexpr>organizationName</pathexpr>"
145
                                                                +"</queryterm>"
146
                                                                + queryTermString
147
                                                           +"</querygroup>"
148
                                                    +"</pathquery>";
149
150
                }
151
                return true;
152
        }
153
154
        function searchAll(){
155
                var checkBox = document.getElementById("searchCheckBox");
156
                if(checkBox.checked == true){
157
                        alert("You have selected to search all possible existing fields. This search will take longer.");
158
                }
159
        }
160
   </script>
161 2806 bowdish
  <link href="nceas.css" rel="stylesheet" type="text/css">
162
  <style type="text/css">
163
<!--
164
.style2 {font-size: 14px}
165
-->
166
  </style>
167 1976 jones
</head>
168
<body>
169
      <script language="JavaScript">
170
          insertTemplateOpening();
171
          insertSearchBox();
172
      </script>
173 2806 bowdish
174
<table width="760" border="0" cellspacing="0" cellpadding="0"><!--DWLayoutTable-->
175 1976 jones
  <tr><td colspan="5">
176 2814 bowdish
<p class ="intro">Welcome to the NCEAS Data Repository. This repository contains information
177 2806 bowdish
about the research data sets collected and collated as part of NCEAS' funded activities.
178 2814 bowdish
Information in the NCEAS Data Repository is concurrently available through the <a href="http://knb.ecoinformatics.org/index.jsp">Knowledge Network for Biocomplexity (KNB)</a>, an international data repository. </span></p>
179
<p class="intro">A number of the data sets were synthesized from multiple data sources that originated from the efforts of many contributors, while others originated from a single investigator. Credit for the data sets in this repository goes to the investigators who collected the data, as well as to the NCEAS working groups and scientists who compiled the data for synthetic purposes. See each data package for a list of the people and institutions involved. </p>
180
<p class="intro"> If you have any questions, comments or problems, please contact the repository administrator at <a href="mailto:help@nceas.ucsb.edu">help@nceas.ucsb.edu</a> </p>
181
<br>
182 2806 bowdish
<table class="tables" cellpadding="8" cellspacing="0">
183
  <tr class="sectheader">
184
    <td class="borderbottom" colspan="2" align="left"><span class="label"> </span><a name="search" ></a>
185 2813 bowdish
        <p align="center" class="largetext"> Search for Data Sets </p></td>
186 2806 bowdish
  </tr>
187
  <tr class="sectbody"></tr>
188 2809 bowdish
189 2813 bowdish
  <tr >
190 2806 bowdish
    <td  colspan="2" align="left"><form method="POST" action="@servlet-path@" target="_top" onSubmit="return checkSearch(this)">
191
        <span class="searchresultsdividerPale">
192
        <input value="UNION" name="operator" type="hidden">
193
&nbsp;
194
        <input size="14" name="searchstring" type="text" value="" id="searchBox">
195 2809 bowdish
        <input name="query" type="hidden">
196 2806 bowdish
        <input name="qformat" value="nceas" type="hidden">
197
        <input name="enableediting" value="true" type="hidden">
198
        <input type="hidden" name="action" value="squery">
199
        <input value="Search" type="submit">
200
        </span>
201
      </form>
202
        <form>
203
          <input name="search" type="radio" checked>
204
        Search Title, Abstract, Keywords, Personnel (Quicker) <br>
205
        <input name="search" type="radio" id="searchAll">
206
        Search all fields (Slower) <br>
207 2813 bowdish
208 2806 bowdish
        </form>
209
        <div align="center">
210 2813 bowdish
          <p align="left">This tool allows you to search the registry for data sets of interest. When you type text in the box and click on the "Search" button, the search will only be conducted within the title, author, abstract, and keyword fields. Checking the "Search All Fields" box will search on these and all other existing fields (this search will take more time). <br>
211 2806 bowdish
                <br>
212 2813 bowdish
          You can use the '%' character as a wildcard in your searches (e.g., '%biodiversity%' would locate any phrase with the word biodiversity embedded within it). </p>
213 2806 bowdish
      </div></td>
214
  </tr>
215 2813 bowdish
  <tr >
216 2806 bowdish
    <td class="borderbottom"><div align="center"><a href="@servlet-path@?action=query&amp;operator=INTERSECT&amp;anyfield=%25&amp;organizationName=National%20Center%20for%20Ecological%20Analysis%20and%20Synthesis&amp;qformat=nceas&amp;enableediting=true&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returnfield=dataset/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName">Browse existing NCEAS data sets</a> </div>
217 2809 bowdish
</td></tr></table>
218
<br><br>
219 2806 bowdish
<table class="tables" cellpadding="8" cellspacing="0">
220
  <tr class="sectheader">
221 2809 bowdish
    <td class="borderbottom" colspan="2" align="left"><span class="label"> </span>
222 2813 bowdish
        <p align="center" class="largetext"> Register information about a new NCEAS data set </p></td>
223 2806 bowdish
  </tr>
224 2809 bowdish
225
226 2813 bowdish
  <tr >
227 2806 bowdish
    <td  colspan="2" align="center"><div align="left">
228
      <p><a href="http://knb.ecoinformatics.org/cgi-bin/register-dataset.cgi?cfg=nceas">Register Information Online</a> - This is a simple way to provide information (metadata) about the existence of a data set. The registration page is used to submit information about a <b>new</b> data set associated with NCEAS research.</p>
229
230
      <p align="center">OR</p>
231
      </div></td>
232
  </tr>
233 2813 bowdish
  <tr >
234 2809 bowdish
    <td class="borderbottom"><div align="left">
235
      <p align="center"></p>
236
      <table width="100%"  border="0" align="center" >
237
        <tr>
238
          <td width="110" class="templatecontentareaclass"><a href="http://knb.ecoinformatics.org/morphoportal.jsp"><img src="../../images/MorphoButterfly.jpg" alt="Morpho Software Butterfly" width="100" height="100" border="0" ></a></td>
239 2813 bowdish
          <td width="550" valign="top" class="templateleftcolclass"><p >Use <a href="http://knb.ecoinformatics.org/morphoportal.jsp"><span class="style2">Morpho</span></a> software to register, document and upload data sets. </p>
240
              <p>Morpho is a data management tool for ecologists. It was created to provide an easy-to-use, cross-platform application for accessing and manipulating metadata (e.g. documentation) and data (both locally and on the network). Morpho allows ecologists to create metadata, (i.e. describe their data in a standardized format), and create a catalog of data and metadata upon which to query, edit and view data collections. In addition, Morpho provides the means to access network servers, in order to query, view and retrieve relevant, public ecological data!</p></td>
241 2809 bowdish
        </tr>
242
      </table>
243
    </div>
244
  </td></tr></table>
245 2814 bowdish
<p class="intro">This repository is an effort of the <a href="http://www.nceas.ucsb.edu">National
246 1980 jones
Center for Ecological Analysis and Synthesis (NCEAS)</a> and
247
is based on software developed by the
248
<a href="http://knb.ecoinformatics.org">Knowledge Network for
249
Biocomplexity (KNB)</a>, and houses metadata that are compliant with
250
<a href="http://knb.ecoinformatics.org/software/eml/">Ecological Metadata
251
Language (EML)</a>.
252
</p>
253 2806 bowdish
254 2809 bowdish
    </td></tr>
255 1976 jones
</table>
256 2806 bowdish
257 1976 jones
<script language="JavaScript">
258
    insertTemplateClosing();
259
</script>
260
</body>
261
</html>