Project

General

Profile

1
<!--
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: jones $'
9
  *     '$Date: 2007-09-13 14:06:02 -0700 (Thu, 13 Sep 2007) $'
10
  * '$Revision: 3444 $'
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
<title>NCEAS Data Repository</title>
32
  <link rel="stylesheet" type="text/css" 
33
        href="@systemidserver@@style-skins-path@/nceas/midnight.css">
34
  <script language="JavaScript" type="text/JavaScript"
35
          src="@systemidserver@@style-skins-path@/nceas/nceas.js"></script>
36
  <script language="JavaScript" type="text/JavaScript"
37
          src="@systemidserver@@style-common-path@/branding.js"></script>
38
  <script type="text/javascript" 
39
          src="@systemidserver@@style-skins-path@/nceas/navigation.js"></script>
40
  <script language="Javascript">
41
        function trim(stringToTrim) {
42
                return stringToTrim.replace(/^\s*/, '').replace(/\s*$/,'');
43
        }
44

    
45
        function checkSearch(submitFormObj) {
46
                var searchString = trim(submitFormObj.searchstring.value);
47
 		var checkBox = document.getElementById("searchAll");
48

    
49
                if (searchString=="") {
50
			if (confirm("Show *all* data in the KNB?")) {
51
          			searchString = "%";
52
        		} else {
53
          			return false;
54
        		}
55
                }
56

    
57
                if(!checkBox.checked && searchString!="%"){
58
                        submitFormObj.query.value = "<pathquery version=\"1.2\">"
59
                                                           +"<querytitle>Web-Search</querytitle>"
60
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
61
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
62
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype>"
63
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype>"
64
                                                           +"<returndoctype>-//NCEAS//resource//EN</returndoctype>"
65
                                                           +"<returndoctype>-//NCEAS//eml-dataset//EN</returndoctype>"
66
                                                           +"<returnfield>originator/individualName/surName</returnfield>"
67
                                                           +"<returnfield>originator/individualName/givenName</returnfield>"
68
                                                           +"<returnfield>creator/individualName/surName</returnfield>"
69
                                                           +"<returnfield>creator/individualName/givenName</returnfield>"
70
                                                           +"<returnfield>originator/organizationName</returnfield>"
71
                                                           +"<returnfield>creator/organizationName</returnfield>"
72
                                                           +"<returnfield>dataset/title</returnfield>"
73
                                                           +"<returnfield>keyword</returnfield>"
74
                                                           +"<querygroup operator=\"INTERSECT\">"
75
                                                                +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
76
                                                                        +"<value>National Center for Ecological Analysis and Synthesis</value>"
77
                                                                        +"<pathexpr>organizationName</pathexpr>"
78
                                                                +"</queryterm>"
79
                                                                +"<querygroup operator=\"UNION\">"
80
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
81
                                                                                +"<value>" + searchString + "</value>"
82
                                                                                +"<pathexpr>surName</pathexpr>"
83
                                                                        +"</queryterm>"
84
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
85
                                                                                +"<value>" + searchString + "</value>"
86
                                                                                +"<pathexpr>givenName</pathexpr>"
87
                                                                        +"</queryterm>"
88
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
89
                                                                                +"<value>" + searchString + "</value>"
90
                                                                                +"<pathexpr>keyword</pathexpr>"
91
                                                                        +"</queryterm>"
92
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
93
                                                                                +"<value>" + searchString + "</value>"
94
                                                                         +"<pathexpr>para</pathexpr>"
95
                                                                        +"</queryterm>"
96
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
97
                                                                                +"<value>" + searchString + "</value>"
98
                                                                                +"<pathexpr>geographicDescription</pathexpr>"
99
                                                                        +"</queryterm>"
100
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
101
                                                                                +"<value>" + searchString + "</value>"
102
                                                                                +"<pathexpr>literalLayout</pathexpr>"
103
                                                                        +"</queryterm>"
104
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
105
                                                                                +"<value>" + searchString + "</value>"
106
                                                                                +"<pathexpr>title</pathexpr>"
107
                                                                        +"</queryterm>"
108
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
109
                                                                                +"<value>" + searchString + "</value>"
110
                                                                                +"<pathexpr>@packageId</pathexpr>"
111
                                                                        +"</queryterm>"
112
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
113
                                                                                +"<value>" + searchString + "</value>"
114
                                                                                +"<pathexpr>abstract/para</pathexpr>"
115
                                                                        +"</queryterm>"
116
                                                                +"</querygroup>"
117
                                                          +"</querygroup>"
118
                                                  +"</pathquery>";
119
                } else {
120
                        queryTermString = "";
121
                        if(searchString != "%"){
122
                                queryTermString = "<queryterm searchmode=\"contains\" casesensitive=\"false\">"
123
                                                        +"<value>" + searchString + "</value>"
124
                                                 +"</queryterm>";
125
                        }
126
                        submitFormObj.query.value = "<pathquery version=\"1.2\">"
127
                                                           +"<querytitle>Web-Search</querytitle>"
128
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
129
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
130
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype>"
131
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype>"
132
                                                           +"<returndoctype>-//NCEAS//resource//EN</returndoctype>"
133
                                                           +"<returndoctype>-//NCEAS//eml-dataset//EN</returndoctype>"
134
                                                           +"<returnfield>originator/individualName/surName</returnfield>"
135
                                                           +"<returnfield>originator/individualName/givenName</returnfield>"
136
                                                           +"<returnfield>creator/individualName/surName</returnfield>"
137
                                                           +"<returnfield>creator/individualName/givenName</returnfield>"
138
                                                           +"<returnfield>originator/organizationName</returnfield>"
139
                                                           +"<returnfield>creator/organizationName</returnfield>"
140
                                                           +"<returnfield>dataset/title</returnfield>"
141
                                                           +"<returnfield>keyword</returnfield>"
142
                                                           +"<querygroup operator=\"INTERSECT\">"
143
                                                                +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
144
                                                                        +"<value>National Center for Ecological Analysis and Synthesis</value>"
145
                                                                        +"<pathexpr>organizationName</pathexpr>"
146
                                                                +"</queryterm>"
147
                                                                + queryTermString
148
                                                           +"</querygroup>"
149
                                                    +"</pathquery>";
150

    
151
                }
152
                return true;
153
        }
154

    
155
        function searchAll(){
156
                var checkBox = document.getElementById("searchCheckBox");
157
                if(checkBox.checked == true){
158
                        alert("You have selected to search all possible existing fields. This search will take longer.");
159
                }
160
        }
161
   </script>
162
  <link href="nceas.css" rel="stylesheet" type="text/css">
163
  <style type="text/css">
164
<!--
165
.style2 {font-size: 14px}
166
-->
167
  </style>
168
</head>
169
<body id="Overview">
170
    <div id="main_wrapper">
171

    
172
    <div id="header">
173
        <p>Skip to <a href="#navigation">navigation</a>, <a href="#main_content">main
174
        content</a>, <a href="#secondary_content">secondary content</a> or to <a
175
        href="#search">search</a>.</p> <h1><span></span><a href="/">NCEAS</a></h1>
176
    </div>
177
    <div id="navigation">
178
        <ul id="main_nav">
179

    
180
                    <ul class="menu">
181
                        <li class="collapsed"><a href="http://www.nceas.ucsb.edu">Home</a></li>
182
                        <li class="collapsed"><a href="http://data.nceas.ucsb.edu">Repository</a></li>
183
                        <li class="collapsed"><a href="@cgi-prefix@/register-dataset.cgi?cfg=nceas">Register</a></li>
184
                    </ul>
185
        </ul>
186
     </div> <!-- navigation --> 
187

    
188
    <div id="content_wrapper">
189
        <h1>NCEAS Data Repository</h1>
190

    
191
<p class ="intro">Welcome to the NCEAS Data Repository. This repository contains information 
192
about the research data sets collected and collated as part of NCEAS' funded activities. 
193
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>
194
<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>
195
<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>
196
<br>
197
<table class="tables" cellpadding="8" cellspacing="0">
198
  <tr class="sectheader">
199
    <td class="borderbottom" colspan="2" align="left"><span class="label"> </span><a name="search" ></a>
200
        <p align="center" class="largetext"> Search for Data Sets </p></td>
201
  </tr>
202
  <tr class="sectbody"></tr>
203
 
204
  <tr >
205
    <td  colspan="2" align="left"><form method="POST" action="@servlet-path@" target="_top" onSubmit="return checkSearch(this)">
206
        <span class="searchresultsdividerPale">
207
        <input value="UNION" name="operator" type="hidden">
208
&nbsp;
209
        <input size="14" name="searchstring" type="text" value="" id="searchBox">
210
        <input name="query" type="hidden">
211
        <input name="qformat" value="nceas" type="hidden">
212
        <input name="enableediting" value="true" type="hidden">
213
        <input type="hidden" name="action" value="squery">
214
        <input value="Search" type="submit">
215
        </span>
216
      </form>
217
        <form>
218
          <input name="search" type="radio" checked>
219
        Search Title, Abstract, Keywords, Personnel (Quicker) <br>
220
        <input name="search" type="radio" id="searchAll">
221
        Search all fields (Slower) <br>
222
          
223
        </form>
224
        <div align="center">
225
          <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>
226
                <br>
227
          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>
228
      </div></td>
229
  </tr>
230
  <tr >
231
    <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>
232
<br/><br/>
233
<a href="map.html"> View Interactive Map </a> </div>
234
</td></tr></table>
235
<br><br>
236
<table class="tables" cellpadding="8" cellspacing="0">
237
  <tr class="sectheader">
238
    <td class="borderbottom" colspan="2" align="left"><span class="label"> </span>
239
        <p align="center" class="largetext"> Register information about a new NCEAS data set </p></td>
240
  </tr>
241
  
242
 
243
  <tr >
244
    <td  colspan="2" align="center"><div align="left">
245
      <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>
246
  
247
      <p align="center">OR</p>
248
      </div></td>
249
  </tr>
250
  <tr >
251
    <td class="borderbottom"><div align="left">
252
      <p align="center"></p>
253
      <table width="100%"  border="0" align="center" >
254
        <tr>
255
          <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>
256
          <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>
257
              <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>
258
        </tr>
259
      </table>
260
    </div>
261
  </td></tr></table>
262
<p class="intro">This repository is an effort of the <a href="http://www.nceas.ucsb.edu">National 
263
Center for Ecological Analysis and Synthesis (NCEAS)</a> and
264
is based on software developed by the
265
<a href="http://knb.ecoinformatics.org">Knowledge Network for 
266
Biocomplexity (KNB)</a>, and houses metadata that are compliant with 
267
<a href="http://knb.ecoinformatics.org/software/eml/">Ecological Metadata 
268
Language (EML)</a>.
269
</p>
270

    
271
<div id="footer">
272
    <div id="footer_logos">
273
                <a href="http://www.msi.ucsb.edu/"><img
274
src="logo_msi.jpg" alt="MSI: Marine Science Institute" height="66"
275
width="132"></a><a href="http://www.nsf.gov/"><img src="logo_nsf.jpg"
276
alt="NSF: National Science 
277
Foundation" height="66" width="70"></a><a href="http://www.ucsb.edu/"><img
278
src="logo_ucsb.jpg" alt="UCSB: University of California at Santa Barbara"
279
height="66" width="132"></a>
280
    </div> <!-- footer_logos -->
281
    <div id="footer_contact">
282
        <span class="contact_name">National Center for Ecological Analysis and Synthesis</span>
283

    
284
        <span class="contact_address">735 State Street, Suite 300, Santa Barbara, CA 93101</span>
285
        <span class="copyright">Copyright &copy; ? 2007 The Regents of the
286
University of California, All Rights Reserved</span>
287
        <span class="copyright"><a href="http://www.ucsb.edu/" title="Visit the
288
UCSB website">UC Santa Barbara</a>, Santa Barbara CA 93106 &bull; (805)
289
893-8000</span>
290
        <span class="copyright"><a href="mailto:webmaster@nceas.ucsb.edu"
291
title="E-mail the NCEAS webmaster">Contact</a> &bull; <a
292
href="http://www.ucsb.edu/policies/terms-of-use.shtml">Terms of Use</a> &bull; <a
293
href="http://www.nceas.ucsb.edu/accessibility" title="NCEAS is committed to the
294
accessibility of its products for all users">Accessibility</a></span>
295

    
296
        <span class="copyright">Last Modified July 10, 2007</span>
297
    </div> <!-- footer_contact -->
298
</div>
299

    
300
</div> <!-- id="content_wrapper"-->
301

    
302
<script language="JavaScript">          
303
    insertTemplateClosing();
304
</script>
305
    </div>
306
</body>
307
</html>
(6-6/21)