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 |
|
|
href="@systemidserver@@style-skins-path@/nceas/nceas.css"></link>
|
35 |
|
|
<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 |
2546
|
sgarg
|
+"<pathexpr>abstract/para</pathexpr>"
|
110 |
|
|
+"</queryterm>"
|
111 |
|
|
+"</querygroup>"
|
112 |
|
|
+"</querygroup>"
|
113 |
|
|
+"</pathquery>";
|
114 |
|
|
} else {
|
115 |
|
|
queryTermString = "";
|
116 |
|
|
if(searchString != "%"){
|
117 |
|
|
queryTermString = "<queryterm searchmode=\"contains\" casesensitive=\"false\">"
|
118 |
|
|
+"<value>" + searchString + "</value>"
|
119 |
|
|
+"</queryterm>";
|
120 |
|
|
}
|
121 |
2695
|
sgarg
|
submitFormObj.query.value = "<pathquery version=\"1.2\">"
|
122 |
2546
|
sgarg
|
+"<querytitle>Web-Search</querytitle>"
|
123 |
|
|
+"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
|
124 |
|
|
+"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
|
125 |
|
|
+"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype>"
|
126 |
|
|
+"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype>"
|
127 |
|
|
+"<returndoctype>-//NCEAS//resource//EN</returndoctype>"
|
128 |
|
|
+"<returndoctype>-//NCEAS//eml-dataset//EN</returndoctype>"
|
129 |
|
|
+"<returnfield>originator/individualName/surName</returnfield>"
|
130 |
|
|
+"<returnfield>originator/individualName/givenName</returnfield>"
|
131 |
|
|
+"<returnfield>creator/individualName/surName</returnfield>"
|
132 |
|
|
+"<returnfield>creator/individualName/givenName</returnfield>"
|
133 |
|
|
+"<returnfield>originator/organizationName</returnfield>"
|
134 |
|
|
+"<returnfield>creator/organizationName</returnfield>"
|
135 |
|
|
+"<returnfield>dataset/title</returnfield>"
|
136 |
|
|
+"<returnfield>keyword</returnfield>"
|
137 |
|
|
+"<querygroup operator=\"INTERSECT\">"
|
138 |
|
|
+"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
|
139 |
|
|
+"<value>National Center for Ecological Analysis and Synthesis</value>"
|
140 |
|
|
+"<pathexpr>organizationName</pathexpr>"
|
141 |
|
|
+"</queryterm>"
|
142 |
|
|
+ queryTermString
|
143 |
|
|
+"</querygroup>"
|
144 |
|
|
+"</pathquery>";
|
145 |
|
|
|
146 |
|
|
}
|
147 |
|
|
return true;
|
148 |
|
|
}
|
149 |
|
|
|
150 |
|
|
function searchAll(){
|
151 |
|
|
var checkBox = document.getElementById("searchCheckBox");
|
152 |
|
|
if(checkBox.checked == true){
|
153 |
|
|
alert("You have selected to search all possible existing fields. This search will take longer.");
|
154 |
|
|
}
|
155 |
|
|
}
|
156 |
|
|
</script>
|
157 |
1976
|
jones
|
</head>
|
158 |
|
|
<body>
|
159 |
|
|
<script language="JavaScript">
|
160 |
|
|
insertTemplateOpening();
|
161 |
|
|
insertSearchBox();
|
162 |
|
|
</script>
|
163 |
|
|
<table width="760" border="0" cellspacing="0" cellpadding="0">
|
164 |
|
|
<tr><td colspan="5">
|
165 |
|
|
<p>
|
166 |
1980
|
jones
|
Welcome to the NCEAS Data Repository. This repository contains information
|
167 |
|
|
about the research data sets collected and collated within or under the
|
168 |
2408
|
sgarg
|
auspices of NCEAS' funded activities. A number of these data sets were
|
169 |
2001
|
jones
|
synthesized from multiple data sources that originated from the efforts
|
170 |
|
|
of many contributors, while others originated from a single investigator.
|
171 |
2408
|
sgarg
|
Credit for the data sets in this repository goes to the investigators who
|
172 |
2001
|
jones
|
collected the data, and also to the NCEAS working groups and scientists who
|
173 |
|
|
compiled the data for synthetic purposes. See each data package for a list
|
174 |
|
|
of the people and institutions involved.
|
175 |
1976
|
jones
|
</p>
|
176 |
|
|
<p> </p>
|
177 |
2001
|
jones
|
<p>Data documentation (metadata) can be contributed to the repository in
|
178 |
|
|
several ways, each with its own strengths. The
|
179 |
2408
|
sgarg
|
<a href="@cgi-prefix@/register-dataset.cgi?cfg=nceas">Register a New Data Set</a>
|
180 |
1980
|
jones
|
web form is a simple way to get started with providing metadata about the
|
181 |
2408
|
sgarg
|
existence of a data set. But it can not be used for fully documenting the
|
182 |
1980
|
jones
|
data, nor can you upload the data objects themselves through this form.
|
183 |
2001
|
jones
|
In order to provide a more complete description of data, we recommend using the
|
184 |
1980
|
jones
|
<a href="http://knb.ecoinformatics.org/morphoportal.jsp" target="_top">Morpho</a>
|
185 |
|
|
software application which is fully compatible with this repository.
|
186 |
1976
|
jones
|
</p>
|
187 |
|
|
<p> </p>
|
188 |
1980
|
jones
|
<p><b>Repository Tools</b></p>
|
189 |
1976
|
jones
|
<p>
|
190 |
|
|
<menu>
|
191 |
2546
|
sgarg
|
<li><span class="searchbox"><a name="search"> Search for Data Sets</a></span><br />
|
192 |
|
|
<menu>
|
193 |
|
|
<form method="POST" action="@servlet-path@" target="_top" onSubmit="return checkSearch(this)">
|
194 |
|
|
<input value="UNION" name="operator" type="hidden">
|
195 |
|
|
<input size="14" name="searchstring" type="text" value="" id="searchBox">
|
196 |
|
|
<input name="query" type="hidden"/>
|
197 |
|
|
<input name="qformat" value="nceas" type="hidden">
|
198 |
|
|
<input name="enableediting" value="true" type="hidden">
|
199 |
|
|
<input type="hidden" name="action" value="squery">
|
200 |
|
|
<input value="Search" type="submit">
|
201 |
|
|
</form>
|
202 |
2704
|
sgarg
|
<form>
|
203 |
|
|
<input name="search" type="radio" checked><span class="text_plain"> Search Title, Abstract, Keywords, Personnel (Quicker)</span></input><br>
|
204 |
|
|
<input name="search" type="radio" id="searchAll"><span class="text_plain"> Search all fields (Slower)</span></input><br>
|
205 |
|
|
</form>
|
206 |
2546
|
sgarg
|
This tool allows you to search the registry for data
|
207 |
|
|
sets of interest. When you type text in the box and
|
208 |
|
|
click on the "Search" button, the search will only
|
209 |
|
|
be conducted within the title, author, abstract,
|
210 |
|
|
and keyword fields. Checking the "Search All Fields"
|
211 |
|
|
box will search on these and all other existing
|
212 |
|
|
fields (this search will take more time).
|
213 |
|
|
<br><br>
|
214 |
|
|
You can use the '%' character as a wildcard in your
|
215 |
|
|
searches (e.g., '%biodiversity%' would locate any
|
216 |
|
|
phrase with the word biodiversity embedded within it).
|
217 |
|
|
</menu>
|
218 |
|
|
<br><br>
|
219 |
|
|
</li>
|
220 |
|
|
|
221 |
2227
|
sgarg
|
<li><a href="@servlet-path@?action=query&operator=INTERSECT&anyfield=%25&organizationName=National%20Center%20for%20Ecological%20Analysis%20and%20Synthesis&qformat=nceas&enableediting=true&returndoctype=eml://ecoinformatics.org/eml-2.0.0&returndoctype=eml://ecoinformatics.org/eml-2.0.1&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&returnfield=dataset/title&returnfield=keyword&returnfield=originator/individualName/surName&returnfield=creator/individualName/surName&returnfield=originator/organizationName&returnfield=creator/organizationName">Browse existing NCEAS data sets</a><br />
|
222 |
1976
|
jones
|
<menu>
|
223 |
1980
|
jones
|
The repository search system is used to locate data sets of interest
|
224 |
1976
|
jones
|
by searching through existing registered data sets.
|
225 |
|
|
Presently the search covers all fields, including
|
226 |
|
|
author, title, abstract, keywords, and other documentation
|
227 |
2408
|
sgarg
|
for each data set. (More sophisticated search capabilities,
|
228 |
1976
|
jones
|
including boolean field searches, will be available in future.)
|
229 |
|
|
</menu>
|
230 |
|
|
</li>
|
231 |
|
|
<p> </p>
|
232 |
|
|
<li><a href="@cgi-prefix@/register-dataset.cgi?cfg=nceas">Register a new NCEAS data set</a><br />
|
233 |
|
|
<menu>
|
234 |
|
|
The registration page is used to submit information about a <b>new</b>
|
235 |
|
|
data set associated with NCEAS research. The documentation about the
|
236 |
2433
|
sgarg
|
data set will be reviewed and then submitted to the repository.
|
237 |
1976
|
jones
|
</menu>
|
238 |
|
|
</li>
|
239 |
|
|
</menu>
|
240 |
|
|
</p>
|
241 |
1980
|
jones
|
<p> </p>
|
242 |
|
|
<p>
|
243 |
|
|
This repository is an effort of the <a href="http://www.nceas.ucsb.edu">National
|
244 |
|
|
Center for Ecological Analysis and Synthesis (NCEAS)</a> and
|
245 |
|
|
is based on software developed by the
|
246 |
|
|
<a href="http://knb.ecoinformatics.org">Knowledge Network for
|
247 |
|
|
Biocomplexity (KNB)</a>, and houses metadata that are compliant with
|
248 |
|
|
<a href="http://knb.ecoinformatics.org/software/eml/">Ecological Metadata
|
249 |
|
|
Language (EML)</a>.
|
250 |
|
|
</p>
|
251 |
2001
|
jones
|
<p>
|
252 |
|
|
If you have any questions, comments or problems regarding this form, please
|
253 |
|
|
contact the repository administrator at
|
254 |
|
|
<a href="mailto:help@nceas.ucsb.edu">help@nceas.ucsb.edu</a>.
|
255 |
|
|
</p>
|
256 |
1976
|
jones
|
</td></tr>
|
257 |
|
|
</table>
|
258 |
|
|
<p> </p>
|
259 |
|
|
<script language="JavaScript">
|
260 |
|
|
insertTemplateClosing();
|
261 |
|
|
</script>
|
262 |
|
|
</body>
|
263 |
|
|
</html>
|