adiwg-mdjson_schemas 1.1.3 → 2.0.0.pre.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +2 -0
- data/README.md +14 -3
- data/adiwg-json_schemas.gemspec +2 -2
- data/bower.json +0 -1
- data/examples/additionalDocumentation.json +9 -60
- data/examples/address.json +14 -10
- data/examples/allocation.json +12 -0
- data/examples/associatedResource.json +10 -118
- data/examples/attribute.json +27 -0
- data/examples/attributeGroup.json +17 -0
- data/examples/boundingBox.json +6 -0
- data/examples/citation.json +69 -127
- data/examples/computedBbox.json +399 -0
- data/examples/constraint.json +62 -0
- data/examples/contact.json +40 -207
- data/examples/coverageDescription.json +21 -0
- data/examples/date.json +8 -19
- data/examples/dictionary.json +58 -0
- data/examples/dimension.json +11 -0
- data/examples/distribution.json +26 -0
- data/examples/distributor.json +22 -142
- data/examples/domain.json +29 -0
- data/examples/domainItem.json +11 -0
- data/examples/duration.json +17 -0
- data/examples/entity.json +48 -0
- data/examples/entityAttribute.json +31 -0
- data/examples/entityForeignKey.json +17 -0
- data/examples/entityIndex.json +8 -0
- data/examples/extent.json +60 -0
- data/examples/featureCollection.json +58 -0
- data/examples/featureProperties.json +16 -0
- data/examples/format.json +7 -14
- data/examples/funding.json +33 -0
- data/examples/geoJson.json +185 -0
- data/examples/geographicExtent.json +22 -0
- data/examples/geometryCollection.json +14 -0
- data/examples/geometryFeature.json +12 -0
- data/examples/geometryObject.json +90 -0
- data/examples/georectifiedRepresentation.json +28 -0
- data/examples/georeferencableRepresentation.json +25 -0
- data/examples/gmlIdentifier.json +8 -0
- data/examples/graphic.json +33 -0
- data/examples/gridRepresentation.json +14 -0
- data/examples/identifier.json +9 -0
- data/examples/imageDescription.json +15 -0
- data/examples/keyword.json +14 -0
- data/examples/keywordObject.json +12 -0
- data/examples/legalConstraint.json +21 -0
- data/examples/lineage.json +21 -0
- data/examples/locale.json +12 -3
- data/examples/maintenance.json +38 -0
- data/examples/mdJson.json +99 -0
- data/examples/measure.json +5 -0
- data/examples/medium.json +16 -0
- data/examples/metadata.json +102 -0
- data/examples/metadataInfo.json +68 -101
- data/examples/onlineResource.json +13 -17
- data/examples/orderProcess.json +6 -0
- data/examples/party.json +21 -0
- data/examples/phone.json +9 -0
- data/examples/processStep.json +34 -0
- data/examples/releasability.json +28 -0
- data/examples/resourceInfo.json +230 -1256
- data/examples/responsibleParty.json +31 -0
- data/examples/schema.json +8 -0
- data/examples/scope.json +33 -0
- data/examples/scopeDescription.json +8 -0
- data/examples/securityConstraint.json +13 -0
- data/examples/series.json +9 -0
- data/examples/source.json +23 -0
- data/examples/spatialReference.json +34 -0
- data/examples/spatialRepresentation.json +59 -0
- data/examples/spatialResolution.json +11 -0
- data/examples/taxonomicClassification.json +59 -0
- data/examples/taxonomicSystem.json +13 -0
- data/examples/taxonomy.json +79 -188
- data/examples/temporalExtent.json +11 -0
- data/examples/timeInstant.json +13 -0
- data/examples/timeInterval.json +8 -0
- data/examples/timePeriod.json +26 -0
- data/examples/transferOption.json +36 -0
- data/examples/usage.json +48 -33
- data/examples/vectorObject.json +4 -0
- data/examples/vectorRepresentation.json +10 -0
- data/examples/verticalExtent.json +10 -17
- data/examples/voucher.json +12 -0
- data/lib/adiwg/mdjson_schemas/utils.rb +45 -15
- data/lib/adiwg/mdjson_schemas/validator.rb +6 -7
- data/lib/adiwg/mdjson_schemas/version.rb +1 -1
- data/lib/adiwg/mdjson_schemas.rb +4 -2
- data/schema/additionalDocumentation.json +29 -0
- data/schema/associatedResource.json +49 -0
- data/schema/attribute.json +157 -0
- data/schema/attributeGroup.json +29 -0
- data/schema/{schema/geojson/bbox.json → bbox.json} +2 -2
- data/schema/{schema/citation.json → citation.json} +73 -99
- data/schema/common.json +49 -0
- data/schema/{schema/resourceConstraint.json → constraint.json} +83 -13
- data/schema/contact.json +234 -0
- data/schema/coverageDescription.json +50 -0
- data/schema/dataDictionary.json +71 -0
- data/schema/distribution.json +35 -0
- data/schema/distributor.json +46 -0
- data/schema/domain.json +65 -0
- data/schema/entity.json +235 -0
- data/schema/extent.json +59 -0
- data/schema/format.json +37 -0
- data/schema/funding.json +67 -0
- data/schema/geographicExtent.json +87 -0
- data/schema/{schema/geojson/geojson.json → geojson.json} +16 -44
- data/schema/{schema/geojson/geometry.json → geometry.json} +2 -1
- data/schema/georectifiedRepresentation.json +89 -0
- data/schema/georeferencableRepresentation.json +49 -0
- data/schema/{schema/graphicOverview.json → graphic.json} +19 -6
- data/schema/{schema/gridInfo.json → gridRepresentation.json} +7 -13
- data/schema/identifier.json +47 -0
- data/schema/imageDescription.json +92 -0
- data/schema/{schema/keyword.json → keyword.json} +18 -4
- data/schema/{schema/dataQuality.json → lineage.json} +92 -57
- data/schema/{schema/maintInfo.json → maintInfo.json} +24 -6
- data/schema/measure.json +31 -0
- data/schema/medium.json +55 -0
- data/schema/metadata.json +77 -0
- data/schema/metadataInfo.json +112 -0
- data/schema/{schema/onlineResource.json → onlineResource.json} +1 -1
- data/schema/orderProcess.json +45 -0
- data/schema/releasability.json +42 -0
- data/schema/{schema/resourceInfo.json → resourceInfo.json} +112 -189
- data/schema/responsibility.json +56 -0
- data/schema/schema.json +16 -31
- data/schema/scope.json +55 -0
- data/schema/spatialReference.json +26 -0
- data/schema/spatialRepresentation.json +83 -0
- data/schema/spatialResolution.json +54 -0
- data/schema/taxonomy.json +178 -0
- data/schema/temporalExtent.json +42 -0
- data/schema/timeInstant.json +46 -0
- data/schema/timePeriod.json +126 -0
- data/schema/transferOption.json +61 -0
- data/schema/{schema/usage.json → usage.json} +34 -4
- data/schema/vectorRepresentation.json +51 -0
- data/schema/verticalExtent.json +37 -0
- data/test/helper.rb +32 -0
- data/test/tc_additionalDocumentation.rb +8 -0
- data/test/tc_address.rb +8 -0
- data/test/tc_associatedResource.rb +8 -0
- data/test/tc_attribute.rb +8 -0
- data/test/tc_attributeGroup.rb +8 -0
- data/test/tc_boundingBox.rb +8 -0
- data/test/tc_citation.rb +8 -0
- data/test/tc_constraint.rb +8 -0
- data/test/tc_contact.rb +8 -0
- data/test/tc_coverageDescription.rb +8 -0
- data/test/tc_dataDictionary.rb +8 -0
- data/test/tc_dimension.rb +8 -0
- data/test/tc_distribution.rb +8 -0
- data/test/tc_distributor.rb +8 -0
- data/test/tc_domain.rb +8 -0
- data/test/tc_domainItem.rb +8 -0
- data/test/tc_duration.rb +8 -0
- data/test/tc_entity.rb +20 -0
- data/test/tc_extent.rb +8 -0
- data/test/tc_featureCollection.rb +8 -0
- data/test/tc_featureProperties.rb +8 -0
- data/test/tc_format.rb +8 -0
- data/test/tc_funding.rb +8 -0
- data/test/tc_geographicElement.rb +12 -0
- data/test/tc_geographicExtent.rb +8 -0
- data/test/tc_geometryCollection.rb +8 -0
- data/test/tc_geometryFeature.rb +8 -0
- data/test/tc_geometryObject.rb +8 -0
- data/test/tc_georectifiedRepresentation.rb +8 -0
- data/test/tc_georeferencableRepresentation.rb +8 -0
- data/test/tc_graphic.rb +8 -0
- data/test/tc_gridRepresentation.rb +8 -0
- data/test/tc_identifier.rb +8 -0
- data/test/tc_imageDescription.rb +8 -0
- data/test/tc_jsonschema.rb +16 -0
- data/test/tc_keyword.rb +8 -0
- data/test/tc_lineage.rb +8 -0
- data/test/tc_maintInfo.rb +8 -0
- data/test/tc_measure.rb +8 -0
- data/test/tc_medium.rb +8 -0
- data/test/tc_metadata.rb +8 -0
- data/test/tc_metadataInfo.rb +8 -0
- data/test/tc_onlineResource.rb +8 -0
- data/test/tc_orderProcess.rb +8 -0
- data/test/tc_party.rb +8 -0
- data/test/tc_processStep.rb +8 -0
- data/test/tc_releasability.rb +8 -0
- data/test/tc_resourceInfo.rb +8 -0
- data/test/tc_responsibility.rb +8 -0
- data/test/tc_schema.rb +8 -0
- data/test/tc_scope.rb +8 -0
- data/test/tc_source.rb +8 -0
- data/test/tc_spatialReference.rb +8 -0
- data/test/tc_spatialRepresentation.rb +8 -0
- data/test/tc_spatialResolution.rb +8 -0
- data/test/tc_taxonomicClassification.rb +8 -0
- data/test/tc_taxonomicSystem.rb +8 -0
- data/test/tc_taxonomy.rb +8 -0
- data/test/tc_temporalExtent.rb +8 -0
- data/test/tc_timeInstant.rb +8 -0
- data/test/tc_timePeriod.rb +8 -0
- data/test/tc_transferOption.rb +8 -0
- data/test/tc_uri.rb +8 -0
- data/test/tc_usage.rb +8 -0
- data/test/tc_utils.rb +8 -11
- data/test/tc_vectorRepresentation.rb +13 -0
- data/test/tc_verticalExtent.rb +8 -0
- data/test/tc_voucher.rb +8 -0
- metadata +264 -57
- data/examples/contactRef.json +0 -12
- data/examples/coverageInfo.json +0 -148
- data/examples/dataDictionary.json +0 -549
- data/examples/dataQuality.json +0 -272
- data/examples/extent_linestring.json +0 -288
- data/examples/extent_point.json +0 -246
- data/examples/extent_polygon.json +0 -353
- data/examples/full_example.json +0 -3065
- data/examples/full_example2.json +0 -2325
- data/examples/geojson.json +0 -446
- data/examples/graphicOverview.json +0 -28
- data/examples/gridInfo.json +0 -23
- data/examples/hierarchyLevel.json +0 -90
- data/examples/keywords.json +0 -144
- data/examples/lcc_project_example.json +0 -326
- data/examples/legalConstraints.json +0 -17
- data/examples/maintInfo.json +0 -34
- data/examples/minimum_example.json +0 -35
- data/examples/resolution.json +0 -9
- data/examples/resourceMaintenance.json +0 -10
- data/examples/securityConstraints.json +0 -13
- data/examples/spatialRef.json +0 -14
- data/examples/temporalElement.json +0 -29
- data/schema/schema/contact.json +0 -262
- data/schema/schema/coverageInfo.json +0 -303
- data/schema/schema/dataDictionary.json +0 -335
- data/schema/schema/distributor.json +0 -216
- data/schema/schema/extent.json +0 -215
- data/schema/schema/geojson/crs.json +0 -99
- data/schema/schema/metadata.json +0 -188
- data/schema/schema/resolution.json +0 -51
- data/schema/schema/taxonomy.json +0 -122
- data/test/tc_schemas.rb +0 -243
- /data/schema/{schema/locale.json → locale.json} +0 -0
data/examples/extent_point.json
DELETED
@@ -1,246 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"description":"Single Points, multiple elements",
|
4
|
-
"geographicElement":[
|
5
|
-
{
|
6
|
-
"type":"Feature",
|
7
|
-
"id":"point1",
|
8
|
-
"properties":{
|
9
|
-
"name":"BS7882",
|
10
|
-
"description":"Borehole BS7882 location",
|
11
|
-
"identifier":[
|
12
|
-
{
|
13
|
-
"identifier":"US 01",
|
14
|
-
"authority":{
|
15
|
-
"title":"Global Terrestrial Network for Permafrost Identifiers",
|
16
|
-
"responsibleParty":[
|
17
|
-
{
|
18
|
-
"contactId":"8",
|
19
|
-
"role":"originator"
|
20
|
-
}
|
21
|
-
],
|
22
|
-
"onlineResource":[
|
23
|
-
{
|
24
|
-
"uri":"http://www.gtnp.org"
|
25
|
-
}
|
26
|
-
]
|
27
|
-
}
|
28
|
-
},
|
29
|
-
{
|
30
|
-
"identifier":"ATI",
|
31
|
-
"authority":{
|
32
|
-
"title":"US Geological Survey borehole identifier",
|
33
|
-
"responsibleParty":[
|
34
|
-
{
|
35
|
-
"contactId":"3",
|
36
|
-
"role":"originator"
|
37
|
-
}
|
38
|
-
],
|
39
|
-
"onlineResource":[
|
40
|
-
{
|
41
|
-
"uri":"http://data.usgs.gov/climateMonitoring/region/show?region=alaska"
|
42
|
-
}
|
43
|
-
]
|
44
|
-
}
|
45
|
-
}
|
46
|
-
]
|
47
|
-
},
|
48
|
-
"geometry":{
|
49
|
-
"type":"Point",
|
50
|
-
"coordinates":[
|
51
|
-
-164.87402357161,
|
52
|
-
59.165040850639
|
53
|
-
]
|
54
|
-
},
|
55
|
-
"crs":{
|
56
|
-
"type":"name",
|
57
|
-
"properties":{
|
58
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
59
|
-
}
|
60
|
-
}
|
61
|
-
},
|
62
|
-
{
|
63
|
-
"type":"Feature",
|
64
|
-
"id":"point100",
|
65
|
-
"properties":{
|
66
|
-
"identifier":[
|
67
|
-
{
|
68
|
-
"identifier":"PNT-12346",
|
69
|
-
"authority":{
|
70
|
-
"title":"Global Terrestrial Network for Permafrost Identifiers",
|
71
|
-
"onlineResource":[
|
72
|
-
{
|
73
|
-
"uri":"http://www.gtnp.org"
|
74
|
-
}
|
75
|
-
]
|
76
|
-
}
|
77
|
-
}
|
78
|
-
],
|
79
|
-
"name":"BS999",
|
80
|
-
"description":"Sea buoy BS999 location"
|
81
|
-
},
|
82
|
-
"geometry":{
|
83
|
-
"type":"Point",
|
84
|
-
"coordinates":[
|
85
|
-
-164.87302357161,
|
86
|
-
59.145040850639
|
87
|
-
]
|
88
|
-
},
|
89
|
-
"crs":{
|
90
|
-
"type":"name",
|
91
|
-
"properties":{
|
92
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
93
|
-
}
|
94
|
-
}
|
95
|
-
}
|
96
|
-
]
|
97
|
-
},
|
98
|
-
{
|
99
|
-
"description":"List of Points",
|
100
|
-
"geographicElement":[
|
101
|
-
{
|
102
|
-
"type":"Feature",
|
103
|
-
"bbox":[
|
104
|
-
-164.88550989974,
|
105
|
-
59.159712874412,
|
106
|
-
-164.86353724349,
|
107
|
-
59.169368826866
|
108
|
-
],
|
109
|
-
"id":"pointlist1",
|
110
|
-
"properties":{
|
111
|
-
"name":"Fishin' spots",
|
112
|
-
"description":"These points have shared attributes",
|
113
|
-
"includesData":true
|
114
|
-
},
|
115
|
-
"geometry":{
|
116
|
-
"type":"MultiPoint",
|
117
|
-
"coordinates":[
|
118
|
-
[
|
119
|
-
-164.87402357161,
|
120
|
-
59.165040850639
|
121
|
-
],
|
122
|
-
[
|
123
|
-
-164.87502357161,
|
124
|
-
59.164040850639
|
125
|
-
],
|
126
|
-
[
|
127
|
-
-164.88387053359,
|
128
|
-
59.161207759012
|
129
|
-
]
|
130
|
-
]
|
131
|
-
},
|
132
|
-
"crs":{
|
133
|
-
"type":"name",
|
134
|
-
"properties":{
|
135
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
136
|
-
}
|
137
|
-
}
|
138
|
-
}
|
139
|
-
]
|
140
|
-
},
|
141
|
-
{
|
142
|
-
"description":"List of Points with attributes",
|
143
|
-
"geographicElement":[
|
144
|
-
{
|
145
|
-
"type":"FeatureCollection",
|
146
|
-
"id":"multiPt1",
|
147
|
-
"bbox":[
|
148
|
-
-164.88550989974,
|
149
|
-
59.159712874412,
|
150
|
-
-164.86353724349,
|
151
|
-
59.169368826866
|
152
|
-
],
|
153
|
-
"properties":{
|
154
|
-
"name":"A FeatureCollection(points)",
|
155
|
-
"description":"represents GML MultiGeometry"
|
156
|
-
},
|
157
|
-
"crs":{
|
158
|
-
"type":"name",
|
159
|
-
"properties":{
|
160
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
161
|
-
}
|
162
|
-
},
|
163
|
-
"features":[
|
164
|
-
{
|
165
|
-
"type":"Feature",
|
166
|
-
"id":"point010",
|
167
|
-
"properties":{
|
168
|
-
"identifier":[
|
169
|
-
{
|
170
|
-
"identifier":"PNT-12345",
|
171
|
-
"authority":{
|
172
|
-
"title":"Global Terrestrial Network for Permafrost Identifiers",
|
173
|
-
"onlineResource":[
|
174
|
-
{
|
175
|
-
"uri":"http://www.gtnp.org"
|
176
|
-
}
|
177
|
-
]
|
178
|
-
}
|
179
|
-
}
|
180
|
-
],
|
181
|
-
"name":"BS7882",
|
182
|
-
"description":"point valid on or after a specific date",
|
183
|
-
"temporalElement":{
|
184
|
-
"date":[
|
185
|
-
"2011-09-15",
|
186
|
-
"2012-08-14"
|
187
|
-
]
|
188
|
-
}
|
189
|
-
},
|
190
|
-
"geometry":{
|
191
|
-
"type":"Point",
|
192
|
-
"coordinates":[
|
193
|
-
-164.88550989974,
|
194
|
-
59.179712874412
|
195
|
-
]
|
196
|
-
}
|
197
|
-
},
|
198
|
-
{
|
199
|
-
"type":"Feature",
|
200
|
-
"id":"point012",
|
201
|
-
"properties":{
|
202
|
-
"description":"point valid on or after a specific date",
|
203
|
-
"temporalElement":{
|
204
|
-
"timeInstant":[
|
205
|
-
{
|
206
|
-
"description":"ground condition",
|
207
|
-
"timePosition":"2012-07-15T08:05:00-09:00"
|
208
|
-
}
|
209
|
-
]
|
210
|
-
}
|
211
|
-
},
|
212
|
-
"geometry":{
|
213
|
-
"type":"Point",
|
214
|
-
"coordinates":[
|
215
|
-
-164.87550989974,
|
216
|
-
59.209712874412
|
217
|
-
]
|
218
|
-
}
|
219
|
-
},
|
220
|
-
{
|
221
|
-
"type":"Feature",
|
222
|
-
"id":"point013",
|
223
|
-
"properties":{
|
224
|
-
"description":"point valid over a time period",
|
225
|
-
"temporalElement":{
|
226
|
-
"timePeriod":[
|
227
|
-
{
|
228
|
-
"beginPosition":"2013-08-24T08:05:00",
|
229
|
-
"endPosition":"2013-10-04"
|
230
|
-
}
|
231
|
-
]
|
232
|
-
}
|
233
|
-
},
|
234
|
-
"geometry":{
|
235
|
-
"type":"Point",
|
236
|
-
"coordinates":[
|
237
|
-
-164.89650989974,
|
238
|
-
59.249712874412
|
239
|
-
]
|
240
|
-
}
|
241
|
-
}
|
242
|
-
]
|
243
|
-
}
|
244
|
-
]
|
245
|
-
}
|
246
|
-
]
|
@@ -1,353 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"description":"BBOX only",
|
4
|
-
"geographicElement":[
|
5
|
-
{
|
6
|
-
"type":"Feature",
|
7
|
-
"bbox":[
|
8
|
-
-148.1764,
|
9
|
-
57.01428,
|
10
|
-
-132.821,
|
11
|
-
60.917
|
12
|
-
],
|
13
|
-
"geometry":null,
|
14
|
-
"properties":{
|
15
|
-
"includesData":true,
|
16
|
-
"description":"Gulf of Alaska"
|
17
|
-
},
|
18
|
-
"crs":{
|
19
|
-
"type":"link",
|
20
|
-
"properties":{
|
21
|
-
"href":"http://spatialreference.org/ref/epsg/4326/proj4/",
|
22
|
-
"type":"proj4"
|
23
|
-
}
|
24
|
-
}
|
25
|
-
}
|
26
|
-
],
|
27
|
-
"temporalElement":{
|
28
|
-
"timeInstant":[
|
29
|
-
{
|
30
|
-
"id":"ti-001",
|
31
|
-
"description":"ground condition",
|
32
|
-
"timePosition":"2012-07-15T08:05:00.0+09:00"
|
33
|
-
}
|
34
|
-
]
|
35
|
-
},
|
36
|
-
"verticalElement":[
|
37
|
-
{
|
38
|
-
"minimumValue":-500,
|
39
|
-
"maximumValue":0,
|
40
|
-
"verticalCRSTitle":"NAVD88 depth",
|
41
|
-
"verticalCRSUri":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::6357"
|
42
|
-
}
|
43
|
-
]
|
44
|
-
},
|
45
|
-
{
|
46
|
-
"description":"Polygon with BBOX",
|
47
|
-
"geographicElement":[
|
48
|
-
{
|
49
|
-
"type":"Feature",
|
50
|
-
"id":"unique1",
|
51
|
-
"bbox":[
|
52
|
-
-148.1764,
|
53
|
-
57.01428,
|
54
|
-
-132.821,
|
55
|
-
60.917
|
56
|
-
],
|
57
|
-
"geometry":{
|
58
|
-
"type":"Polygon",
|
59
|
-
"coordinates":[
|
60
|
-
[
|
61
|
-
[
|
62
|
-
-139.388046,
|
63
|
-
59.828561
|
64
|
-
],
|
65
|
-
[
|
66
|
-
-140.882186,
|
67
|
-
59.839602
|
68
|
-
],
|
69
|
-
[
|
70
|
-
-143.101425,
|
71
|
-
60.22375
|
72
|
-
],
|
73
|
-
[
|
74
|
-
-147.056503,
|
75
|
-
60.829147
|
76
|
-
],
|
77
|
-
[
|
78
|
-
-148.902206,
|
79
|
-
59.982807
|
80
|
-
],
|
81
|
-
[
|
82
|
-
-148.792343,
|
83
|
-
57.944338
|
84
|
-
],
|
85
|
-
[
|
86
|
-
-134.576034,
|
87
|
-
57.663361
|
88
|
-
]
|
89
|
-
]
|
90
|
-
]
|
91
|
-
},
|
92
|
-
"properties":{
|
93
|
-
"includesData":true,
|
94
|
-
"description":"Gulf of Alaska"
|
95
|
-
},
|
96
|
-
"crs":{
|
97
|
-
"type":"name",
|
98
|
-
"properties":{
|
99
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
100
|
-
}
|
101
|
-
}
|
102
|
-
},
|
103
|
-
{
|
104
|
-
"type":"Feature",
|
105
|
-
"id":"unique101",
|
106
|
-
"bbox":[
|
107
|
-
-97.067240989074,
|
108
|
-
18.556394455134,
|
109
|
-
-80.807475364074,
|
110
|
-
29.366941330134
|
111
|
-
],
|
112
|
-
"geometry":{
|
113
|
-
"type":"Polygon",
|
114
|
-
"coordinates":[
|
115
|
-
[
|
116
|
-
[
|
117
|
-
-84.059428489074,
|
118
|
-
29.366941330134
|
119
|
-
],
|
120
|
-
[
|
121
|
-
-97.067240989074,
|
122
|
-
28.048581955134
|
123
|
-
],
|
124
|
-
[
|
125
|
-
-95.397319114074,
|
126
|
-
18.556394455134
|
127
|
-
],
|
128
|
-
[
|
129
|
-
-80.895365989074,
|
130
|
-
24.620847580134
|
131
|
-
],
|
132
|
-
[
|
133
|
-
-80.807475364074,
|
134
|
-
24.708738205134
|
135
|
-
],
|
136
|
-
[
|
137
|
-
-84.059428489074,
|
138
|
-
29.366941330134
|
139
|
-
]
|
140
|
-
]
|
141
|
-
]
|
142
|
-
},
|
143
|
-
"properties":{
|
144
|
-
"includesData":false,
|
145
|
-
"description":"Gulf of Mexico",
|
146
|
-
"text":"Whatever I want."
|
147
|
-
},
|
148
|
-
"crs":{
|
149
|
-
"type":"name",
|
150
|
-
"properties":{
|
151
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
152
|
-
}
|
153
|
-
}
|
154
|
-
}
|
155
|
-
],
|
156
|
-
"temporalElement":{
|
157
|
-
"timePeriod":[
|
158
|
-
{
|
159
|
-
"id":"tp-001",
|
160
|
-
"description":"Ground Condition",
|
161
|
-
"beginPosition":"1987-05-16T16:05:00",
|
162
|
-
"endPosition":"2011-12"
|
163
|
-
},
|
164
|
-
{
|
165
|
-
"id":"tp-101",
|
166
|
-
"description":"Below Ground Condition",
|
167
|
-
"beginPosition":"1987-08-13T16:05:00",
|
168
|
-
"endPosition":"2012-12-12"
|
169
|
-
}
|
170
|
-
]
|
171
|
-
},
|
172
|
-
"verticalElement":[
|
173
|
-
{
|
174
|
-
"minimumValue":0,
|
175
|
-
"maximumValue":1000,
|
176
|
-
"verticalCRSTitle":"NAVD88 height",
|
177
|
-
"verticalCRSUri":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5703"
|
178
|
-
},
|
179
|
-
{
|
180
|
-
"minimumValue":1500,
|
181
|
-
"maximumValue":0,
|
182
|
-
"verticalCRSTitle":"NAVD88 depth",
|
183
|
-
"verticalCRSUri":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::6357"
|
184
|
-
}
|
185
|
-
]
|
186
|
-
},
|
187
|
-
{
|
188
|
-
"description":"A feature collection with just polygons",
|
189
|
-
"geographicElement":[
|
190
|
-
{
|
191
|
-
"type":"FeatureCollection",
|
192
|
-
"id":"unique2",
|
193
|
-
"bbox":[
|
194
|
-
-149.89603182812,
|
195
|
-
61.215716023773,
|
196
|
-
-149.87405917187,
|
197
|
-
61.225371976227
|
198
|
-
],
|
199
|
-
"properties":{
|
200
|
-
"name":"A FeatureCollection(polygons)",
|
201
|
-
"description":"represents GML MultiGeometry",
|
202
|
-
"includesData":true
|
203
|
-
},
|
204
|
-
"crs":{
|
205
|
-
"type":"name",
|
206
|
-
"properties":{
|
207
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
208
|
-
}
|
209
|
-
},
|
210
|
-
"features":[
|
211
|
-
{
|
212
|
-
"type":"Feature",
|
213
|
-
"id":"unique3",
|
214
|
-
"geometry":{
|
215
|
-
"type":"Polygon",
|
216
|
-
"coordinates":[
|
217
|
-
[
|
218
|
-
[
|
219
|
-
-149.880796,
|
220
|
-
61.21988
|
221
|
-
],
|
222
|
-
[
|
223
|
-
-149.880625,
|
224
|
-
61.221305
|
225
|
-
],
|
226
|
-
[
|
227
|
-
-149.889386,
|
228
|
-
61.221346
|
229
|
-
],
|
230
|
-
[
|
231
|
-
-149.880796,
|
232
|
-
61.21988
|
233
|
-
]
|
234
|
-
],
|
235
|
-
[
|
236
|
-
[
|
237
|
-
-149.8807,
|
238
|
-
61.21990
|
239
|
-
],
|
240
|
-
[
|
241
|
-
-149.880627,
|
242
|
-
61.221300
|
243
|
-
],
|
244
|
-
[
|
245
|
-
-149.8809,
|
246
|
-
61.221300
|
247
|
-
],
|
248
|
-
[
|
249
|
-
-149.8807,
|
250
|
-
61.21990
|
251
|
-
]
|
252
|
-
],
|
253
|
-
[
|
254
|
-
[
|
255
|
-
-149.889300,
|
256
|
-
61.221300
|
257
|
-
],
|
258
|
-
[
|
259
|
-
-149.889382,
|
260
|
-
61.221345
|
261
|
-
],
|
262
|
-
[
|
263
|
-
-149.889382,
|
264
|
-
61.221445
|
265
|
-
],
|
266
|
-
[
|
267
|
-
-149.889300,
|
268
|
-
61.221300
|
269
|
-
]
|
270
|
-
]
|
271
|
-
]
|
272
|
-
},
|
273
|
-
"properties":{
|
274
|
-
"name":"Buttress Park sampling location",
|
275
|
-
"description":"Boundary of area in downtown Anchorage where sampling occurred"
|
276
|
-
}
|
277
|
-
},
|
278
|
-
{
|
279
|
-
"type":"Feature",
|
280
|
-
"id":"unique4",
|
281
|
-
"geometry":{
|
282
|
-
"type":"Polygon",
|
283
|
-
"coordinates":[
|
284
|
-
[
|
285
|
-
[
|
286
|
-
-149.888221,
|
287
|
-
61.219643
|
288
|
-
],
|
289
|
-
[
|
290
|
-
-149.889466,
|
291
|
-
61.219643
|
292
|
-
],
|
293
|
-
[
|
294
|
-
-149.889251,
|
295
|
-
61.219973
|
296
|
-
],
|
297
|
-
[
|
298
|
-
-149.887835,
|
299
|
-
61.219952
|
300
|
-
],
|
301
|
-
[
|
302
|
-
-149.888221,
|
303
|
-
61.219643
|
304
|
-
]
|
305
|
-
]
|
306
|
-
]
|
307
|
-
},
|
308
|
-
"properties":{
|
309
|
-
"includesData":false,
|
310
|
-
"name":"Equipment staging area",
|
311
|
-
"description":"Area where sampling equipment was stored, no sampling occurred (Note:includesData should be ignored here. Would need to move this feature into another geographicElement.)"
|
312
|
-
}
|
313
|
-
}
|
314
|
-
]
|
315
|
-
}
|
316
|
-
],
|
317
|
-
"temporalElement":{
|
318
|
-
"timePeriod":[
|
319
|
-
{
|
320
|
-
"id":"tp-002",
|
321
|
-
"beginPosition":"2013-08-24T08:05:00",
|
322
|
-
"endPosition":"2013-10-04"
|
323
|
-
},
|
324
|
-
{
|
325
|
-
"id":"tp-004",
|
326
|
-
"beginPosition":"2010-08-24T08:05:00",
|
327
|
-
"endPosition":"2014-10-04",
|
328
|
-
"description":"The best days of my life"
|
329
|
-
}
|
330
|
-
],
|
331
|
-
"timeInstant":[
|
332
|
-
{
|
333
|
-
"id":"ti-002",
|
334
|
-
"description":"below ground condition",
|
335
|
-
"timePosition":"2012-07-15T08:05:00.0+09:00"
|
336
|
-
},
|
337
|
-
{
|
338
|
-
"id":"ti-003",
|
339
|
-
"description":"below ground condition",
|
340
|
-
"timePosition":"2012-08-16T08:06:00.0+09:00"
|
341
|
-
}
|
342
|
-
]
|
343
|
-
},
|
344
|
-
"verticalElement":[
|
345
|
-
{
|
346
|
-
"minimumValue":60.5,
|
347
|
-
"maximumValue":110.68,
|
348
|
-
"verticalCRSTitle":"NAVD88 height (ftUS)",
|
349
|
-
"verticalCRSUri":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:axis-name:EPSG::9904"
|
350
|
-
}
|
351
|
-
]
|
352
|
-
}
|
353
|
-
]
|