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 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 2806 bowdish
  <link href="nceas.css" rel="stylesheet" type="text/css">
158
  <style type="text/css">
159
<!--
160
.style2 {font-size: 14px}
161
-->
162
  </style>
163 1976 jones
</head>
164
<body>
165
      <script language="JavaScript">
166
          insertTemplateOpening();
167
          insertSearchBox();
168
      </script>
169 2806 bowdish
170
<table width="760" border="0" cellspacing="0" cellpadding="0"><!--DWLayoutTable-->
171 1976 jones
  <tr><td colspan="5">
172
<p>
173 1980 jones
Welcome to the NCEAS Data Repository. This repository contains information
174 2806 bowdish
about the research data sets collected and collated as part of NCEAS' funded activities.
175
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. </p>
176
<p>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>
177
<p> 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>
178 2809 bowdish
<br><br>
179 2806 bowdish
<table class="tables" cellpadding="8" cellspacing="0">
180
  <tr class="sectheader">
181
    <td class="borderbottom" colspan="2" align="left"><span class="label"> </span><a name="search" ></a>
182 2813 bowdish
        <p align="center" class="largetext"> Search for Data Sets </p></td>
183 2806 bowdish
  </tr>
184
  <tr class="sectbody"></tr>
185 2809 bowdish
186 2813 bowdish
  <tr >
187 2806 bowdish
    <td  colspan="2" align="left"><form method="POST" action="@servlet-path@" target="_top" onSubmit="return checkSearch(this)">
188
        <span class="searchresultsdividerPale">
189
        <input value="UNION" name="operator" type="hidden">
190
&nbsp;
191
        <input size="14" name="searchstring" type="text" value="" id="searchBox">
192 2809 bowdish
        <input name="query" type="hidden">
193 2806 bowdish
        <input name="qformat" value="nceas" type="hidden">
194
        <input name="enableediting" value="true" type="hidden">
195
        <input type="hidden" name="action" value="squery">
196
        <input value="Search" type="submit">
197
        </span>
198
      </form>
199
        <form>
200
          <input name="search" type="radio" checked>
201
        Search Title, Abstract, Keywords, Personnel (Quicker) <br>
202
        <input name="search" type="radio" id="searchAll">
203
        Search all fields (Slower) <br>
204 2813 bowdish
205 2806 bowdish
        </form>
206
        <div align="center">
207 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>
208 2806 bowdish
                <br>
209 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>
210 2806 bowdish
      </div></td>
211
  </tr>
212 2813 bowdish
  <tr >
213 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>
214 2809 bowdish
</td></tr></table>
215
<br><br>
216 2806 bowdish
<table class="tables" cellpadding="8" cellspacing="0">
217
  <tr class="sectheader">
218 2809 bowdish
    <td class="borderbottom" colspan="2" align="left"><span class="label"> </span>
219 2813 bowdish
        <p align="center" class="largetext"> Register information about a new NCEAS data set </p></td>
220 2806 bowdish
  </tr>
221 2809 bowdish
222
223 2813 bowdish
  <tr >
224 2806 bowdish
    <td  colspan="2" align="center"><div align="left">
225
      <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>
226
227
      <p align="center">OR</p>
228
      </div></td>
229
  </tr>
230 2813 bowdish
  <tr >
231 2809 bowdish
    <td class="borderbottom"><div align="left">
232
      <p align="center"></p>
233
      <table width="100%"  border="0" align="center" >
234
        <tr>
235
          <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>
236 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>
237
              <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>
238 2809 bowdish
        </tr>
239
      </table>
240
    </div>
241
  </td></tr></table>
242
<p>This repository is an effort of the <a href="http://www.nceas.ucsb.edu">National
243 1980 jones
Center for Ecological Analysis and Synthesis (NCEAS)</a> and
244
is based on software developed by the
245
<a href="http://knb.ecoinformatics.org">Knowledge Network for
246
Biocomplexity (KNB)</a>, and houses metadata that are compliant with
247
<a href="http://knb.ecoinformatics.org/software/eml/">Ecological Metadata
248
Language (EML)</a>.
249
</p>
250 2806 bowdish
251 2809 bowdish
    </td></tr>
252 1976 jones
</table>
253 2806 bowdish
254 1976 jones
<script language="JavaScript">
255
    insertTemplateClosing();
256
</script>
257
</body>
258
</html>