adiwg-json_schemas 0.4.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/adiwg-json_schemas.gemspec +2 -1
- data/examples/contactRef.json +1 -7
- data/examples/extent_point.json +32 -12
- data/examples/full_example.json +1620 -1037
- data/examples/lcc_project_example.json +35 -18
- data/lib/adiwg/json_schemas/version.rb +1 -1
- data/schema/schema.json +15 -14
- data/schema/schema/citation.json +46 -26
- data/schema/schema/contact.json +3 -17
- data/schema/schema/dataQuality.json +1 -1
- data/schema/schema/distributor.json +1 -1
- data/schema/schema/extent.json +9 -9
- data/schema/schema/geojson/crs.json +5 -2
- data/schema/schema/geojson/geojson.json +7 -4
- data/schema/schema/geojson/geometry.json +5 -0
- data/schema/schema/graphicOverview.json +1 -1
- data/schema/schema/keyword.json +2 -2
- data/schema/schema/metadata.json +25 -12
- data/schema/schema/onlineResource.json +1 -1
- data/schema/schema/resourceInfo.json +9 -0
- data/templates/adiwg_metadata_template.json +114 -21
- data/test/tc_schemas.rb +4 -9
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e32a203cca9fc8e322e972d9fc02167468b4b284
|
4
|
+
data.tar.gz: 398186cdee6682807312ce9ce263dc0f427cbc5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca197b5fc1f98e90c64a597a5ff5eb7c46cd2f001452fac7cfb364d27e4c0a8f24563eb57774c92ed90f12637efd8ea21d3db1eb6ef29154bf22b42f617f0674
|
7
|
+
data.tar.gz: 7c143f6b20b8e97ca6bd79b34b36ba42cb4abdac384e83e2d7c0c584327363c7dec778c4d49adf775c3503aa2f668bfe140a4c2505c12987766066ef555213c4
|
data/adiwg-json_schemas.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = ADIWG::JsonSchemas::VERSION
|
9
9
|
spec.authors = ["Josh Bradley, Stan Smith"]
|
10
10
|
spec.email = ["jbradley@arcticlcc.org"]
|
11
|
-
spec.description = %q{JSON schemas for validating according to the the ADIwg project and data metadata standard. The schemas comply JSON Schema draft version 4.}
|
11
|
+
spec.description = %q{JSON schemas for validating according to the the ADIwg project and data metadata standard. The schemas comply with JSON Schema draft version 4.}
|
12
12
|
spec.summary = %q{JSON schemas for the ADIwg metadata standard}
|
13
13
|
spec.homepage = "https://github.com/adiwg/adiwg-json-schemas"
|
14
14
|
spec.license = "UNLICENSE"
|
@@ -21,4 +21,5 @@ Gem::Specification.new do |spec|
|
|
21
21
|
spec.add_development_dependency "bundler", "~> 1.3"
|
22
22
|
spec.add_development_dependency "rake"
|
23
23
|
spec.add_development_dependency "json-schema"
|
24
|
+
spec.add_development_dependency "test-unit"
|
24
25
|
end
|
data/examples/contactRef.json
CHANGED
data/examples/extent_point.json
CHANGED
@@ -7,19 +7,39 @@
|
|
7
7
|
"id":"point1",
|
8
8
|
"properties":{
|
9
9
|
"name":"BS7882",
|
10
|
-
"description":"
|
10
|
+
"description":"Borehole BS7882 location",
|
11
11
|
"assignedId": [
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
12
|
+
{
|
13
|
+
"title":"Global Terrestrial Network for Permafrost Identifiers",
|
14
|
+
"responsibleParty":[
|
15
|
+
{
|
16
|
+
"contactId":"8",
|
17
|
+
"role":"originator"
|
18
|
+
}
|
19
|
+
],
|
20
|
+
"onlineResource":[
|
21
|
+
{
|
22
|
+
"uri":"http://www.gtnp.org"
|
23
|
+
}
|
24
|
+
],
|
25
|
+
"identifier":"US 01"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"title":"US Geological Survey borehole identifier",
|
29
|
+
"responsibleParty":[
|
30
|
+
{
|
31
|
+
"contactId":"3",
|
32
|
+
"role":"originator"
|
33
|
+
}
|
34
|
+
],
|
35
|
+
"onlineResource":[
|
36
|
+
{
|
37
|
+
"uri":"http://data.usgs.gov/climateMonitoring/region/show?region=alaska"
|
38
|
+
}
|
39
|
+
],
|
40
|
+
"identifier":"ATI"
|
41
|
+
}
|
42
|
+
]
|
23
43
|
},
|
24
44
|
"geometry":{
|
25
45
|
"type":"Point",
|
data/examples/full_example.json
CHANGED
@@ -1,337 +1,521 @@
|
|
1
1
|
{
|
2
|
-
"
|
2
|
+
"version":{
|
3
|
+
"name":"adiwgJSON",
|
4
|
+
"version":"0.3.0"
|
5
|
+
},
|
6
|
+
"contact":[
|
3
7
|
{
|
4
8
|
"contactId":"1",
|
5
|
-
"
|
6
|
-
"organizationName":"Arctic Landscape Conservation Cooperative",
|
7
|
-
"positionName":"Data Manager",
|
9
|
+
"organizationName":"US Geological Survey - Alaska Science Center",
|
8
10
|
"onlineResource":[
|
9
11
|
{
|
10
|
-
"
|
11
|
-
"
|
12
|
-
"
|
13
|
-
|
14
|
-
|
15
|
-
"linkage":"http://alaska.usgs.gov/akcsc",
|
16
|
-
"name":"Alaska Climate Science Center",
|
17
|
-
"description":"Website for the USGS Alaska Climate Science Center"
|
12
|
+
"uri":"http://alaska.usgs.gov/",
|
13
|
+
"protocol":"http",
|
14
|
+
"name":"Alaska Science Center Home Page",
|
15
|
+
"description":"Alaska Science Center home page",
|
16
|
+
"function":"information"
|
18
17
|
}
|
19
18
|
],
|
20
|
-
"
|
19
|
+
"contactInstructions":"Complete Department and Employee phone book online with email addresses",
|
20
|
+
"phoneBook":[
|
21
21
|
{
|
22
|
-
"phoneName":"
|
23
|
-
"phoneNumber":"
|
22
|
+
"phoneName":"Main Phone",
|
23
|
+
"phoneNumber":"907-786-7000",
|
24
|
+
"service":[
|
25
|
+
"voice"
|
26
|
+
]
|
24
27
|
},
|
25
28
|
{
|
26
|
-
"phoneName":"
|
27
|
-
"phoneNumber":"907-
|
29
|
+
"phoneName":"Main Fax",
|
30
|
+
"phoneNumber":"907-786-7020",
|
31
|
+
"service":[
|
32
|
+
"fax"
|
33
|
+
]
|
28
34
|
}
|
29
35
|
],
|
30
|
-
"
|
36
|
+
"address":{
|
37
|
+
"deliveryPoint":[
|
38
|
+
"4210 University Drive"
|
39
|
+
],
|
40
|
+
"city":"Anchorage",
|
41
|
+
"administrativeArea":"AK",
|
42
|
+
"postalCode":"99508",
|
43
|
+
"country":"USA"
|
44
|
+
}
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"contactId":"2",
|
48
|
+
"individualName":"Urban, Frank",
|
49
|
+
"organizationName":"US Geological Survey",
|
50
|
+
"positionName":"Research Geologist",
|
51
|
+
"onlineResource":[
|
31
52
|
{
|
32
|
-
"
|
33
|
-
"
|
53
|
+
"uri":"http://academic.research.microsoft.com/Author/27724864/frank-e-urban",
|
54
|
+
"protocol":"http",
|
55
|
+
"name":"Microsoft Academic Search",
|
56
|
+
"description":"Academic publications of Frank Urban",
|
57
|
+
"function":"information"
|
34
58
|
},
|
35
59
|
{
|
36
|
-
"
|
37
|
-
"
|
60
|
+
"uri":"http://www.linkedin.com/pub/frank-urban/27/565/1a8",
|
61
|
+
"protocol":"http",
|
62
|
+
"name":"LinkedIn",
|
63
|
+
"description":"Frank Urban's Linked In page",
|
64
|
+
"function":"information"
|
38
65
|
}
|
39
66
|
],
|
40
|
-
"
|
67
|
+
"contactInstructions":"Like the message says, Leave a message if no answer",
|
68
|
+
"phoneBook":[
|
41
69
|
{
|
42
70
|
"phoneName":"office",
|
43
|
-
"phoneNumber":"
|
71
|
+
"phoneNumber":"303-236-5953",
|
72
|
+
"service":[
|
73
|
+
"voice"
|
74
|
+
]
|
44
75
|
},
|
45
76
|
{
|
46
|
-
"phoneName":"
|
47
|
-
"phoneNumber":"
|
77
|
+
"phoneName":"mobile",
|
78
|
+
"phoneNumber":"808-236-5463",
|
79
|
+
"service":[
|
80
|
+
"voice",
|
81
|
+
"sms"
|
82
|
+
]
|
48
83
|
}
|
49
84
|
],
|
50
85
|
"address":{
|
51
86
|
"deliveryPoint":[
|
52
|
-
"
|
53
|
-
"
|
87
|
+
"West 6th Ave. & Kipling St.",
|
88
|
+
"DFC Bldg. 810"
|
54
89
|
],
|
55
|
-
"city":"
|
56
|
-
"administrativeArea":"
|
57
|
-
"postalCode":"
|
90
|
+
"city":"Lakewood",
|
91
|
+
"administrativeArea":"CO",
|
92
|
+
"postalCode":"80225",
|
58
93
|
"country":"USA",
|
59
94
|
"electronicMailAddress":[
|
60
|
-
"
|
61
|
-
"jbradley@arcticlcc.org"
|
95
|
+
"furban@usgs.gov"
|
62
96
|
]
|
63
97
|
}
|
64
98
|
},
|
65
99
|
{
|
66
|
-
"contactId":"
|
67
|
-
"organizationName":"
|
100
|
+
"contactId":"3",
|
101
|
+
"organizationName":"US Geological Survey - Permafrost and Climate Monitoring",
|
68
102
|
"onlineResource":[
|
69
103
|
{
|
70
|
-
"
|
71
|
-
"
|
72
|
-
"
|
73
|
-
|
74
|
-
|
75
|
-
"voice":[
|
76
|
-
{
|
77
|
-
"phoneName":"office",
|
78
|
-
"phoneNumber":"907-786-3605"
|
79
|
-
},
|
80
|
-
{
|
81
|
-
"phoneName":"mobile",
|
82
|
-
"phoneNumber":"907-306-1895"
|
104
|
+
"uri":"http://data.usgs.gov/climateMonitoring/region/show?region=alaska",
|
105
|
+
"protocol":"http",
|
106
|
+
"name":"Real-Time Permafrost and Climate Monitoring Network - Arctic Alaska",
|
107
|
+
"description":"",
|
108
|
+
"function":"information"
|
83
109
|
}
|
84
110
|
],
|
85
|
-
"
|
111
|
+
"phoneBook":[
|
86
112
|
{
|
87
|
-
"phoneName":"office",
|
88
|
-
"phoneNumber":"
|
113
|
+
"phoneName":"main office",
|
114
|
+
"phoneNumber":"303-236-5900",
|
115
|
+
"service":[
|
116
|
+
"voice"
|
117
|
+
]
|
89
118
|
}
|
90
119
|
],
|
91
120
|
"address":{
|
92
121
|
"deliveryPoint":[
|
93
|
-
"
|
122
|
+
"West 6th Ave. & Kipling St.",
|
123
|
+
"DFC Bldg. 810"
|
94
124
|
],
|
95
|
-
"city":"
|
96
|
-
"administrativeArea":"
|
97
|
-
"postalCode":"
|
125
|
+
"city":"Lakewood",
|
126
|
+
"administrativeArea":"CO",
|
127
|
+
"postalCode":"80225",
|
98
128
|
"country":"USA",
|
99
129
|
"electronicMailAddress":[
|
100
|
-
"
|
130
|
+
"pcm_info@usgs.gov"
|
101
131
|
]
|
102
132
|
}
|
103
133
|
},
|
104
134
|
{
|
105
|
-
"contactId":"
|
106
|
-
"organizationName":"Arctic
|
107
|
-
"
|
135
|
+
"contactId":"4",
|
136
|
+
"organizationName":"FWS - Arctic National Wildlife Refuge",
|
137
|
+
"onlineResource":[
|
138
|
+
{
|
139
|
+
"uri":"http://www.fws.gov/alaska/nwr/arctic/",
|
140
|
+
"name":"Arctic National Wildlife Refuge",
|
141
|
+
"description":"Arctic National Wildlife Refuge home page",
|
142
|
+
"function":"information"
|
143
|
+
}
|
144
|
+
],
|
145
|
+
"phoneBook":[
|
146
|
+
{
|
147
|
+
"phoneName":"main office",
|
148
|
+
"phoneNumber":"907-456-0250",
|
149
|
+
"service":[
|
150
|
+
"voice"
|
151
|
+
]
|
152
|
+
},
|
153
|
+
{
|
154
|
+
"phoneName":"main office toll free",
|
155
|
+
"phoneNumber":"800-362-4546",
|
156
|
+
"service":[
|
157
|
+
"voice"
|
158
|
+
]
|
159
|
+
},
|
160
|
+
{
|
161
|
+
"phoneName":"main office",
|
162
|
+
"phoneNumber":"907-456-0428",
|
163
|
+
"service":[
|
164
|
+
"fax"
|
165
|
+
]
|
166
|
+
}
|
167
|
+
],
|
108
168
|
"address":{
|
109
169
|
"deliveryPoint":[
|
110
170
|
"101 12th Avenue",
|
111
|
-
"Room
|
171
|
+
"Room 236"
|
112
172
|
],
|
113
173
|
"city":"Fairbanks",
|
114
174
|
"administrativeArea":"AK",
|
115
175
|
"postalCode":"99701",
|
116
176
|
"country":"USA",
|
117
177
|
"electronicMailAddress":[
|
118
|
-
"
|
119
|
-
"jbradley@arcticlcc.org"
|
178
|
+
"arctic_refuge@fws.gov"
|
120
179
|
]
|
121
180
|
}
|
122
181
|
},
|
123
182
|
{
|
124
|
-
"contactId":"
|
125
|
-
"individualName":"
|
126
|
-
"organizationName":"
|
127
|
-
"positionName":"Data Librarian",
|
183
|
+
"contactId":"5",
|
184
|
+
"individualName":"",
|
185
|
+
"organizationName":"BLM - Arctic Field Office",
|
128
186
|
"onlineResource":[
|
129
187
|
{
|
130
|
-
"
|
131
|
-
"name":"
|
132
|
-
"description":"
|
133
|
-
|
134
|
-
{
|
135
|
-
"linkage":"http://www.aoos.org",
|
136
|
-
"name":"The Alaska Ocean Observing System",
|
137
|
-
"description":"The homepage for AOOS, the eye on Alaska's coasts and oceans"
|
138
|
-
}
|
139
|
-
],
|
140
|
-
"voice":[
|
141
|
-
{
|
142
|
-
"phoneName":"mobile",
|
143
|
-
"phoneNumber":"907-555-1234"
|
188
|
+
"uri":"http://www.blm.gov/ak/st/en/fo/fdo/arctic_field_office.html",
|
189
|
+
"name":"Bureau of Land Management - Alaska",
|
190
|
+
"description":"Arctic Field office home page",
|
191
|
+
"function":"information"
|
144
192
|
}
|
145
193
|
],
|
146
|
-
"
|
194
|
+
"contactInstructions":"Please send comments and questions about the BLM and its programs to woinfo@blm.gov",
|
195
|
+
"phoneBook":[
|
147
196
|
{
|
148
|
-
"phoneName":"
|
149
|
-
"phoneNumber":"907-
|
150
|
-
|
151
|
-
|
152
|
-
|
197
|
+
"phoneName":"main office",
|
198
|
+
"phoneNumber":"907-474-2200",
|
199
|
+
"service":[
|
200
|
+
"voice"
|
201
|
+
]
|
202
|
+
},
|
153
203
|
{
|
154
|
-
"phoneName":"office",
|
155
|
-
"phoneNumber":"
|
204
|
+
"phoneName":"main office toll free",
|
205
|
+
"phoneNumber":"800-437-7021",
|
206
|
+
"service":[
|
207
|
+
"voice"
|
208
|
+
]
|
156
209
|
},
|
157
210
|
{
|
158
|
-
"phoneName":"
|
159
|
-
"phoneNumber":"
|
211
|
+
"phoneName":"main office",
|
212
|
+
"phoneNumber":"907-474-2280",
|
213
|
+
"service":[
|
214
|
+
"fax"
|
215
|
+
]
|
160
216
|
}
|
161
217
|
],
|
162
218
|
"address":{
|
163
219
|
"deliveryPoint":[
|
164
|
-
"
|
165
|
-
"Suite 104"
|
220
|
+
"1150 University Avenue"
|
166
221
|
],
|
167
|
-
"city":"
|
168
|
-
"administrativeArea":"
|
169
|
-
"postalCode":"
|
222
|
+
"city":"Fairbanks",
|
223
|
+
"administrativeArea":"AK",
|
224
|
+
"postalCode":"99709",
|
170
225
|
"country":"USA",
|
171
226
|
"electronicMailAddress":[
|
172
|
-
"
|
173
|
-
"
|
227
|
+
"Arctic@blm.gov",
|
228
|
+
"woinfo@blm.gov"
|
174
229
|
]
|
175
230
|
}
|
176
231
|
},
|
177
232
|
{
|
178
|
-
"contactId":"
|
179
|
-
"individualName":"
|
180
|
-
"organizationName":"
|
181
|
-
"positionName":"
|
182
|
-
"
|
183
|
-
{
|
184
|
-
"linkage":"http://moixaalaska.com",
|
185
|
-
"name":"Moixa Design and Consulting",
|
186
|
-
"description":"Website for Moixa Design and Consulting"
|
187
|
-
},
|
233
|
+
"contactId":"6",
|
234
|
+
"individualName":"Clow, Gary D.",
|
235
|
+
"organizationName":"US Geological Survey",
|
236
|
+
"positionName":"Research Geophysicist",
|
237
|
+
"phoneBook":[
|
188
238
|
{
|
189
|
-
"
|
239
|
+
"phoneName":"office",
|
240
|
+
"phoneNumber":"303-236-5944",
|
241
|
+
"service":[
|
242
|
+
"voice"
|
243
|
+
]
|
190
244
|
}
|
191
245
|
],
|
192
|
-
"
|
246
|
+
"address":{
|
247
|
+
"deliveryPoint":[
|
248
|
+
"West 6th Ave. & Kipling St.",
|
249
|
+
"DFC Bldg. 810",
|
250
|
+
"Building 25"
|
251
|
+
],
|
252
|
+
"city":"Lakewood",
|
253
|
+
"administrativeArea":"CO",
|
254
|
+
"postalCode":"80225",
|
255
|
+
"country":"USA",
|
256
|
+
"electronicMailAddress":[
|
257
|
+
"gclow@usgs.gov",
|
258
|
+
"gary.clow@colorado.edu"
|
259
|
+
]
|
260
|
+
}
|
261
|
+
},
|
262
|
+
{
|
263
|
+
"contactId":"7",
|
264
|
+
"individualName":"Brown, A.C.",
|
265
|
+
"organizationName":"US Geological Survey - Alaska Science Center",
|
266
|
+
"positionName":"Metadata Specialist",
|
267
|
+
"phoneBook":[
|
193
268
|
{
|
194
269
|
"phoneName":"office",
|
195
|
-
"phoneNumber":"907-
|
270
|
+
"phoneNumber":"907-786-7002",
|
271
|
+
"service":[
|
272
|
+
"voice"
|
273
|
+
]
|
196
274
|
},
|
197
275
|
{
|
198
|
-
"phoneName":"
|
199
|
-
"phoneNumber":"907-
|
276
|
+
"phoneName":"main office",
|
277
|
+
"phoneNumber":"907-786-7040",
|
278
|
+
"service":[
|
279
|
+
"fax"
|
280
|
+
]
|
200
281
|
}
|
201
282
|
],
|
202
|
-
"
|
283
|
+
"address":{
|
284
|
+
"deliveryPoint":[
|
285
|
+
"4230 University Drive",
|
286
|
+
"Suite 201"
|
287
|
+
],
|
288
|
+
"city":"Anchorage",
|
289
|
+
"administrativeArea":"AK",
|
290
|
+
"postalCode":"99508",
|
291
|
+
"country":"USA",
|
292
|
+
"electronicMailAddress":[
|
293
|
+
"acbrown2@usgs.gov"
|
294
|
+
]
|
295
|
+
}
|
296
|
+
},
|
297
|
+
{
|
298
|
+
"contactId":"8",
|
299
|
+
"individualName":"Sharon Smith",
|
300
|
+
"organizationName":"Global Terrestrial Network for Permafrost (GTN-P)",
|
301
|
+
"positionName":"Permafrost Research Scientist ",
|
302
|
+
"onlineResource":[
|
203
303
|
{
|
204
|
-
"
|
205
|
-
"
|
304
|
+
"uri":"http://www.gtnp.org/",
|
305
|
+
"protocol":"http",
|
306
|
+
"name":"Global Terrestrial Network for Permafrost",
|
307
|
+
"description":"Home page for the network initiative",
|
308
|
+
"function":"information"
|
206
309
|
}
|
207
310
|
],
|
208
|
-
"
|
311
|
+
"contactInstructions":"email preferred",
|
312
|
+
"phoneBook":[
|
209
313
|
{
|
210
|
-
"phoneName":"
|
211
|
-
"phoneNumber":"
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
314
|
+
"phoneName":"Office",
|
315
|
+
"phoneNumber":"(613) 947-7066",
|
316
|
+
"service":[
|
317
|
+
"voice",
|
318
|
+
"fax"
|
319
|
+
]
|
216
320
|
}
|
217
321
|
],
|
218
322
|
"address":{
|
219
|
-
"deliveryPoint":[
|
220
|
-
"532 W 8th Ave",
|
221
|
-
"Suite 401"
|
222
|
-
],
|
223
|
-
"city":"Anchorage",
|
224
|
-
"administrativeArea":"Alaska",
|
225
|
-
"postalCode":"99501",
|
226
|
-
"country":"USA",
|
227
323
|
"electronicMailAddress":[
|
228
|
-
"
|
324
|
+
"permafrost@nrcan.gc.ca"
|
229
325
|
]
|
230
326
|
}
|
327
|
+
},
|
328
|
+
{
|
329
|
+
"contactId":"9",
|
330
|
+
"organizationName":"U.S. National Science Foundation, Division of Polar Programs, Directorate for Geosciences",
|
331
|
+
"onlineResource":[
|
332
|
+
{
|
333
|
+
"uri":"http://www.nsf.gov",
|
334
|
+
"protocol":"http",
|
335
|
+
"name":"U.S. National Science Foundation",
|
336
|
+
"description":"Home page for the agency",
|
337
|
+
"function":"information"
|
338
|
+
}
|
339
|
+
]
|
231
340
|
}
|
232
341
|
],
|
233
342
|
"metadata":{
|
234
|
-
"
|
235
|
-
|
236
|
-
"
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
343
|
+
"metadataInfo":{
|
344
|
+
"metadataIdentifier":"D5D16D06-CEEB-E011-8260-000C2952247E",
|
345
|
+
"parentMetadataIdentifier":"D5D16D06-TFDE-lE01-9427-000C548U45JA",
|
346
|
+
"metadataScope":[
|
347
|
+
"dataset",
|
348
|
+
"project"
|
349
|
+
],
|
350
|
+
"metadataContact":[
|
351
|
+
{
|
352
|
+
"contactId":"7",
|
353
|
+
"role":"custodian"
|
354
|
+
}
|
355
|
+
],
|
356
|
+
"metadataCreationDate":"2014-02-28",
|
357
|
+
"metadataLastUpdate":"2012-12-21",
|
358
|
+
"metadataUri":"http://alaska.usgs.gov/rex/adiwg/public/projects/32.xml",
|
359
|
+
"metadataCharacterSet": "utf8",
|
360
|
+
"metadataStatus":"completed",
|
361
|
+
"metadataMaintenance":{
|
362
|
+
"maintenanceFrequency":"asNeeded",
|
363
|
+
"maintenanceNote":[
|
364
|
+
"Metadata records are generated on request from current database"
|
365
|
+
],
|
366
|
+
"maintenanceContact":[
|
367
|
+
{
|
368
|
+
"contactId":"7",
|
369
|
+
"role":"custodian"
|
370
|
+
}
|
371
|
+
]
|
242
372
|
}
|
243
|
-
|
244
|
-
"metadataCreationDate":"2013-08-07",
|
245
|
-
"dataSetURI":"http://arcticlcc.org/projects/management/project-tracking-system",
|
246
|
-
"spatialReference":[
|
247
|
-
"WGS84",
|
248
|
-
"NAD27",
|
249
|
-
"MHW"
|
250
|
-
],
|
373
|
+
},
|
251
374
|
"resourceInfo":{
|
252
375
|
"citation":{
|
253
|
-
"title":"
|
376
|
+
"title":"Real-Time Permafrost and Climate Monitoring Network - Arctic Alaska",
|
254
377
|
"date":[
|
255
378
|
{
|
256
|
-
"date":"
|
257
|
-
"dateType":"publication"
|
258
|
-
},
|
259
|
-
{
|
260
|
-
"date":"2013-03-13T17:30-08:00",
|
379
|
+
"date":"2012-12-21",
|
261
380
|
"dateType":"revision"
|
262
381
|
}
|
263
382
|
],
|
264
|
-
"edition":"
|
383
|
+
"edition":"First Edition plus edits",
|
265
384
|
"responsibleParty":[
|
266
385
|
{
|
267
386
|
"contactId":"1",
|
268
|
-
"role":"
|
387
|
+
"role":"owner"
|
269
388
|
},
|
270
389
|
{
|
271
390
|
"contactId":"2",
|
391
|
+
"role":"principleInvestigator"
|
392
|
+
},
|
393
|
+
{
|
394
|
+
"contactId":"3",
|
395
|
+
"role":"administrator"
|
396
|
+
},
|
397
|
+
{
|
398
|
+
"contactId":"4",
|
399
|
+
"role":"collaborator"
|
400
|
+
},
|
401
|
+
{
|
402
|
+
"contactId":"7",
|
272
403
|
"role":"publisher"
|
273
404
|
}
|
274
405
|
],
|
275
|
-
"presentationForm":
|
276
|
-
|
277
|
-
|
406
|
+
"presentationForm":[
|
407
|
+
"documentDigital",
|
408
|
+
"tableDigital"
|
409
|
+
],
|
410
|
+
"additionalIdentifier":{
|
411
|
+
"doi":"10/1256.321475266",
|
412
|
+
"isbn":"ISBNYYt470098j",
|
413
|
+
"issn":""
|
414
|
+
},
|
415
|
+
"onlineResource":[
|
416
|
+
{
|
417
|
+
"uri":"http://data.usgs.gov/climateMonitoring/region/show?region=alaska",
|
418
|
+
"protocol":"http",
|
419
|
+
"name":"U.S. Geological Survey: Real-Time Permafrost and Climate Monitoring Network - Arctic Alaska",
|
420
|
+
"description":"project website",
|
421
|
+
"function":"information"
|
422
|
+
}
|
423
|
+
]
|
278
424
|
},
|
425
|
+
"resourceIdentifier":[
|
426
|
+
{
|
427
|
+
"title":"ASC Project ID",
|
428
|
+
"date":[
|
429
|
+
{
|
430
|
+
"date":"2014-05-27",
|
431
|
+
"dateType":"publication"
|
432
|
+
}
|
433
|
+
],
|
434
|
+
"responsibleParty":[
|
435
|
+
{
|
436
|
+
"contactId":"1",
|
437
|
+
"role":"owner"
|
438
|
+
}
|
439
|
+
],
|
440
|
+
"identifier":"32"
|
441
|
+
},
|
442
|
+
{
|
443
|
+
"title":"NSF Grant Award Number",
|
444
|
+
"responsibleParty":[
|
445
|
+
{
|
446
|
+
"contactId":"9",
|
447
|
+
"role":"funder"
|
448
|
+
}
|
449
|
+
],
|
450
|
+
"onlineResource":[
|
451
|
+
{
|
452
|
+
"uri":"http://thisisanexample.com",
|
453
|
+
"protocol":"HTTP",
|
454
|
+
"name":"Example is the name",
|
455
|
+
"description":"It's an example!",
|
456
|
+
"function":"See description"
|
457
|
+
}
|
458
|
+
],
|
459
|
+
"identifier":"A516548V0034"
|
460
|
+
}
|
461
|
+
],
|
279
462
|
"pointOfContact":[
|
280
463
|
{
|
281
|
-
"contactId":"
|
282
|
-
"role":"
|
464
|
+
"contactId":"2",
|
465
|
+
"role":"pointOfContact"
|
466
|
+
},
|
467
|
+
{
|
468
|
+
"contactId":"5",
|
469
|
+
"role":"collaborator"
|
283
470
|
}
|
284
471
|
],
|
285
|
-
"abstract":"
|
472
|
+
"abstract":"DOI is developing a long-term permafrost monitoring network on federal lands in northern Alaska as part of the Global Terrestrial Network for Permafrost (GTN-P) and the Global Climate Observing System (GCOS). DOI/GTN-P consists of two subnetworks: 1) a network of 15 automated surface stations, and 2) a 20-element deep borehole array. The surface stations continuously monitor changes in permafrost active-layer as well as a number of other climate parameters, including: permafrost temperature, soil moisture, snow depth, air temperature, wind speed and direction, up- and downwelling shortwave radiation, albedo, and cloudiness. A portion of the surface network is now available in near real-time through radio telemetry. Vegetation changes are coincidentally monitored at these sites. The borehole array is used to monitor the thermal state of the underlying permafrost. This is the largest array of deep boreholes in the world currently available for monitoring the thermal state of permafrost. Many of the surface stations are co-located with deep boreholes, effectively forming 'permafrost observatories.' In conjunction with DOI/GTN-P, we are developing models for synthesizing climate observations and for investigating how the cryosphere responds to climate change. These models will improve existing predictive capabilities for DOI lands. Climate projections by global coupled Atmosphere-Ocean General Circulation Models (AOGCMs) suggest significant environmental changes will occur in the Arctic during the next 80 years (http://www.acia.uaf.edu). According to these models, climate change will be Arctic-wide with a pronounced enhancement over the Arctic Ocean and adjacent coastal plains. These projections suggest large climate-induced landscape and ecosystem changes are likely to occur in northern Alaska during the next few decades. Important issues for DOI lands in this region include: permafrost degradation; vulnerability of high northern infrastructure to permafrost instability; large potential greenhouse gas (CO2, methane) emissions form warming permafrost; shifting vegetation patterns; impacts of habitat changes of wildlife; changing stream flow and lake levels; impacts of ecosystem changes on Native peoples: and, coastal erosion, inundation of coastal areas by storm surges. Given the large potential impacts, and the significant uncertainty in the model projections, a comprehensive monitoring effort is warranted.",
|
473
|
+
"shortAbstract":"DOI is developing a long-term permafrost monitoring network on federal lands in northern Alaska as part of the Global Terrestrial Network for Permafrost (GTN-P) and the Global Climate Observing System (GCOS).",
|
286
474
|
"status":"onGoing",
|
475
|
+
"resourceUri":"http://alaska.usgs.gov/rex/adiwg/public/projects/32",
|
476
|
+
"hasMapLocation":true,
|
477
|
+
"hasDataAvailable":true,
|
287
478
|
"language":[
|
288
479
|
"eng; USA",
|
289
|
-
"
|
480
|
+
"esp; MEX"
|
290
481
|
],
|
291
|
-
"purpose":"
|
482
|
+
"purpose":"Long-term monitoring of permafrost conditions in the Alaska Arctic",
|
292
483
|
"credit":[
|
293
|
-
"
|
294
|
-
"
|
295
|
-
"Puget Sound LiDAR Consortium (PSLC) - The PSLC is supported by the Puget Sound Regional Council, the National Aeronautical and Space Administration (NASA), the United States Geological Survey (USGS) and numerous partners in local, state, and tribal government."
|
296
|
-
],
|
297
|
-
"spatialRepresentation":[
|
298
|
-
"textTable",
|
299
|
-
"grid",
|
300
|
-
"tin"
|
484
|
+
"Allison Gaylord - Nunatech",
|
485
|
+
"Mike Dover - Critigen"
|
301
486
|
],
|
302
487
|
"topicCategory":[
|
303
|
-
"
|
304
|
-
"
|
305
|
-
"
|
488
|
+
"climatology",
|
489
|
+
"geoscientificInformation",
|
490
|
+
"location"
|
306
491
|
],
|
307
|
-
"
|
308
|
-
"supplementalInfo":"A footprint of this data set may be viewed in Google Earth at: <ftp://ftp.csc.noaa.gov/pub/crs/beachmap/qa_docs/wa/pslc2012/wa2012_pslc_chehalis_footprint.KMZ> A Lidar Report from the vendor for this data set may be viewed here: <ftp://ftp.csc.noaa.gov/pub/crs/beachmap/qa_docs/wa/pslc2012/wa2012_pslc_chehalis_lidarreport.pdf>",
|
492
|
+
"environmentDescription":"On my laptop, not backed up",
|
309
493
|
"resourceNativeFormat":[
|
310
494
|
{
|
311
|
-
"formatName":"
|
312
|
-
"version":"
|
313
|
-
},
|
314
|
-
{
|
315
|
-
"formatName":"PostgreSQL",
|
316
|
-
"version":"9.1"
|
495
|
+
"formatName":"MS SQL Server",
|
496
|
+
"version":"2008 R2"
|
317
497
|
},
|
318
498
|
{
|
319
|
-
"formatName":"",
|
320
|
-
"version":"
|
499
|
+
"formatName":"JSON",
|
500
|
+
"version":""
|
321
501
|
}
|
322
502
|
],
|
323
|
-
"
|
503
|
+
"keyword":[
|
324
504
|
{
|
325
505
|
"keyword":[
|
326
|
-
"
|
327
|
-
"
|
328
|
-
"
|
506
|
+
"Atmosphere > Clouds",
|
507
|
+
"Atmosphere > Atmospheric Temperature > Air Temperature",
|
508
|
+
"Cryosphere > Snow/Ice > Albedo",
|
509
|
+
"Cryosphere > Frozen Ground > Permafrost",
|
510
|
+
"Cryosphere > Snow/Ice > Snow Depth",
|
511
|
+
"Land Surface > Soils > Soil Moisture/Water Content",
|
512
|
+
"Cryosphere > Frozen Ground > Soil Temperature"
|
329
513
|
],
|
330
514
|
"keywordType":"theme",
|
331
515
|
"thesaurus":{
|
332
516
|
"thesaurusLink":"http://gcmdservices.gsfc.nasa.gov/static/kms/sciencekeywords/sciencekeywords.csv",
|
333
517
|
"citation":{
|
334
|
-
"title":"NASA/Global Change Master Directory (GCMD) Earth Science Keywords
|
518
|
+
"title":"NASA/Global Change Master Directory (GCMD) Earth Science Keywords",
|
335
519
|
"date":[
|
336
520
|
{
|
337
521
|
"date":"2013-09-19",
|
@@ -339,87 +523,116 @@
|
|
339
523
|
}
|
340
524
|
],
|
341
525
|
"edition":"Version 8.0.0.0.0",
|
342
|
-
"
|
343
|
-
|
344
|
-
"contactId":"1",
|
345
|
-
"role":"originator"
|
346
|
-
},
|
347
|
-
{
|
348
|
-
"contactId":"2",
|
349
|
-
"role":"owner"
|
350
|
-
}
|
526
|
+
"presentationForm":[
|
527
|
+
"documentDigital"
|
351
528
|
],
|
352
|
-
"
|
353
|
-
|
354
|
-
|
529
|
+
"additionalIdentifier":{
|
530
|
+
"doi":"10.1000/182"
|
531
|
+
}
|
355
532
|
}
|
356
533
|
}
|
357
534
|
},
|
358
535
|
{
|
359
536
|
"keyword":[
|
360
|
-
"
|
537
|
+
"Cryosphere"
|
361
538
|
],
|
362
|
-
"keywordType":"
|
539
|
+
"keywordType":"theme",
|
363
540
|
"thesaurus":{
|
541
|
+
"thesaurusLink":"http://example.com",
|
364
542
|
"citation":{
|
365
|
-
"title":"
|
543
|
+
"title":"NSF IPY Discipline Codes",
|
544
|
+
"responsibleParty":[
|
545
|
+
{
|
546
|
+
"contactId":"9",
|
547
|
+
"role":"author"
|
548
|
+
}
|
549
|
+
],
|
550
|
+
"presentationForm":[
|
551
|
+
"documentDigital"
|
552
|
+
]
|
366
553
|
}
|
367
554
|
}
|
368
555
|
},
|
369
556
|
{
|
370
557
|
"keyword":[
|
371
|
-
"
|
372
|
-
"
|
373
|
-
|
558
|
+
"North Slope Borough",
|
559
|
+
"Barrow",
|
560
|
+
"Point Barrow"
|
561
|
+
],
|
562
|
+
"keywordType":"place",
|
563
|
+
"thesaurus":{
|
564
|
+
"thesaurusLink":"http://geonames.usgs.gov/",
|
565
|
+
"citation":{
|
566
|
+
"title":"United States Board on Geographic Names",
|
567
|
+
"date":[
|
568
|
+
{
|
569
|
+
"date":"1993-02-01",
|
570
|
+
"dateType":"creation"
|
571
|
+
}
|
572
|
+
],
|
573
|
+
"presentationForm":[
|
574
|
+
"documentDigital"
|
575
|
+
]
|
576
|
+
}
|
577
|
+
}
|
374
578
|
}
|
375
579
|
],
|
376
580
|
"resourceMaintenance":[
|
377
581
|
{
|
378
|
-
"maintenanceFrequency":"
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
"
|
383
|
-
|
384
|
-
|
385
|
-
|
582
|
+
"maintenanceFrequency":"irregular",
|
583
|
+
"maintenanceNote":[
|
584
|
+
"The permafrost project data is updated in step with field work awards."
|
585
|
+
],
|
586
|
+
"maintenanceContact":[
|
587
|
+
{
|
588
|
+
"contactId":"2",
|
589
|
+
"role":"pointOfContact"
|
590
|
+
}
|
591
|
+
]
|
386
592
|
}
|
387
593
|
],
|
388
594
|
"resourceSpecificUsage":[
|
389
595
|
{
|
390
|
-
"specificUsage":"
|
391
|
-
"userDeterminedLimitation":"
|
596
|
+
"specificUsage":"GTN-P (Global Terrestrial Network for Permafrost)",
|
597
|
+
"userDeterminedLimitation":"none",
|
392
598
|
"userContactInfo":[
|
393
599
|
{
|
394
|
-
"contactId":"
|
395
|
-
"role":"
|
600
|
+
"contactId":"1",
|
601
|
+
"role":"principalInvestigator"
|
396
602
|
},
|
397
603
|
{
|
398
|
-
"contactId":"
|
399
|
-
"role":"
|
604
|
+
"contactId":"5",
|
605
|
+
"role":"collaborator"
|
400
606
|
}
|
401
607
|
]
|
402
608
|
},
|
403
609
|
{
|
404
|
-
"specificUsage":"
|
610
|
+
"specificUsage":"GCOS (Global Climate Observing System)",
|
611
|
+
"userDeterminedLimitation":"none",
|
405
612
|
"userContactInfo":[
|
406
613
|
{
|
407
614
|
"contactId":"1",
|
408
|
-
"role":"
|
615
|
+
"role":"principalInvestigator"
|
616
|
+
},
|
617
|
+
{
|
618
|
+
"contactId":"5",
|
619
|
+
"role":"collaborator"
|
409
620
|
}
|
410
621
|
]
|
411
622
|
}
|
412
623
|
],
|
413
624
|
"graphicOverview":[
|
625
|
+
{
|
626
|
+
"fileName":"GTNP AK Collection Site Map",
|
627
|
+
"fileDescription":"Map of borehole locations for permafrost data collection in Alaska in association with the Global Terrestrial Network forr Permafrost",
|
628
|
+
"fileType":"Map image in PDF format",
|
629
|
+
"uri":"http://alaska.usgs.gov/free/maps/GTNP North Slope.pdf"
|
630
|
+
},
|
414
631
|
{
|
415
632
|
"fileName":"allRecs_callCounts_bowhead_2010.jpg",
|
416
633
|
"fileDescription":"This image is a spectraplot visualizing the density of Bowhead whale calls in the Northeast Chukchi Sea, AMAR recorder locations, and industry lease areas.",
|
417
634
|
"fileType":"JPEG",
|
418
|
-
"
|
419
|
-
},
|
420
|
-
{
|
421
|
-
"fileName":"cross_section_perc_sommer_2010.png",
|
422
|
-
"fileDescription":"."
|
635
|
+
"uri":"http://aoos.org/aoos-data-resources/bowhead_images2010_0114.jpg"
|
423
636
|
},
|
424
637
|
{
|
425
638
|
"fileName":"pln40_perc_2010_01.png",
|
@@ -429,66 +642,68 @@
|
|
429
642
|
"fileName":"pln40_spec_summer_2010.png"
|
430
643
|
}
|
431
644
|
],
|
432
|
-
"
|
433
|
-
"
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
"
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
"
|
446
|
-
|
447
|
-
|
448
|
-
"
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
"
|
454
|
-
|
455
|
-
|
456
|
-
"
|
457
|
-
|
458
|
-
|
459
|
-
"
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
"
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
645
|
+
"constraint":{
|
646
|
+
"useLimitation":[
|
647
|
+
"not for suitable for navigation",
|
648
|
+
"draft version",
|
649
|
+
"not intended for general use",
|
650
|
+
"don't be a jerk"
|
651
|
+
],
|
652
|
+
"legalConstraint":[
|
653
|
+
{
|
654
|
+
"accessConstraint":[
|
655
|
+
"patentPending",
|
656
|
+
"restricted"
|
657
|
+
],
|
658
|
+
"useConstraint":[
|
659
|
+
"restricted"
|
660
|
+
],
|
661
|
+
"otherConstraint":[
|
662
|
+
"Legally barred from use for navigation."
|
663
|
+
]
|
664
|
+
},
|
665
|
+
{
|
666
|
+
"accessConstraint":[
|
667
|
+
"otherRestrictions"
|
668
|
+
],
|
669
|
+
"useConstraint":[
|
670
|
+
"otherRestrictions"
|
671
|
+
],
|
672
|
+
"otherConstraint":[
|
673
|
+
"Access Constraints: No one else. Use Constraints: None"
|
674
|
+
]
|
675
|
+
},
|
676
|
+
{
|
677
|
+
"accessConstraint":[
|
678
|
+
"copyright",
|
679
|
+
"patent",
|
680
|
+
"patentPending",
|
681
|
+
"trademark",
|
682
|
+
"license",
|
683
|
+
"intellectualPropertyRights",
|
684
|
+
"restricted",
|
685
|
+
"otherRestrictions"
|
686
|
+
]
|
687
|
+
}
|
688
|
+
],
|
689
|
+
"securityConstraint":[
|
690
|
+
{
|
691
|
+
"classification":"unclassified",
|
692
|
+
"userNote":"security clearance not required",
|
693
|
+
"classificationSystem":"none",
|
694
|
+
"handlingDescription":"this is how to handle things..."
|
695
|
+
},
|
696
|
+
{
|
697
|
+
"classification":"intellectualPropertyRights"
|
698
|
+
},
|
699
|
+
{
|
700
|
+
"classification":"secret",
|
701
|
+
"userNote":"Shhhhh!!!"
|
702
|
+
}
|
703
|
+
]
|
704
|
+
},
|
490
705
|
"taxonomy":{
|
491
|
-
"
|
706
|
+
"classificationSystem":[
|
492
707
|
{
|
493
708
|
"title":"Otter Record Survey",
|
494
709
|
"date":[
|
@@ -581,7 +796,14 @@
|
|
581
796
|
}
|
582
797
|
]
|
583
798
|
},
|
584
|
-
"
|
799
|
+
"spatialDatum":[
|
800
|
+
"NAD27",
|
801
|
+
"MLW"
|
802
|
+
],
|
803
|
+
"spatialRepresentation":[
|
804
|
+
"textTable"
|
805
|
+
],
|
806
|
+
"spatialResolution":[
|
585
807
|
{
|
586
808
|
"equivalentScale":45000
|
587
809
|
},
|
@@ -592,322 +814,667 @@
|
|
592
814
|
],
|
593
815
|
"extent":[
|
594
816
|
{
|
595
|
-
"description":"
|
817
|
+
"description":"Spatial extent for GeoJSON Geometry and GeometryCollection",
|
596
818
|
"geographicElement":[
|
597
819
|
{
|
598
|
-
"type":"
|
599
|
-
"
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
59.165040850639
|
611
|
-
]
|
612
|
-
},
|
820
|
+
"type":"Point",
|
821
|
+
"bbox":[
|
822
|
+
-161.45,
|
823
|
+
68.25,
|
824
|
+
-148.272,
|
825
|
+
71.22
|
826
|
+
],
|
827
|
+
"coordinates":[
|
828
|
+
-160.123,
|
829
|
+
45.678,
|
830
|
+
500
|
831
|
+
],
|
613
832
|
"crs":{
|
614
|
-
"type":"
|
833
|
+
"type":"link",
|
615
834
|
"properties":{
|
616
|
-
"
|
835
|
+
"href":"http://spatialreference.org/ref/epsg/wgs-84/proj4/",
|
836
|
+
"type":"proj4"
|
617
837
|
}
|
618
838
|
}
|
619
839
|
},
|
620
840
|
{
|
621
|
-
"type":"
|
622
|
-
"
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
841
|
+
"type":"LineString",
|
842
|
+
"coordinates":[
|
843
|
+
[
|
844
|
+
-120.717181,
|
845
|
+
70.879761,
|
846
|
+
5
|
847
|
+
],
|
848
|
+
[
|
849
|
+
-130.964531,
|
850
|
+
41.946544,
|
851
|
+
6
|
852
|
+
],
|
853
|
+
[
|
854
|
+
-140.3232,
|
855
|
+
87.12121,
|
856
|
+
7
|
634
857
|
]
|
635
|
-
|
858
|
+
],
|
636
859
|
"crs":{
|
637
860
|
"type":"name",
|
638
861
|
"properties":{
|
639
|
-
"name":"
|
862
|
+
"name":"EPSG:4326"
|
640
863
|
}
|
641
864
|
}
|
642
|
-
}
|
643
|
-
]
|
644
|
-
},
|
645
|
-
{
|
646
|
-
"description":"List of Points",
|
647
|
-
"geographicElement":[
|
865
|
+
},
|
648
866
|
{
|
649
|
-
"type":"
|
650
|
-
"
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
867
|
+
"type":"Polygon",
|
868
|
+
"coordinates":[
|
869
|
+
[
|
870
|
+
[
|
871
|
+
-139.000,
|
872
|
+
59.000
|
873
|
+
],
|
874
|
+
[
|
875
|
+
-140.882186,
|
876
|
+
59.839602
|
877
|
+
],
|
878
|
+
[
|
879
|
+
-143.101425,
|
880
|
+
60.22375
|
881
|
+
],
|
882
|
+
[
|
883
|
+
-147.056503,
|
884
|
+
60.829147
|
885
|
+
],
|
886
|
+
[
|
887
|
+
-148.902206,
|
888
|
+
59.982807
|
889
|
+
],
|
890
|
+
[
|
891
|
+
-148.792343,
|
892
|
+
57.944338
|
893
|
+
],
|
894
|
+
[
|
895
|
+
-134.576034,
|
896
|
+
57.663361
|
897
|
+
]
|
898
|
+
],
|
899
|
+
[
|
900
|
+
[
|
901
|
+
-139.111,
|
902
|
+
59.111
|
903
|
+
],
|
904
|
+
[
|
905
|
+
-140.882186,
|
906
|
+
59.839602
|
907
|
+
],
|
908
|
+
[
|
909
|
+
-148.792343,
|
910
|
+
57.944338
|
911
|
+
],
|
912
|
+
[
|
913
|
+
-134.576034,
|
914
|
+
57.663361
|
915
|
+
]
|
916
|
+
],
|
917
|
+
[
|
918
|
+
[
|
919
|
+
-139.222,
|
920
|
+
59.222
|
921
|
+
],
|
922
|
+
[
|
923
|
+
-147.056503,
|
924
|
+
60.829147
|
925
|
+
],
|
665
926
|
[
|
666
|
-
-
|
667
|
-
59.
|
927
|
+
-148.902206,
|
928
|
+
59.982807
|
668
929
|
],
|
669
930
|
[
|
670
|
-
-
|
671
|
-
|
931
|
+
-148.792343,
|
932
|
+
57.944338
|
672
933
|
],
|
673
934
|
[
|
674
|
-
-
|
675
|
-
|
935
|
+
-134.576034,
|
936
|
+
57.663361
|
676
937
|
]
|
677
938
|
]
|
678
|
-
|
939
|
+
],
|
940
|
+
"crs":{
|
941
|
+
"type":"link",
|
942
|
+
"properties":{
|
943
|
+
"href":"http://spatialreference.org/ref/epsg/wgs-84/proj4/"
|
944
|
+
}
|
945
|
+
}
|
946
|
+
},
|
947
|
+
{
|
948
|
+
"type":"MultiPoint",
|
949
|
+
"coordinates":[
|
950
|
+
[
|
951
|
+
-160.111,
|
952
|
+
45.678
|
953
|
+
],
|
954
|
+
[
|
955
|
+
-160.222,
|
956
|
+
45.678,
|
957
|
+
50
|
958
|
+
],
|
959
|
+
[
|
960
|
+
-160.333,
|
961
|
+
45.678,
|
962
|
+
500
|
963
|
+
]
|
964
|
+
],
|
679
965
|
"crs":{
|
680
966
|
"type":"name",
|
681
967
|
"properties":{
|
682
|
-
"name":"
|
968
|
+
"name":"EPSG:4326"
|
683
969
|
}
|
684
970
|
}
|
685
|
-
}
|
686
|
-
]
|
687
|
-
},
|
688
|
-
{
|
689
|
-
"description":"List of Points with attributes",
|
690
|
-
"geographicElement":[
|
971
|
+
},
|
691
972
|
{
|
692
|
-
"type":"
|
693
|
-
"
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
973
|
+
"type":"MultiLineString",
|
974
|
+
"coordinates":[
|
975
|
+
[
|
976
|
+
[
|
977
|
+
-120.111,
|
978
|
+
70.879761,
|
979
|
+
5
|
980
|
+
],
|
981
|
+
[
|
982
|
+
-130.222,
|
983
|
+
41.946544,
|
984
|
+
6
|
985
|
+
],
|
986
|
+
[
|
987
|
+
-140.333,
|
988
|
+
87.12121,
|
989
|
+
7
|
990
|
+
],
|
991
|
+
[
|
992
|
+
-140.444,
|
993
|
+
87.12121,
|
994
|
+
7
|
995
|
+
]
|
996
|
+
],
|
997
|
+
[
|
998
|
+
[
|
999
|
+
-120.555,
|
1000
|
+
70.879761,
|
1001
|
+
5
|
1002
|
+
],
|
1003
|
+
[
|
1004
|
+
-130.666,
|
1005
|
+
41.946544,
|
1006
|
+
6
|
1007
|
+
],
|
1008
|
+
[
|
1009
|
+
-140.777,
|
1010
|
+
87.12121,
|
1011
|
+
7
|
1012
|
+
],
|
1013
|
+
[
|
1014
|
+
-140.888,
|
1015
|
+
87.12121,
|
1016
|
+
7
|
1017
|
+
]
|
1018
|
+
],
|
1019
|
+
[
|
1020
|
+
[
|
1021
|
+
-120.999,
|
1022
|
+
70.879761,
|
1023
|
+
5
|
1024
|
+
],
|
1025
|
+
[
|
1026
|
+
-130.000,
|
1027
|
+
41.946544,
|
1028
|
+
6
|
1029
|
+
],
|
1030
|
+
[
|
1031
|
+
-140.111,
|
1032
|
+
87.12121,
|
1033
|
+
7
|
1034
|
+
],
|
1035
|
+
[
|
1036
|
+
-140.222,
|
1037
|
+
87.12121,
|
1038
|
+
7
|
1039
|
+
]
|
1040
|
+
]
|
699
1041
|
],
|
700
|
-
"properties":{
|
701
|
-
"name":"A FeatureCollection(points)",
|
702
|
-
"description":"represents GML MultiGeometry"
|
703
|
-
},
|
704
1042
|
"crs":{
|
705
1043
|
"type":"name",
|
706
1044
|
"properties":{
|
707
|
-
"name":"
|
1045
|
+
"name":"EPSG:4326"
|
708
1046
|
}
|
709
|
-
}
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
-
|
730
|
-
|
1047
|
+
}
|
1048
|
+
},
|
1049
|
+
{
|
1050
|
+
"type":"MultiPolygon",
|
1051
|
+
"coordinates":[
|
1052
|
+
[
|
1053
|
+
[
|
1054
|
+
[
|
1055
|
+
-139.000,
|
1056
|
+
59.000
|
1057
|
+
],
|
1058
|
+
[
|
1059
|
+
-140.882186,
|
1060
|
+
59.839602
|
1061
|
+
],
|
1062
|
+
[
|
1063
|
+
-143.101425,
|
1064
|
+
60.22375
|
1065
|
+
],
|
1066
|
+
[
|
1067
|
+
-147.056503,
|
1068
|
+
60.829147
|
1069
|
+
],
|
1070
|
+
[
|
1071
|
+
-148.902206,
|
1072
|
+
59.982807
|
1073
|
+
],
|
1074
|
+
[
|
1075
|
+
-148.792343,
|
1076
|
+
57.944338
|
1077
|
+
],
|
1078
|
+
[
|
1079
|
+
-134.576034,
|
1080
|
+
57.663361
|
731
1081
|
]
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
"type":"Point",
|
750
|
-
"coordinates":[
|
751
|
-
-164.87550989974,
|
752
|
-
59.209712874412
|
1082
|
+
],
|
1083
|
+
[
|
1084
|
+
[
|
1085
|
+
-139.111,
|
1086
|
+
59.111
|
1087
|
+
],
|
1088
|
+
[
|
1089
|
+
-140.882186,
|
1090
|
+
59.839602
|
1091
|
+
],
|
1092
|
+
[
|
1093
|
+
-148.792343,
|
1094
|
+
57.944338
|
1095
|
+
],
|
1096
|
+
[
|
1097
|
+
-134.576034,
|
1098
|
+
57.663361
|
753
1099
|
]
|
754
|
-
|
1100
|
+
],
|
1101
|
+
[
|
1102
|
+
[
|
1103
|
+
-139.222,
|
1104
|
+
59.222
|
1105
|
+
],
|
1106
|
+
[
|
1107
|
+
-147.056503,
|
1108
|
+
60.829147
|
1109
|
+
],
|
1110
|
+
[
|
1111
|
+
-148.902206,
|
1112
|
+
59.982807
|
1113
|
+
],
|
1114
|
+
[
|
1115
|
+
-148.792343,
|
1116
|
+
57.944338
|
1117
|
+
],
|
1118
|
+
[
|
1119
|
+
-134.576034,
|
1120
|
+
57.663361
|
1121
|
+
]
|
1122
|
+
]
|
1123
|
+
],
|
1124
|
+
[
|
1125
|
+
[
|
1126
|
+
[
|
1127
|
+
-39.000,
|
1128
|
+
59.000
|
1129
|
+
],
|
1130
|
+
[
|
1131
|
+
-40.882186,
|
1132
|
+
59.0
|
1133
|
+
],
|
1134
|
+
[
|
1135
|
+
-43.101425,
|
1136
|
+
60.0
|
1137
|
+
],
|
1138
|
+
[
|
1139
|
+
-47.056503,
|
1140
|
+
60.0
|
1141
|
+
],
|
1142
|
+
[
|
1143
|
+
-48.902206,
|
1144
|
+
59.0
|
1145
|
+
],
|
1146
|
+
[
|
1147
|
+
-48.792343,
|
1148
|
+
57.0
|
1149
|
+
],
|
1150
|
+
[
|
1151
|
+
-34.576034,
|
1152
|
+
57.0
|
1153
|
+
]
|
1154
|
+
],
|
1155
|
+
[
|
1156
|
+
[
|
1157
|
+
-39.111,
|
1158
|
+
59.111
|
1159
|
+
],
|
1160
|
+
[
|
1161
|
+
-40.882186,
|
1162
|
+
59.0
|
1163
|
+
],
|
1164
|
+
[
|
1165
|
+
-48.792343,
|
1166
|
+
57.0
|
1167
|
+
],
|
1168
|
+
[
|
1169
|
+
-34.576034,
|
1170
|
+
57.0
|
1171
|
+
]
|
1172
|
+
],
|
1173
|
+
[
|
1174
|
+
[
|
1175
|
+
-39.222,
|
1176
|
+
59.222
|
1177
|
+
],
|
1178
|
+
[
|
1179
|
+
-47.056503,
|
1180
|
+
60.0
|
1181
|
+
],
|
1182
|
+
[
|
1183
|
+
-48.902206,
|
1184
|
+
59.0
|
1185
|
+
],
|
1186
|
+
[
|
1187
|
+
-48.792343,
|
1188
|
+
57.0
|
1189
|
+
],
|
1190
|
+
[
|
1191
|
+
-34.576034,
|
1192
|
+
57.0
|
1193
|
+
]
|
1194
|
+
]
|
1195
|
+
]
|
1196
|
+
]
|
1197
|
+
},
|
1198
|
+
{
|
1199
|
+
"type":"GeometryCollection",
|
1200
|
+
"geometries":[
|
1201
|
+
{
|
1202
|
+
"type":"Point",
|
1203
|
+
"coordinates":[
|
1204
|
+
100.0,
|
1205
|
+
200.0,
|
1206
|
+
0.0
|
1207
|
+
]
|
755
1208
|
},
|
756
1209
|
{
|
757
|
-
"type":"
|
758
|
-
"
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
"geometry":{
|
771
|
-
"type":"Point",
|
772
|
-
"coordinates":[
|
773
|
-
-164.89650989974,
|
774
|
-
59.249712874412
|
1210
|
+
"type":"LineString",
|
1211
|
+
"coordinates":[
|
1212
|
+
[
|
1213
|
+
101.0,
|
1214
|
+
7.0
|
1215
|
+
],
|
1216
|
+
[
|
1217
|
+
105.5,
|
1218
|
+
8.0
|
1219
|
+
],
|
1220
|
+
[
|
1221
|
+
109.8,
|
1222
|
+
9.0
|
775
1223
|
]
|
776
|
-
|
1224
|
+
]
|
777
1225
|
}
|
778
1226
|
]
|
779
1227
|
}
|
1228
|
+
],
|
1229
|
+
"temporalElement":{
|
1230
|
+
"date":[
|
1231
|
+
"2002-04-26",
|
1232
|
+
"2013-03-21"
|
1233
|
+
],
|
1234
|
+
"timeInstant":[
|
1235
|
+
{
|
1236
|
+
"id":"time012",
|
1237
|
+
"description":"Right now.",
|
1238
|
+
"timePosition":"2014-05-01T15:58:25-09:00"
|
1239
|
+
}
|
1240
|
+
],
|
1241
|
+
"timePeriod":[
|
1242
|
+
{
|
1243
|
+
"id":"timePeriod032",
|
1244
|
+
"description":"Writing version 0.3.0 of JSON schema reader",
|
1245
|
+
"beginPosition":"2014-04-25",
|
1246
|
+
"endPosition":"2014-05-02"
|
1247
|
+
},
|
1248
|
+
{
|
1249
|
+
"id":"tp-001",
|
1250
|
+
"description":"Ground Condition",
|
1251
|
+
"beginPosition":"1987-05-16T16:05:00",
|
1252
|
+
"endPosition":"2011-12"
|
1253
|
+
},
|
1254
|
+
{
|
1255
|
+
"id":"tp-101",
|
1256
|
+
"description":"Below Ground Condition",
|
1257
|
+
"beginPosition":"1987-08-13T16:05:00",
|
1258
|
+
"endPosition":"2012-12-12"
|
1259
|
+
}
|
1260
|
+
]
|
1261
|
+
},
|
1262
|
+
"verticalElement":[
|
1263
|
+
{
|
1264
|
+
"minimumValue":125,
|
1265
|
+
"maximumValue":222,
|
1266
|
+
"verticalCRSTitle":"NAVD88 height (ftUS)",
|
1267
|
+
"verticalCRSLink":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:axis-name:EPSG::9904"
|
1268
|
+
},
|
1269
|
+
{
|
1270
|
+
"minimumValue":1500,
|
1271
|
+
"maximumValue":0,
|
1272
|
+
"verticalCRSTitle":"NAVD88 depth",
|
1273
|
+
"verticalCRSLink":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::6357"
|
1274
|
+
}
|
780
1275
|
]
|
781
1276
|
},
|
782
1277
|
{
|
783
|
-
"description":"
|
1278
|
+
"description":"Spatial extent for GeoJSON Feature and FeatureCollection",
|
784
1279
|
"geographicElement":[
|
785
1280
|
{
|
786
1281
|
"type":"Feature",
|
787
|
-
"id":"
|
1282
|
+
"id":"boundingBoxFeature",
|
1283
|
+
"bbox":[
|
1284
|
+
-161.00,
|
1285
|
+
68.00,
|
1286
|
+
-148.00,
|
1287
|
+
71.00
|
1288
|
+
],
|
1289
|
+
"crs":{
|
1290
|
+
"type":"name",
|
1291
|
+
"properties":{
|
1292
|
+
"name":"EPSG:4326"
|
1293
|
+
}
|
1294
|
+
},
|
1295
|
+
"geometry": null,
|
788
1296
|
"properties":{
|
789
|
-
"
|
790
|
-
"description":"
|
1297
|
+
"featureName":"Project bounding box",
|
1298
|
+
"description":"bounding box for DOI/GTN-P Deep Borehole Array",
|
1299
|
+
"includesData":true
|
1300
|
+
}
|
1301
|
+
},
|
1302
|
+
{
|
1303
|
+
"type":"Feature",
|
1304
|
+
"id":"point001",
|
1305
|
+
"crs":{
|
1306
|
+
"type":"name",
|
1307
|
+
"properties":{
|
1308
|
+
"name":"EPSG:4326"
|
1309
|
+
}
|
791
1310
|
},
|
792
1311
|
"geometry":{
|
793
|
-
"type":"
|
1312
|
+
"type":"Point",
|
1313
|
+
"coordinates":[
|
1314
|
+
-160.77777,
|
1315
|
+
45.88888,
|
1316
|
+
500
|
1317
|
+
]
|
1318
|
+
},
|
1319
|
+
"properties":{
|
1320
|
+
"featureName":"test point",
|
1321
|
+
"description":"testing point in feature element",
|
1322
|
+
"includesData":false
|
1323
|
+
}
|
1324
|
+
},
|
1325
|
+
{
|
1326
|
+
"type":"Feature",
|
1327
|
+
"id":"multiPoint011",
|
1328
|
+
"crs":{
|
1329
|
+
"type":"name",
|
1330
|
+
"properties":{
|
1331
|
+
"name":"EPSG:4326"
|
1332
|
+
}
|
1333
|
+
},
|
1334
|
+
"geometry":{
|
1335
|
+
"type":"MultiPoint",
|
794
1336
|
"coordinates":[
|
795
1337
|
[
|
796
|
-
-
|
797
|
-
|
798
|
-
|
799
|
-
[
|
800
|
-
-154.6526281903968,
|
801
|
-
70.40820968995817
|
802
|
-
],
|
803
|
-
[
|
804
|
-
-150.7617407589279,
|
805
|
-
70.02201223417278
|
806
|
-
],
|
807
|
-
[
|
808
|
-
-150.8371960238169,
|
809
|
-
70.43210058905156
|
810
|
-
],
|
811
|
-
[
|
812
|
-
-152.2049884417053,
|
813
|
-
70.87235618158296
|
1338
|
+
-151.717181,
|
1339
|
+
70.879761,
|
1340
|
+
5
|
814
1341
|
],
|
815
1342
|
[
|
816
|
-
-
|
817
|
-
|
1343
|
+
-134.964531,
|
1344
|
+
41.946544,
|
1345
|
+
236
|
818
1346
|
]
|
819
1347
|
]
|
820
1348
|
},
|
1349
|
+
"properties":{
|
1350
|
+
"featureName":"test multi-point",
|
1351
|
+
"description":"testing multi-point in feature element",
|
1352
|
+
"includesData":false
|
1353
|
+
}
|
1354
|
+
},
|
1355
|
+
{
|
1356
|
+
"type":"Feature",
|
1357
|
+
"id":"line001",
|
821
1358
|
"crs":{
|
822
1359
|
"type":"name",
|
823
1360
|
"properties":{
|
824
|
-
"name":"
|
1361
|
+
"name":"EPSG:4326"
|
825
1362
|
}
|
826
|
-
}
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
1363
|
+
},
|
1364
|
+
"geometry":{
|
1365
|
+
"type":"LineString",
|
1366
|
+
"coordinates":[
|
1367
|
+
[
|
1368
|
+
-120.717181,
|
1369
|
+
70.879761,
|
1370
|
+
5
|
1371
|
+
],
|
1372
|
+
[
|
1373
|
+
-130.964531,
|
1374
|
+
41.946544,
|
1375
|
+
6
|
1376
|
+
],
|
1377
|
+
[
|
1378
|
+
-140.3232,
|
1379
|
+
87.12121,
|
1380
|
+
7
|
1381
|
+
]
|
1382
|
+
]
|
1383
|
+
},
|
1384
|
+
"properties":{
|
1385
|
+
"featureName":"test single linestring",
|
1386
|
+
"description":"testing lineString in feature element",
|
1387
|
+
"includesData":false
|
1388
|
+
}
|
1389
|
+
},
|
833
1390
|
{
|
834
1391
|
"type":"Feature",
|
835
|
-
"
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
125.8
|
842
|
-
],
|
843
|
-
"id":"linelist1",
|
844
|
-
"properties":{
|
845
|
-
"name":"Lines",
|
846
|
-
"description":"These lines have shared attributes",
|
847
|
-
"includesData":true
|
1392
|
+
"id":"multiLine011",
|
1393
|
+
"crs":{
|
1394
|
+
"type":"name",
|
1395
|
+
"properties":{
|
1396
|
+
"name":"EPSG:4326"
|
1397
|
+
}
|
848
1398
|
},
|
849
1399
|
"geometry":{
|
850
1400
|
"type":"MultiLineString",
|
851
1401
|
"coordinates":[
|
852
1402
|
[
|
853
1403
|
[
|
854
|
-
-
|
855
|
-
|
856
|
-
|
1404
|
+
-120.717181,
|
1405
|
+
70.879761,
|
1406
|
+
5
|
857
1407
|
],
|
858
1408
|
[
|
859
|
-
-
|
860
|
-
|
861
|
-
|
1409
|
+
-130.964531,
|
1410
|
+
41.946544,
|
1411
|
+
6
|
862
1412
|
],
|
863
1413
|
[
|
864
|
-
-
|
865
|
-
|
866
|
-
|
1414
|
+
-140.3232,
|
1415
|
+
87.12121,
|
1416
|
+
7
|
1417
|
+
]
|
1418
|
+
],
|
1419
|
+
[
|
1420
|
+
[
|
1421
|
+
-125.717181,
|
1422
|
+
70.879761,
|
1423
|
+
5
|
867
1424
|
],
|
868
1425
|
[
|
869
|
-
-
|
870
|
-
|
871
|
-
|
1426
|
+
-135.964531,
|
1427
|
+
60.946544,
|
1428
|
+
6
|
872
1429
|
],
|
873
1430
|
[
|
874
|
-
-
|
875
|
-
|
876
|
-
|
1431
|
+
-145.3232,
|
1432
|
+
50.12121,
|
1433
|
+
7
|
877
1434
|
]
|
878
|
-
]
|
1435
|
+
]
|
1436
|
+
]
|
1437
|
+
},
|
1438
|
+
"properties":{
|
1439
|
+
"featureName":"test multi linestring",
|
1440
|
+
"description":"testing multi lineString in feature element",
|
1441
|
+
"includesData":false
|
1442
|
+
}
|
1443
|
+
},
|
1444
|
+
{
|
1445
|
+
"type":"Feature",
|
1446
|
+
"id":"boundingPolygon",
|
1447
|
+
"geometry":{
|
1448
|
+
"type":"Polygon",
|
1449
|
+
"coordinates":[
|
879
1450
|
[
|
880
1451
|
[
|
881
|
-
-
|
882
|
-
|
883
|
-
|
1452
|
+
-139.388046,
|
1453
|
+
59.828561
|
1454
|
+
],
|
1455
|
+
[
|
1456
|
+
-140.882186,
|
1457
|
+
59.839602
|
884
1458
|
],
|
885
1459
|
[
|
886
|
-
-
|
887
|
-
|
888
|
-
84.7
|
1460
|
+
-143.101425,
|
1461
|
+
60.22375
|
889
1462
|
],
|
890
1463
|
[
|
891
|
-
-
|
892
|
-
|
893
|
-
68.1
|
1464
|
+
-147.056503,
|
1465
|
+
60.829147
|
894
1466
|
],
|
895
1467
|
[
|
896
|
-
-
|
897
|
-
|
898
|
-
|
899
|
-
]
|
900
|
-
],
|
901
|
-
[
|
1468
|
+
-148.902206,
|
1469
|
+
59.982807
|
1470
|
+
],
|
902
1471
|
[
|
903
|
-
-
|
904
|
-
|
905
|
-
84.7
|
1472
|
+
-148.792343,
|
1473
|
+
57.944338
|
906
1474
|
],
|
907
1475
|
[
|
908
|
-
-
|
909
|
-
|
910
|
-
68.1
|
1476
|
+
-134.576034,
|
1477
|
+
57.663361
|
911
1478
|
]
|
912
1479
|
]
|
913
1480
|
]
|
@@ -915,217 +1482,24 @@
|
|
915
1482
|
"crs":{
|
916
1483
|
"type":"name",
|
917
1484
|
"properties":{
|
918
|
-
"name":"
|
919
|
-
}
|
920
|
-
}
|
921
|
-
}
|
922
|
-
]
|
923
|
-
},
|
924
|
-
{
|
925
|
-
"description":"List of Lines with attributes",
|
926
|
-
"geographicElement":[
|
927
|
-
{
|
928
|
-
"type":"FeatureCollection",
|
929
|
-
"id":"multiline1",
|
930
|
-
"bbox":[
|
931
|
-
-157.07025098484,
|
932
|
-
70.022012234173,
|
933
|
-
35.2,
|
934
|
-
-150.76174075893,
|
935
|
-
71.109331363597,
|
936
|
-
125.8
|
937
|
-
],
|
938
|
-
"properties":{
|
939
|
-
"name":"A FeatureCollection(lines)",
|
940
|
-
"description":"represents GML MultiGeometry"
|
941
|
-
},
|
942
|
-
"crs":{
|
943
|
-
"type":"name",
|
944
|
-
"properties":{
|
945
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
1485
|
+
"name":"EPSG:4326"
|
946
1486
|
}
|
947
1487
|
},
|
948
|
-
"features":[
|
949
|
-
{
|
950
|
-
"type":"Feature",
|
951
|
-
"id":"multiLine001",
|
952
|
-
"properties":{
|
953
|
-
"name":"Josh",
|
954
|
-
"description":"First line in multiline object",
|
955
|
-
"temporalElement":{
|
956
|
-
"date":[
|
957
|
-
"2011-09-15",
|
958
|
-
"2012-08-13",
|
959
|
-
"2013-08-05"
|
960
|
-
]
|
961
|
-
}
|
962
|
-
},
|
963
|
-
"geometry":{
|
964
|
-
"type":"LineString",
|
965
|
-
"coordinates":[
|
966
|
-
[
|
967
|
-
-157.0702509848438,
|
968
|
-
71.10933136359692,
|
969
|
-
35.2
|
970
|
-
],
|
971
|
-
[
|
972
|
-
-154.6526281903968,
|
973
|
-
70.40820968995817,
|
974
|
-
68.1
|
975
|
-
],
|
976
|
-
[
|
977
|
-
-150.7617407589279,
|
978
|
-
70.02201223417278,
|
979
|
-
84.7
|
980
|
-
],
|
981
|
-
[
|
982
|
-
-150.8371960238169,
|
983
|
-
70.43210058905156,
|
984
|
-
125.8
|
985
|
-
],
|
986
|
-
[
|
987
|
-
-152.2049884417053,
|
988
|
-
70.87235618158296,
|
989
|
-
116.0
|
990
|
-
]
|
991
|
-
]
|
992
|
-
}
|
993
|
-
},
|
994
|
-
{
|
995
|
-
"type":"Feature",
|
996
|
-
"id":"multiLine002",
|
997
|
-
"properties":{
|
998
|
-
"name":"Chris",
|
999
|
-
"description":"Second line in multiline object",
|
1000
|
-
"temporalElement":{
|
1001
|
-
"date":[
|
1002
|
-
"2011-09-15",
|
1003
|
-
"2012-08-13",
|
1004
|
-
"2013-08-05"
|
1005
|
-
],
|
1006
|
-
"timeInstant":[
|
1007
|
-
{
|
1008
|
-
"id":"ti-035",
|
1009
|
-
"description":"the moment I realized I was lost",
|
1010
|
-
"timePosition":"1968-12-15T08:05:00.0+09:00"
|
1011
|
-
}
|
1012
|
-
]
|
1013
|
-
}
|
1014
|
-
},
|
1015
|
-
"geometry":{
|
1016
|
-
"type":"LineString",
|
1017
|
-
"coordinates":[
|
1018
|
-
[
|
1019
|
-
-154.5708878990441,
|
1020
|
-
71.04082324476376,
|
1021
|
-
36.9
|
1022
|
-
],
|
1023
|
-
[
|
1024
|
-
-150.7617407589279,
|
1025
|
-
70.02201223417278,
|
1026
|
-
84.7
|
1027
|
-
],
|
1028
|
-
[
|
1029
|
-
-154.6526281903968,
|
1030
|
-
70.40820968995817,
|
1031
|
-
68.1
|
1032
|
-
],
|
1033
|
-
[
|
1034
|
-
-157.0702509848438,
|
1035
|
-
71.10933136359692,
|
1036
|
-
35.2
|
1037
|
-
]
|
1038
|
-
]
|
1039
|
-
}
|
1040
|
-
},
|
1041
|
-
{
|
1042
|
-
"type":"Feature",
|
1043
|
-
"id":"multiLine003",
|
1044
|
-
"properties":{
|
1045
|
-
"name":"Allison",
|
1046
|
-
"description":"Third line in multiline object"
|
1047
|
-
},
|
1048
|
-
"geometry":{
|
1049
|
-
"type":"LineString",
|
1050
|
-
"coordinates":[
|
1051
|
-
[
|
1052
|
-
-150.7617407589279,
|
1053
|
-
70.02201223417278,
|
1054
|
-
84.7
|
1055
|
-
],
|
1056
|
-
[
|
1057
|
-
-154.6526281903968,
|
1058
|
-
70.40820968995817,
|
1059
|
-
68.1
|
1060
|
-
]
|
1061
|
-
]
|
1062
|
-
}
|
1063
|
-
}
|
1064
|
-
]
|
1065
|
-
}
|
1066
|
-
]
|
1067
|
-
},
|
1068
|
-
{
|
1069
|
-
"description":"BBOX only",
|
1070
|
-
"geographicElement":[
|
1071
|
-
{
|
1072
|
-
"type":"Feature",
|
1073
|
-
"bbox":[
|
1074
|
-
-148.1764,
|
1075
|
-
57.01428,
|
1076
|
-
-132.821,
|
1077
|
-
60.917
|
1078
|
-
],
|
1079
|
-
"geometry":null,
|
1080
1488
|
"properties":{
|
1081
|
-
"
|
1082
|
-
"description":"
|
1083
|
-
|
1084
|
-
"crs":{
|
1085
|
-
"type":"link",
|
1086
|
-
"properties":{
|
1087
|
-
"href":"http://spatialreference.org/ref/epsg/4326/proj4/",
|
1088
|
-
"type":"proj4"
|
1089
|
-
}
|
1090
|
-
}
|
1091
|
-
}
|
1092
|
-
],
|
1093
|
-
"temporalElement":{
|
1094
|
-
"timeInstant":[
|
1095
|
-
{
|
1096
|
-
"id":"ti-001",
|
1097
|
-
"description":"ground condition",
|
1098
|
-
"timePosition":"2012-07-15T08:05:00.0+09:00"
|
1489
|
+
"featureName":"Project boundary polygon",
|
1490
|
+
"description":"bounding polygon for DOI/GTN-P Deep Borehole Array",
|
1491
|
+
"includesData":true
|
1099
1492
|
}
|
1100
|
-
|
1101
|
-
},
|
1102
|
-
"verticalElement":[
|
1103
|
-
{
|
1104
|
-
"minimumValue":-500,
|
1105
|
-
"maximumValue":0,
|
1106
|
-
"verticalCRSTitle":"NAVD88 depth",
|
1107
|
-
"verticalCRSLink":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::6357"
|
1108
|
-
}
|
1109
|
-
]
|
1110
|
-
},
|
1111
|
-
{
|
1112
|
-
"description":"Polygon with BBOX",
|
1113
|
-
"geographicElement":[
|
1493
|
+
},
|
1114
1494
|
{
|
1115
1495
|
"type":"Feature",
|
1116
|
-
"id":"
|
1117
|
-
"bbox":[
|
1118
|
-
-148.1764,
|
1119
|
-
57.01428,
|
1120
|
-
-132.821,
|
1121
|
-
60.917
|
1122
|
-
],
|
1496
|
+
"id":"boundingPolygonHoles",
|
1123
1497
|
"geometry":{
|
1124
1498
|
"type":"Polygon",
|
1125
1499
|
"coordinates":[
|
1126
1500
|
[
|
1127
1501
|
[
|
1128
|
-
-139.
|
1502
|
+
-139.111111,
|
1129
1503
|
59.828561
|
1130
1504
|
],
|
1131
1505
|
[
|
@@ -1152,271 +1526,495 @@
|
|
1152
1526
|
-134.576034,
|
1153
1527
|
57.663361
|
1154
1528
|
]
|
1529
|
+
],
|
1530
|
+
[
|
1531
|
+
[
|
1532
|
+
-139.222222,
|
1533
|
+
59.828561
|
1534
|
+
],
|
1535
|
+
[
|
1536
|
+
-140.882186,
|
1537
|
+
59.839602
|
1538
|
+
],
|
1539
|
+
[
|
1540
|
+
-148.792343,
|
1541
|
+
57.944338
|
1542
|
+
],
|
1543
|
+
[
|
1544
|
+
-134.576034,
|
1545
|
+
57.663361
|
1546
|
+
]
|
1547
|
+
],
|
1548
|
+
[
|
1549
|
+
[
|
1550
|
+
-139.333333,
|
1551
|
+
59.828561
|
1552
|
+
],
|
1553
|
+
[
|
1554
|
+
-147.056503,
|
1555
|
+
60.829147
|
1556
|
+
],
|
1557
|
+
[
|
1558
|
+
-148.902206,
|
1559
|
+
59.982807
|
1560
|
+
],
|
1561
|
+
[
|
1562
|
+
-148.792343,
|
1563
|
+
57.944338
|
1564
|
+
],
|
1565
|
+
[
|
1566
|
+
-134.576034,
|
1567
|
+
57.663361
|
1568
|
+
]
|
1155
1569
|
]
|
1156
1570
|
]
|
1157
1571
|
},
|
1158
|
-
"properties":{
|
1159
|
-
"includesData":true,
|
1160
|
-
"description":"Gulf of Alaska"
|
1161
|
-
},
|
1162
1572
|
"crs":{
|
1163
1573
|
"type":"name",
|
1164
1574
|
"properties":{
|
1165
1575
|
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
1166
1576
|
}
|
1577
|
+
},
|
1578
|
+
"properties":{
|
1579
|
+
"featureName":"Project boundary polygon with holes",
|
1580
|
+
"description":"bounding polygon with holes for DOI/GTN-P Deep Borehole Array",
|
1581
|
+
"includesData":true
|
1167
1582
|
}
|
1168
1583
|
},
|
1169
1584
|
{
|
1170
1585
|
"type":"Feature",
|
1171
|
-
"id":"
|
1172
|
-
"bbox":[
|
1173
|
-
-97.067240989074,
|
1174
|
-
18.556394455134,
|
1175
|
-
-80.807475364074,
|
1176
|
-
29.366941330134
|
1177
|
-
],
|
1586
|
+
"id":"multiPolygon",
|
1178
1587
|
"geometry":{
|
1179
|
-
"type":"
|
1588
|
+
"type":"MultiPolygon",
|
1180
1589
|
"coordinates":[
|
1181
1590
|
[
|
1182
1591
|
[
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
|
1189
|
-
|
1190
|
-
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1592
|
+
[
|
1593
|
+
-139.111111,
|
1594
|
+
59.828561
|
1595
|
+
],
|
1596
|
+
[
|
1597
|
+
-140.111111,
|
1598
|
+
59.839602
|
1599
|
+
],
|
1600
|
+
[
|
1601
|
+
-143.111111,
|
1602
|
+
60.22375
|
1603
|
+
],
|
1604
|
+
[
|
1605
|
+
-147.111111,
|
1606
|
+
60.829147
|
1607
|
+
],
|
1608
|
+
[
|
1609
|
+
-148.111111,
|
1610
|
+
59.982807
|
1611
|
+
],
|
1612
|
+
[
|
1613
|
+
-148.111111,
|
1614
|
+
57.944338
|
1615
|
+
],
|
1616
|
+
[
|
1617
|
+
-134.111111,
|
1618
|
+
57.663361
|
1619
|
+
]
|
1620
|
+
]
|
1621
|
+
],
|
1622
|
+
[
|
1194
1623
|
[
|
1195
|
-
|
1196
|
-
|
1624
|
+
[
|
1625
|
+
-139.222222,
|
1626
|
+
59.828561
|
1627
|
+
],
|
1628
|
+
[
|
1629
|
+
-140.222222,
|
1630
|
+
59.839602
|
1631
|
+
],
|
1632
|
+
[
|
1633
|
+
-143.222222,
|
1634
|
+
60.22375
|
1635
|
+
],
|
1636
|
+
[
|
1637
|
+
-147.222222,
|
1638
|
+
60.829147
|
1639
|
+
],
|
1640
|
+
[
|
1641
|
+
-148.222222,
|
1642
|
+
59.982807
|
1643
|
+
],
|
1644
|
+
[
|
1645
|
+
-148.222222,
|
1646
|
+
57.944338
|
1647
|
+
],
|
1648
|
+
[
|
1649
|
+
-134.222222,
|
1650
|
+
57.663361
|
1651
|
+
]
|
1197
1652
|
],
|
1198
1653
|
[
|
1199
|
-
|
1200
|
-
|
1654
|
+
[
|
1655
|
+
-139.333333,
|
1656
|
+
59.828561
|
1657
|
+
],
|
1658
|
+
[
|
1659
|
+
-140.333333,
|
1660
|
+
59.839602
|
1661
|
+
],
|
1662
|
+
[
|
1663
|
+
-148.333333,
|
1664
|
+
57.944338
|
1665
|
+
],
|
1666
|
+
[
|
1667
|
+
-134.333333,
|
1668
|
+
57.663361
|
1669
|
+
]
|
1201
1670
|
],
|
1202
1671
|
[
|
1203
|
-
|
1204
|
-
|
1672
|
+
[
|
1673
|
+
-139.444444,
|
1674
|
+
59.828561
|
1675
|
+
],
|
1676
|
+
[
|
1677
|
+
-147.444444,
|
1678
|
+
60.829147
|
1679
|
+
],
|
1680
|
+
[
|
1681
|
+
-148.444444,
|
1682
|
+
59.982807
|
1683
|
+
],
|
1684
|
+
[
|
1685
|
+
-148.444444,
|
1686
|
+
57.944338
|
1687
|
+
],
|
1688
|
+
[
|
1689
|
+
-134.444444,
|
1690
|
+
57.663361
|
1691
|
+
]
|
1205
1692
|
]
|
1206
1693
|
]
|
1207
1694
|
]
|
1208
1695
|
},
|
1209
|
-
"properties":{
|
1210
|
-
"includesData":false,
|
1211
|
-
"description":"Gulf of Mexico",
|
1212
|
-
"text":"Whatever I want."
|
1213
|
-
},
|
1214
1696
|
"crs":{
|
1215
1697
|
"type":"name",
|
1216
1698
|
"properties":{
|
1217
1699
|
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
1218
1700
|
}
|
1219
|
-
}
|
1220
|
-
}
|
1221
|
-
],
|
1222
|
-
"temporalElement":{
|
1223
|
-
"timePeriod":[
|
1224
|
-
{
|
1225
|
-
"id":"tp-001",
|
1226
|
-
"description":"Ground Condition",
|
1227
|
-
"beginPosition":"1987-05-16T16:05:00",
|
1228
|
-
"endPosition":"2011-12"
|
1229
1701
|
},
|
1230
|
-
{
|
1231
|
-
"
|
1232
|
-
"description":"
|
1233
|
-
"
|
1234
|
-
"endPosition":"2012-12-12"
|
1702
|
+
"properties":{
|
1703
|
+
"featureName":"Project boundary multi polygon",
|
1704
|
+
"description":"Two bounding polygons, the second with holes",
|
1705
|
+
"includesData":true
|
1235
1706
|
}
|
1236
|
-
]
|
1237
|
-
},
|
1238
|
-
"verticalElement":[
|
1239
|
-
{
|
1240
|
-
"minimumValue":0,
|
1241
|
-
"maximumValue":1000,
|
1242
|
-
"verticalCRSTitle":"NAVD88 height",
|
1243
|
-
"verticalCRSLink":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5703"
|
1244
1707
|
},
|
1245
|
-
{
|
1246
|
-
"minimumValue":1500,
|
1247
|
-
"maximumValue":0,
|
1248
|
-
"verticalCRSTitle":"NAVD88 depth",
|
1249
|
-
"verticalCRSLink":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::6357"
|
1250
|
-
}
|
1251
|
-
]
|
1252
|
-
},
|
1253
|
-
{
|
1254
|
-
"description":"A feature collection with just polygons",
|
1255
|
-
"geographicElement":[
|
1256
1708
|
{
|
1257
1709
|
"type":"FeatureCollection",
|
1258
|
-
"id":"
|
1259
|
-
"bbox":[
|
1260
|
-
-149.89603182812,
|
1261
|
-
61.215716023773,
|
1262
|
-
-149.87405917187,
|
1263
|
-
61.225371976227
|
1264
|
-
],
|
1710
|
+
"id":"barrowSiteMap",
|
1265
1711
|
"properties":{
|
1266
|
-
"
|
1267
|
-
"description":"
|
1712
|
+
"featureName":"North Slope Borehole Locations",
|
1713
|
+
"description":"Borehole Locations for DOI/GTN-P Deep Borehole Array",
|
1268
1714
|
"includesData":true
|
1269
1715
|
},
|
1270
1716
|
"crs":{
|
1271
1717
|
"type":"name",
|
1272
1718
|
"properties":{
|
1273
|
-
"name":"
|
1719
|
+
"name":"EPSG:4326"
|
1274
1720
|
}
|
1275
1721
|
},
|
1276
1722
|
"features":[
|
1277
1723
|
{
|
1278
1724
|
"type":"Feature",
|
1279
|
-
"id":"
|
1725
|
+
"id":"borehole010",
|
1280
1726
|
"geometry":{
|
1281
|
-
"type":"
|
1727
|
+
"type":"Point",
|
1282
1728
|
"coordinates":[
|
1283
|
-
|
1284
|
-
|
1285
|
-
|
1286
|
-
|
1287
|
-
|
1288
|
-
|
1289
|
-
|
1290
|
-
|
1291
|
-
|
1292
|
-
|
1293
|
-
|
1294
|
-
|
1295
|
-
|
1296
|
-
|
1297
|
-
|
1298
|
-
|
1299
|
-
|
1300
|
-
],
|
1301
|
-
[
|
1302
|
-
[
|
1303
|
-
-149.8807,
|
1304
|
-
61.21990
|
1305
|
-
],
|
1306
|
-
[
|
1307
|
-
-149.880627,
|
1308
|
-
61.221300
|
1309
|
-
],
|
1310
|
-
[
|
1311
|
-
-149.8809,
|
1312
|
-
61.221300
|
1729
|
+
-151.717181,
|
1730
|
+
70.556119,
|
1731
|
+
2
|
1732
|
+
]
|
1733
|
+
},
|
1734
|
+
"properties":{
|
1735
|
+
"featureName":"Atigaru",
|
1736
|
+
"description":"Deep permafrost borehole",
|
1737
|
+
"includesData":true,
|
1738
|
+
"assignedId":[
|
1739
|
+
{
|
1740
|
+
"title":"Global Terrestrial Network for Permafrost Identifiers",
|
1741
|
+
"responsibleParty":[
|
1742
|
+
{
|
1743
|
+
"contactId":"8",
|
1744
|
+
"role":"originator"
|
1745
|
+
}
|
1313
1746
|
],
|
1314
|
-
[
|
1315
|
-
|
1316
|
-
|
1317
|
-
|
1318
|
-
],
|
1319
|
-
[
|
1320
|
-
[
|
1321
|
-
-149.889300,
|
1322
|
-
61.221300
|
1747
|
+
"onlineResource":[
|
1748
|
+
{
|
1749
|
+
"uri":"http://www.gtnp.org"
|
1750
|
+
}
|
1323
1751
|
],
|
1324
|
-
|
1325
|
-
|
1326
|
-
|
1752
|
+
"identifier":"US 01"
|
1753
|
+
},
|
1754
|
+
{
|
1755
|
+
"title":"US Geological Survey borehole identifier",
|
1756
|
+
"responsibleParty":[
|
1757
|
+
{
|
1758
|
+
"contactId":"3",
|
1759
|
+
"role":"originator"
|
1760
|
+
}
|
1327
1761
|
],
|
1328
|
-
[
|
1329
|
-
|
1330
|
-
|
1762
|
+
"onlineResource":[
|
1763
|
+
{
|
1764
|
+
"uri":"http://data.usgs.gov/climateMonitoring/region/show?region=alaska"
|
1765
|
+
}
|
1331
1766
|
],
|
1332
|
-
|
1333
|
-
|
1334
|
-
|
1335
|
-
|
1767
|
+
"identifier":"ATI"
|
1768
|
+
}
|
1769
|
+
],
|
1770
|
+
"featureScope":"borehole",
|
1771
|
+
"featureAcquisitionMethod":"DGPS",
|
1772
|
+
"temporalElement":{
|
1773
|
+
"timePeriod":[
|
1774
|
+
{
|
1775
|
+
"id":"timePeriod010",
|
1776
|
+
"description":"Period of borehole operation",
|
1777
|
+
"beginPosition":"1977-12-14",
|
1778
|
+
"endPosition":"2007-08-13"
|
1779
|
+
}
|
1336
1780
|
]
|
1781
|
+
}
|
1782
|
+
}
|
1783
|
+
},
|
1784
|
+
{
|
1785
|
+
"type":"Feature",
|
1786
|
+
"id":"borehole020",
|
1787
|
+
"geometry":{
|
1788
|
+
"type":"Point",
|
1789
|
+
"coordinates":[
|
1790
|
+
-158.022575,
|
1791
|
+
69.153217,
|
1792
|
+
337
|
1337
1793
|
]
|
1338
1794
|
},
|
1339
1795
|
"properties":{
|
1340
|
-
"
|
1341
|
-
"description":"
|
1796
|
+
"featureName":"Awuna",
|
1797
|
+
"description":"Deep permafrost borehole",
|
1798
|
+
"includesData":true,
|
1799
|
+
"assignedId":[
|
1800
|
+
{
|
1801
|
+
"title":"Global Terrestrial Network for Permafrost Identifiers",
|
1802
|
+
"identifier":"US 02"
|
1803
|
+
},
|
1804
|
+
{
|
1805
|
+
"title":"US Geological Survey borehole identifier",
|
1806
|
+
"identifier":"AWUN"
|
1807
|
+
}
|
1808
|
+
],
|
1809
|
+
"featureScope":"borehole",
|
1810
|
+
"featureAcquisitionMethod":"DGPS",
|
1811
|
+
"temporalElement":{
|
1812
|
+
"timePeriod":[
|
1813
|
+
{
|
1814
|
+
"id":"timePeriod0120",
|
1815
|
+
"description":"Period of borehole operation",
|
1816
|
+
"beginPosition":"1981-08-22",
|
1817
|
+
"endPosition":"1982-08-22"
|
1818
|
+
}
|
1819
|
+
]
|
1820
|
+
}
|
1342
1821
|
}
|
1343
1822
|
},
|
1344
1823
|
{
|
1345
1824
|
"type":"Feature",
|
1346
|
-
"id":"
|
1825
|
+
"id":"",
|
1347
1826
|
"geometry":{
|
1348
|
-
"type":"
|
1827
|
+
"type":"Point",
|
1349
1828
|
"coordinates":[
|
1350
|
-
|
1351
|
-
|
1352
|
-
|
1353
|
-
61.219643
|
1354
|
-
],
|
1355
|
-
[
|
1356
|
-
-149.889466,
|
1357
|
-
61.219643
|
1358
|
-
],
|
1359
|
-
[
|
1360
|
-
-149.889251,
|
1361
|
-
61.219973
|
1362
|
-
],
|
1363
|
-
[
|
1364
|
-
-149.887835,
|
1365
|
-
61.219952
|
1366
|
-
],
|
1367
|
-
[
|
1368
|
-
-149.888221,
|
1369
|
-
61.219643
|
1370
|
-
]
|
1371
|
-
]
|
1829
|
+
-151.717181,
|
1830
|
+
70.879761,
|
1831
|
+
5
|
1372
1832
|
]
|
1373
1833
|
},
|
1374
1834
|
"properties":{
|
1375
|
-
"
|
1376
|
-
"
|
1377
|
-
"
|
1835
|
+
"featureName":"Drew Point",
|
1836
|
+
"description":"Deep permafrost borehole",
|
1837
|
+
"includesData":true,
|
1838
|
+
"assignedId":[
|
1839
|
+
{
|
1840
|
+
"title":"Global Terrestrial Network for Permafrost Identifiers",
|
1841
|
+
"identifier":"US 03"
|
1842
|
+
},
|
1843
|
+
{
|
1844
|
+
"title":"US Geological Survey borehole identifier",
|
1845
|
+
"identifier":"DWPT"
|
1846
|
+
}
|
1847
|
+
],
|
1848
|
+
"featureScope":"borehole",
|
1849
|
+
"featureAcquisitionMethod":"DGPS",
|
1850
|
+
"temporalElement":{
|
1851
|
+
"timePeriod":[
|
1852
|
+
{
|
1853
|
+
"id":"timePeriod030",
|
1854
|
+
"description":"Period of borehole operation",
|
1855
|
+
"beginPosition":"1987-09-17",
|
1856
|
+
"endPosition":"2007-08-13"
|
1857
|
+
}
|
1858
|
+
]
|
1859
|
+
},
|
1860
|
+
"verticalElement":[
|
1861
|
+
{
|
1862
|
+
"minimumValue":-653,
|
1863
|
+
"maximumValue":12,
|
1864
|
+
"verticalCRSTitle":"NAVD88 depth",
|
1865
|
+
"verticalCRSLink":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::6357"
|
1866
|
+
}
|
1867
|
+
]
|
1378
1868
|
}
|
1379
1869
|
}
|
1380
1870
|
]
|
1381
1871
|
}
|
1382
|
-
]
|
1383
|
-
|
1384
|
-
|
1872
|
+
]
|
1873
|
+
}
|
1874
|
+
],
|
1875
|
+
"dataQualityInfo":[
|
1876
|
+
{
|
1877
|
+
"scope":"dataset",
|
1878
|
+
"lineage":{
|
1879
|
+
"statement":"derived from that other dataset",
|
1880
|
+
"processStep":[
|
1385
1881
|
{
|
1386
|
-
"
|
1387
|
-
"
|
1388
|
-
"
|
1882
|
+
"stepId":"135b",
|
1883
|
+
"description":"Manually combed through to find obvious junk data values, changed value to 999999999999999999999",
|
1884
|
+
"rationale":"It had to be done!",
|
1885
|
+
"dateTime":"2011-08-23",
|
1886
|
+
"processor":[
|
1887
|
+
{
|
1888
|
+
"contactId":"3",
|
1889
|
+
"role":"processor"
|
1890
|
+
},
|
1891
|
+
{
|
1892
|
+
"contactId":"2",
|
1893
|
+
"role":"publisher"
|
1894
|
+
}
|
1895
|
+
]
|
1389
1896
|
},
|
1390
1897
|
{
|
1391
|
-
"
|
1392
|
-
"
|
1393
|
-
"
|
1394
|
-
"
|
1898
|
+
"description":"changed junk data value to 9999",
|
1899
|
+
"rationale":"Way too many 9's that first time.",
|
1900
|
+
"dateTime":"2013-08-28",
|
1901
|
+
"processor":[
|
1902
|
+
{
|
1903
|
+
"contactId":"4",
|
1904
|
+
"role":"processor"
|
1905
|
+
}
|
1906
|
+
]
|
1395
1907
|
}
|
1396
1908
|
],
|
1397
|
-
"
|
1909
|
+
"source":[
|
1398
1910
|
{
|
1399
|
-
"
|
1400
|
-
"
|
1401
|
-
|
1911
|
+
"description":"For this work, a mesoscale numerical model (WRF) will be initialized using the National Centers for Environmental Prediction (NCEP) North American Regional Reanalysis (NARR) output at 32-km resolution. The NARR data provides the “best-guess” analysis of atmospheric conditions for use in historical studies. The NARR domain covers all of North and Central America, much of the northeastern Pacific and northern Atlantic Oceans, including Alaska and Hawaii. Ten years of NARR data will be used (1 Jan 2000 – 31 Dec 2009).",
|
1912
|
+
"citation":{
|
1913
|
+
"title":"Very High-Resolution Dynamic Downscaling of Regional Climate and Hydrology",
|
1914
|
+
"date":[
|
1915
|
+
{
|
1916
|
+
"date":"2000-01-21",
|
1917
|
+
"dateType":"publication"
|
1918
|
+
}
|
1919
|
+
],
|
1920
|
+
"edition":"version 1.2.0",
|
1921
|
+
"responsibleParty":[
|
1922
|
+
{
|
1923
|
+
"contactId":"1",
|
1924
|
+
"role":"originator"
|
1925
|
+
}
|
1926
|
+
],
|
1927
|
+
"presentationForm":[
|
1928
|
+
"documentDigital"
|
1929
|
+
],
|
1930
|
+
"additionalIdentifier":{
|
1931
|
+
"isbn":"HB12365.214",
|
1932
|
+
"issn":"0ab4-dd983c01"
|
1933
|
+
}
|
1934
|
+
},
|
1935
|
+
"processStep":[
|
1936
|
+
{
|
1937
|
+
"stepId":"135bc",
|
1938
|
+
"description":"The NARR data will be used to initialize the WRF model. The NARR data cannot be used by the WRF directly. Instead, WRF-required initial data and lateral data will be created from the NARR data using the WRF Preprocessing System (WPS) utilities. In addition, the 32-km grid resolution of the NARR data will be objectively analyzed to the WRF 4-km grid. ",
|
1939
|
+
"rationale":"It had to be done!",
|
1940
|
+
"dateTime":"2013-08-13",
|
1941
|
+
"processor":[
|
1942
|
+
{
|
1943
|
+
"contactId":"3",
|
1944
|
+
"role":"processor"
|
1945
|
+
}
|
1946
|
+
]
|
1947
|
+
},
|
1948
|
+
{
|
1949
|
+
"stepId":"135bd",
|
1950
|
+
"description":"The Hawaii Forest Bird Survey Vegetation Database includes data for over 40,400 vegetation plots that were sampled on the island of Hawaii in 1977. This database records with cover data that can be used for modeling their distribution abundance.",
|
1951
|
+
"rationale":"It had to be done!",
|
1952
|
+
"dateTime":"2013-08-13",
|
1953
|
+
"processor":[
|
1954
|
+
{
|
1955
|
+
"contactId":"3",
|
1956
|
+
"role":"processor"
|
1957
|
+
}
|
1958
|
+
]
|
1959
|
+
}
|
1960
|
+
]
|
1402
1961
|
},
|
1403
1962
|
{
|
1404
|
-
"
|
1405
|
-
"description":"below ground condition",
|
1406
|
-
"timePosition":"2012-08-16T08:06:00.0+09:00"
|
1963
|
+
"description":"We got this dataset from those guys in Fairbanks."
|
1407
1964
|
}
|
1408
1965
|
]
|
1409
|
-
}
|
1410
|
-
|
1411
|
-
|
1412
|
-
|
1413
|
-
|
1414
|
-
|
1415
|
-
|
1416
|
-
|
1417
|
-
|
1966
|
+
}
|
1967
|
+
},
|
1968
|
+
{
|
1969
|
+
"scope":"dataset",
|
1970
|
+
"lineage":{
|
1971
|
+
"statement":"This is that other dataset that you might have heard about.",
|
1972
|
+
"source":[
|
1973
|
+
{
|
1974
|
+
"description":"This dataset came from somewhere. It was collected by so and so.",
|
1975
|
+
"citation":{
|
1976
|
+
"title":"Example_dataset_20111009_turner_v1-12.csv",
|
1977
|
+
"date":[
|
1978
|
+
{
|
1979
|
+
"date":"2011-10-09",
|
1980
|
+
"dateType":"revision"
|
1981
|
+
}
|
1982
|
+
]
|
1983
|
+
}
|
1984
|
+
}
|
1985
|
+
]
|
1986
|
+
}
|
1987
|
+
},
|
1988
|
+
{
|
1989
|
+
"scope":"series",
|
1990
|
+
"lineage":{
|
1991
|
+
"statement":"This series is made up of those datasets."
|
1992
|
+
}
|
1993
|
+
},
|
1994
|
+
{
|
1995
|
+
"scope":"dataset",
|
1996
|
+
"lineage":{
|
1997
|
+
"statement":"This another ctd datas from the GAK1 location.",
|
1998
|
+
"processStep":[
|
1999
|
+
{
|
2000
|
+
"description":"This is how this dataset was processed."
|
2001
|
+
}
|
2002
|
+
]
|
2003
|
+
}
|
2004
|
+
},
|
2005
|
+
{
|
2006
|
+
"scope":"dataset",
|
2007
|
+
"lineage":{
|
2008
|
+
"statement":"This series is made up of those datasets.",
|
2009
|
+
"source":[
|
2010
|
+
{
|
2011
|
+
"description":"We got this dataset from those guys in Fairbanks."
|
2012
|
+
}
|
2013
|
+
]
|
2014
|
+
}
|
1418
2015
|
}
|
1419
|
-
]
|
2016
|
+
],
|
2017
|
+
"supplementalInfo":"There is a lot more I could say, but won't"
|
1420
2018
|
},
|
1421
2019
|
"distributionInfo":[
|
1422
2020
|
{
|
@@ -1438,25 +2036,28 @@
|
|
1438
2036
|
],
|
1439
2037
|
"distributorFormat":[
|
1440
2038
|
{
|
1441
|
-
"
|
2039
|
+
"formatName":"netCDF",
|
1442
2040
|
"version":"4.0"
|
1443
2041
|
},
|
1444
2042
|
{
|
1445
|
-
"
|
2043
|
+
"formatName":"Excel Spreadsheet",
|
1446
2044
|
"version":"xlsx"
|
2045
|
+
},
|
2046
|
+
{
|
2047
|
+
"formatName":"CSV"
|
1447
2048
|
}
|
1448
2049
|
],
|
1449
2050
|
"distributorTransferOptions":[
|
1450
2051
|
{
|
1451
2052
|
"online":[
|
1452
2053
|
{
|
1453
|
-
"
|
2054
|
+
"uri":"http://aoos.org/aoos-data-resources",
|
1454
2055
|
"name":"AOOS Data Resources",
|
1455
2056
|
"description":"This page provides links to interactive maps and data discovery tools.",
|
1456
2057
|
"function":"information"
|
1457
2058
|
},
|
1458
2059
|
{
|
1459
|
-
"
|
2060
|
+
"uri":"http://aoos.org/fake_resource_location"
|
1460
2061
|
}
|
1461
2062
|
],
|
1462
2063
|
"offline":{
|
@@ -1474,156 +2075,138 @@
|
|
1474
2075
|
}
|
1475
2076
|
}
|
1476
2077
|
],
|
1477
|
-
"
|
2078
|
+
"associatedResource":[
|
1478
2079
|
{
|
1479
|
-
"
|
1480
|
-
"
|
1481
|
-
|
1482
|
-
"
|
1483
|
-
|
1484
|
-
"stepId":"135b",
|
1485
|
-
"description":"Manually combed through to find obvious junk data values, changed value to 999999999999999999999",
|
1486
|
-
"rationale":"It had to be done!",
|
1487
|
-
"dateTime":"2011-08-23",
|
1488
|
-
"processor":[
|
1489
|
-
{
|
1490
|
-
"contactId":"3",
|
1491
|
-
"role":"processor"
|
1492
|
-
},
|
1493
|
-
{
|
1494
|
-
"contactId":"2",
|
1495
|
-
"role":"publisher"
|
1496
|
-
}
|
1497
|
-
]
|
1498
|
-
},
|
2080
|
+
"associationType":"crossReference",
|
2081
|
+
"resourceType":"study",
|
2082
|
+
"resourceCitation":{
|
2083
|
+
"title":"U.S. Geological Survey's Borehole Temperature Logs from Arctic Alaska, pre-1989",
|
2084
|
+
"date":[
|
1499
2085
|
{
|
1500
|
-
"
|
1501
|
-
"
|
1502
|
-
"dateTime":"2013-08-28",
|
1503
|
-
"processor":[
|
1504
|
-
{
|
1505
|
-
"contactId":"4",
|
1506
|
-
"role":"processor"
|
1507
|
-
}
|
1508
|
-
]
|
2086
|
+
"date":"1989",
|
2087
|
+
"dateType":"creation"
|
1509
2088
|
}
|
1510
2089
|
],
|
1511
|
-
"
|
2090
|
+
"responsibleParty":[
|
1512
2091
|
{
|
1513
|
-
"
|
1514
|
-
"
|
1515
|
-
|
1516
|
-
|
1517
|
-
|
1518
|
-
|
1519
|
-
|
1520
|
-
|
1521
|
-
],
|
1522
|
-
"edition":"version 1.2.0",
|
1523
|
-
"responsibleParty":[
|
1524
|
-
{
|
1525
|
-
"contactId":"1",
|
1526
|
-
"role":"originator"
|
1527
|
-
}
|
1528
|
-
],
|
1529
|
-
"presentationForm":"documentDigital",
|
1530
|
-
"isbn":"HB12365.214",
|
1531
|
-
"issn":"0ab4-dd983c01"
|
1532
|
-
},
|
1533
|
-
"processStep":[
|
1534
|
-
{
|
1535
|
-
"stepId":"135bc",
|
1536
|
-
"description":"The NARR data will be used to initialize the WRF model. The NARR data cannot be used by the WRF directly. Instead, WRF-required initial data and lateral data will be created from the NARR data using the WRF Preprocessing System (WPS) utilities. In addition, the 32-km grid resolution of the NARR data will be objectively analyzed to the WRF 4-km grid. ",
|
1537
|
-
"rationale":"It had to be done!",
|
1538
|
-
"dateTime":"2013-08-13",
|
1539
|
-
"processor":[
|
1540
|
-
{
|
1541
|
-
"contactId":"3",
|
1542
|
-
"role":"processor"
|
1543
|
-
}
|
1544
|
-
]
|
1545
|
-
},
|
1546
|
-
{
|
1547
|
-
"stepId":"135bd",
|
1548
|
-
"description":"The Hawaii Forest Bird Survey Vegetation Database includes data for over 40,400 vegetation plots that were sampled on the island of Hawaii in 1977. This database records with cover data that can be used for modeling their distribution abundance.",
|
1549
|
-
"rationale":"It had to be done!",
|
1550
|
-
"dateTime":"2013-08-13",
|
1551
|
-
"processor":[
|
1552
|
-
{
|
1553
|
-
"contactId":"3",
|
1554
|
-
"role":"processor"
|
1555
|
-
}
|
1556
|
-
]
|
1557
|
-
}
|
1558
|
-
]
|
1559
|
-
},
|
2092
|
+
"contactId":"5",
|
2093
|
+
"role":"pointOfContact"
|
2094
|
+
}
|
2095
|
+
],
|
2096
|
+
"presentationForm":[
|
2097
|
+
"digitalData"
|
2098
|
+
],
|
2099
|
+
"onlineResource":[
|
1560
2100
|
{
|
1561
|
-
"
|
2101
|
+
"uri":"http://esp.cr.usgs.gov/data/bht_alaska/",
|
2102
|
+
"protocol":"http",
|
2103
|
+
"description":"This dataset consists of borehole temperature measurements acquired in permafrost regions of arctic Alaska between 1950 and 1988 by the U.S. Geological Survey. A large number of the 87 sites (boreholes) represented in this dataset are deep enough to penetrate the base of permafrost."
|
1562
2104
|
}
|
1563
2105
|
]
|
1564
|
-
}
|
1565
|
-
|
1566
|
-
|
1567
|
-
|
1568
|
-
|
1569
|
-
|
1570
|
-
|
1571
|
-
|
1572
|
-
"description":"This dataset came from somewhere. It was collected by so and so.",
|
1573
|
-
"citation":{
|
1574
|
-
"title":"Example_dataset_20111009_turner_v1-12.csv",
|
1575
|
-
"date":[
|
1576
|
-
{
|
1577
|
-
"date":"2011-10-09",
|
1578
|
-
"dateType": "creation"
|
1579
|
-
}
|
1580
|
-
]
|
2106
|
+
},
|
2107
|
+
"resourceIdentifier":[
|
2108
|
+
{
|
2109
|
+
"title":"NCCWSC Grant Award Number",
|
2110
|
+
"responsibleParty":[
|
2111
|
+
{
|
2112
|
+
"contactId":"9",
|
2113
|
+
"role":"funder"
|
1581
2114
|
}
|
2115
|
+
],
|
2116
|
+
"identifier":"2014AKCSC-03"
|
2117
|
+
}
|
2118
|
+
],
|
2119
|
+
"metadataCitation":{
|
2120
|
+
"title":"Borehole Temperature Logs Metadata",
|
2121
|
+
"date":[
|
2122
|
+
{
|
2123
|
+
"date":"2013-08-15",
|
2124
|
+
"dateType":"revision"
|
1582
2125
|
}
|
1583
|
-
]
|
1584
|
-
|
1585
|
-
|
1586
|
-
{
|
1587
|
-
"scope":"series",
|
1588
|
-
"lineage":{
|
1589
|
-
"statement":"This series is made up of those datasets."
|
1590
|
-
}
|
1591
|
-
},
|
1592
|
-
{
|
1593
|
-
"scope":"dataset",
|
1594
|
-
"lineage":{
|
1595
|
-
"statement":"This another ctd datas from the GAK1 location.",
|
1596
|
-
"processStep":[
|
2126
|
+
],
|
2127
|
+
"edition":"0.6.0",
|
2128
|
+
"responsibleParty":[
|
1597
2129
|
{
|
1598
|
-
"
|
2130
|
+
"contactId":"5",
|
2131
|
+
"role":"owner"
|
1599
2132
|
}
|
1600
|
-
]
|
1601
|
-
|
1602
|
-
|
1603
|
-
|
1604
|
-
|
1605
|
-
|
1606
|
-
|
1607
|
-
|
2133
|
+
],
|
2134
|
+
"presentationForm":[
|
2135
|
+
"digitalDocument"
|
2136
|
+
],
|
2137
|
+
"additionalIdentifier":{
|
2138
|
+
"doi":"",
|
2139
|
+
"isbn":"",
|
2140
|
+
"issn":""
|
2141
|
+
},
|
2142
|
+
"onlineResource":[
|
1608
2143
|
{
|
1609
|
-
"
|
2144
|
+
"uri":"http://alaska.usgs.gov/rex/adiwg/public/projects/263?format=xml",
|
2145
|
+
"protocol":"HTTP",
|
2146
|
+
"name":"",
|
2147
|
+
"description":"project metadata record",
|
2148
|
+
"function":"",
|
2149
|
+
"doi":""
|
1610
2150
|
}
|
1611
2151
|
]
|
1612
2152
|
}
|
1613
2153
|
}
|
1614
2154
|
],
|
1615
|
-
"
|
1616
|
-
|
1617
|
-
|
1618
|
-
|
1619
|
-
|
1620
|
-
|
1621
|
-
|
1622
|
-
|
1623
|
-
|
1624
|
-
|
1625
|
-
|
1626
|
-
|
1627
|
-
|
2155
|
+
"additionalDocumentation":[
|
2156
|
+
{
|
2157
|
+
"title":"A new high_precision borehole-temperature logging system used at GISP2, Greenland, and Taylor Dome, Antarctica",
|
2158
|
+
"date":[
|
2159
|
+
{
|
2160
|
+
"date":"1996",
|
2161
|
+
"dateType":"publication"
|
2162
|
+
}
|
2163
|
+
],
|
2164
|
+
"responsibleParty":[
|
2165
|
+
{
|
2166
|
+
"contactId":"5",
|
2167
|
+
"role":"author"
|
2168
|
+
}
|
2169
|
+
],
|
2170
|
+
"presentationForm":[
|
2171
|
+
"documentDigital"
|
2172
|
+
],
|
2173
|
+
"onlineResource":[
|
2174
|
+
{
|
2175
|
+
"uri":"http://www.igsoc.org/journal.old/42/142/igs_journal_vol42_issue142_pg576-584.pdf",
|
2176
|
+
"protocol":"http",
|
2177
|
+
"name":"Journal of Glaciology",
|
2178
|
+
"description":"Publication document",
|
2179
|
+
"function":"download",
|
2180
|
+
"doi":"10.1594/PANGAEA.55517"
|
2181
|
+
}
|
2182
|
+
]
|
2183
|
+
},
|
2184
|
+
{
|
2185
|
+
"title":"Thermal State of Permafrost (TSP): The US Contribution to the International Permafrost Observatory Network",
|
2186
|
+
"date":[
|
2187
|
+
{
|
2188
|
+
"date":"2006",
|
2189
|
+
"dateType":"award"
|
2190
|
+
}
|
2191
|
+
],
|
2192
|
+
"responsibleParty":[
|
2193
|
+
{
|
2194
|
+
"contactId":"9",
|
2195
|
+
"role":"funder"
|
2196
|
+
}
|
2197
|
+
],
|
2198
|
+
"presentationForm":[
|
2199
|
+
"documentDigital"
|
2200
|
+
],
|
2201
|
+
"onlineResource":[
|
2202
|
+
{
|
2203
|
+
"uri":"http://www.nsf.gov/awardsearch/showAward?AWD_ID=0520578",
|
2204
|
+
"protocol":"http",
|
2205
|
+
"name":"U.S. National Science Foundation Award database",
|
2206
|
+
"description":"Grant award"
|
2207
|
+
}
|
2208
|
+
]
|
2209
|
+
}
|
2210
|
+
]
|
1628
2211
|
}
|
1629
2212
|
}
|