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/geojson.json
DELETED
@@ -1,446 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"type":"FeatureCollection",
|
4
|
-
"id":"multiPt1",
|
5
|
-
"bbox":[
|
6
|
-
-164.88550989974,
|
7
|
-
59.159712874412,
|
8
|
-
-164.86353724349,
|
9
|
-
59.169368826866
|
10
|
-
],
|
11
|
-
"properties":{
|
12
|
-
"name":"A FeatureCollection(points)",
|
13
|
-
"description":"represents GML MultiGeometry"
|
14
|
-
},
|
15
|
-
"crs":{
|
16
|
-
"type":"name",
|
17
|
-
"properties":{
|
18
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
19
|
-
}
|
20
|
-
},
|
21
|
-
"features":[
|
22
|
-
{
|
23
|
-
"type":"Feature",
|
24
|
-
"id":"point010",
|
25
|
-
"properties":{
|
26
|
-
"identifier":[
|
27
|
-
{
|
28
|
-
"identifier":"PNT-12345",
|
29
|
-
"authority":{
|
30
|
-
"title":"Global Terrestrial Network for Permafrost Identifiers",
|
31
|
-
"onlineResource":[
|
32
|
-
{
|
33
|
-
"uri":"http://www.gtnp.org"
|
34
|
-
}
|
35
|
-
]
|
36
|
-
}
|
37
|
-
}
|
38
|
-
],
|
39
|
-
"name":"BS7882",
|
40
|
-
"description":"point valid on or after a specific date",
|
41
|
-
"date":"2011-09-15"
|
42
|
-
},
|
43
|
-
"geometry":{
|
44
|
-
"type":"Point",
|
45
|
-
"coordinates":[
|
46
|
-
-164.88550989974,
|
47
|
-
59.179712874412
|
48
|
-
]
|
49
|
-
}
|
50
|
-
},
|
51
|
-
{
|
52
|
-
"type":"Feature",
|
53
|
-
"id":"point012",
|
54
|
-
"properties":{
|
55
|
-
"description":"point valid on or after a specific date",
|
56
|
-
"timeInstant":[
|
57
|
-
{
|
58
|
-
"description":"ground condition",
|
59
|
-
"timePosition":"2012-07-15T08:05:00-09:00"
|
60
|
-
}
|
61
|
-
]
|
62
|
-
},
|
63
|
-
"geometry":{
|
64
|
-
"type":"Point",
|
65
|
-
"coordinates":[
|
66
|
-
-164.87550989974,
|
67
|
-
59.209712874412
|
68
|
-
]
|
69
|
-
}
|
70
|
-
},
|
71
|
-
{
|
72
|
-
"type":"Feature",
|
73
|
-
"id":"point013",
|
74
|
-
"properties":{
|
75
|
-
"description":"point valid over a time period",
|
76
|
-
"temporalElement":{
|
77
|
-
"timePeriod":[
|
78
|
-
{
|
79
|
-
"beginPosition":"2013-08-24T08:05:00",
|
80
|
-
"endPosition":"2013-10-04"
|
81
|
-
}
|
82
|
-
]
|
83
|
-
}
|
84
|
-
},
|
85
|
-
"geometry":{
|
86
|
-
"type":"Point",
|
87
|
-
"coordinates":[
|
88
|
-
-164.89650989974,
|
89
|
-
59.249712874412
|
90
|
-
]
|
91
|
-
}
|
92
|
-
}
|
93
|
-
]
|
94
|
-
},
|
95
|
-
{
|
96
|
-
"type":"Feature",
|
97
|
-
"bbox":[
|
98
|
-
-164.88550989974,
|
99
|
-
59.159712874412,
|
100
|
-
-164.86353724349,
|
101
|
-
59.169368826866
|
102
|
-
],
|
103
|
-
"id":"pointlist1",
|
104
|
-
"properties":{
|
105
|
-
"name":"Fishin' spots",
|
106
|
-
"description":"These points have shared attributes",
|
107
|
-
"includesData":true
|
108
|
-
},
|
109
|
-
"geometry":{
|
110
|
-
"type":"MultiPoint",
|
111
|
-
"coordinates":[
|
112
|
-
[
|
113
|
-
-164.87402357161,
|
114
|
-
59.165040850639
|
115
|
-
],
|
116
|
-
[
|
117
|
-
-164.87502357161,
|
118
|
-
59.164040850639
|
119
|
-
],
|
120
|
-
[
|
121
|
-
-164.88387053359,
|
122
|
-
59.161207759012
|
123
|
-
]
|
124
|
-
]
|
125
|
-
},
|
126
|
-
"crs":{
|
127
|
-
"type":"name",
|
128
|
-
"properties":{
|
129
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
130
|
-
}
|
131
|
-
}
|
132
|
-
},
|
133
|
-
{
|
134
|
-
"type":"Feature",
|
135
|
-
"id":"point1",
|
136
|
-
"properties":{
|
137
|
-
"identifier":[
|
138
|
-
{
|
139
|
-
"identifier":"PNT-12345",
|
140
|
-
"authority":{
|
141
|
-
"title":"Global Terrestrial Network for Permafrost Identifiers",
|
142
|
-
"onlineResource":[
|
143
|
-
{
|
144
|
-
"uri":"http://www.gtnp.org"
|
145
|
-
}
|
146
|
-
]
|
147
|
-
}
|
148
|
-
}
|
149
|
-
],
|
150
|
-
"name":"BS7882",
|
151
|
-
"description":"Sea buoy BS7882 location"
|
152
|
-
},
|
153
|
-
"geometry":{
|
154
|
-
"type":"Point",
|
155
|
-
"coordinates":[
|
156
|
-
-164.87402357161,
|
157
|
-
59.165040850639
|
158
|
-
]
|
159
|
-
},
|
160
|
-
"crs":{
|
161
|
-
"type":"name",
|
162
|
-
"properties":{
|
163
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
164
|
-
}
|
165
|
-
}
|
166
|
-
},
|
167
|
-
{
|
168
|
-
"type":"Feature",
|
169
|
-
"id":"point100",
|
170
|
-
"properties":{
|
171
|
-
"identifier":[
|
172
|
-
{
|
173
|
-
"identifier":"PNT-12346",
|
174
|
-
"authority":{
|
175
|
-
"title":"Global Terrestrial Network for Permafrost Identifiers",
|
176
|
-
"onlineResource":[
|
177
|
-
{
|
178
|
-
"uri":"http://www.gtnp.org"
|
179
|
-
}
|
180
|
-
]
|
181
|
-
}
|
182
|
-
}
|
183
|
-
],
|
184
|
-
"name":"BS999",
|
185
|
-
"description":"Sea buoy BS999 location"
|
186
|
-
},
|
187
|
-
"geometry":{
|
188
|
-
"type":"Point",
|
189
|
-
"coordinates":[
|
190
|
-
-164.87302357161,
|
191
|
-
59.145040850639
|
192
|
-
]
|
193
|
-
},
|
194
|
-
"crs":{
|
195
|
-
"type":"name",
|
196
|
-
"properties":{
|
197
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
198
|
-
}
|
199
|
-
}
|
200
|
-
},
|
201
|
-
{
|
202
|
-
"type":"FeatureCollection",
|
203
|
-
"id":"multiline1",
|
204
|
-
"bbox":[
|
205
|
-
-157.07025098484,
|
206
|
-
70.022012234173,
|
207
|
-
35.2,
|
208
|
-
-150.76174075893,
|
209
|
-
71.109331363597,
|
210
|
-
125.8
|
211
|
-
],
|
212
|
-
"properties":{
|
213
|
-
"name":"A FeatureCollection(lines)",
|
214
|
-
"description":"represents GML MultiGeometry"
|
215
|
-
},
|
216
|
-
"crs":{
|
217
|
-
"type":"name",
|
218
|
-
"properties":{
|
219
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
220
|
-
}
|
221
|
-
},
|
222
|
-
"features":[
|
223
|
-
{
|
224
|
-
"type":"Feature",
|
225
|
-
"id":"multiLine001",
|
226
|
-
"properties":{
|
227
|
-
"name":"Josh",
|
228
|
-
"description":"First line in multiline object",
|
229
|
-
"date":"2011-09-15"
|
230
|
-
},
|
231
|
-
"geometry":{
|
232
|
-
"type":"LineString",
|
233
|
-
"coordinates":[
|
234
|
-
[
|
235
|
-
-157.0702509848438,
|
236
|
-
71.10933136359692,
|
237
|
-
35.2
|
238
|
-
],
|
239
|
-
[
|
240
|
-
-154.6526281903968,
|
241
|
-
70.40820968995817,
|
242
|
-
68.1
|
243
|
-
],
|
244
|
-
[
|
245
|
-
-150.7617407589279,
|
246
|
-
70.02201223417278,
|
247
|
-
84.7
|
248
|
-
],
|
249
|
-
[
|
250
|
-
-150.8371960238169,
|
251
|
-
70.43210058905156,
|
252
|
-
125.8
|
253
|
-
],
|
254
|
-
[
|
255
|
-
-152.2049884417053,
|
256
|
-
70.87235618158296,
|
257
|
-
116.0
|
258
|
-
]
|
259
|
-
]
|
260
|
-
}
|
261
|
-
},
|
262
|
-
{
|
263
|
-
"type":"Feature",
|
264
|
-
"id":"multiLine001",
|
265
|
-
"properties":{
|
266
|
-
"name":"Chris",
|
267
|
-
"description":"Second line in multiline object"
|
268
|
-
},
|
269
|
-
"geometry":{
|
270
|
-
"type":"LineString",
|
271
|
-
"coordinates":[
|
272
|
-
[
|
273
|
-
-154.5708878990441,
|
274
|
-
71.04082324476376,
|
275
|
-
36.9
|
276
|
-
],
|
277
|
-
[
|
278
|
-
-150.7617407589279,
|
279
|
-
70.02201223417278,
|
280
|
-
84.7
|
281
|
-
],
|
282
|
-
[
|
283
|
-
-154.6526281903968,
|
284
|
-
70.40820968995817,
|
285
|
-
68.1
|
286
|
-
],
|
287
|
-
[
|
288
|
-
-157.0702509848438,
|
289
|
-
71.10933136359692,
|
290
|
-
35.2
|
291
|
-
]
|
292
|
-
]
|
293
|
-
}
|
294
|
-
},
|
295
|
-
{
|
296
|
-
"type":"Feature",
|
297
|
-
"id":"multiLine003",
|
298
|
-
"properties":{
|
299
|
-
"name":"Allison",
|
300
|
-
"description":"Third line in multiline object"
|
301
|
-
},
|
302
|
-
"geometry":{
|
303
|
-
"type":"LineString",
|
304
|
-
"coordinates":[
|
305
|
-
[
|
306
|
-
-150.7617407589279,
|
307
|
-
70.02201223417278,
|
308
|
-
84.7
|
309
|
-
],
|
310
|
-
[
|
311
|
-
-154.6526281903968,
|
312
|
-
70.40820968995817,
|
313
|
-
68.1
|
314
|
-
]
|
315
|
-
]
|
316
|
-
}
|
317
|
-
}
|
318
|
-
]
|
319
|
-
},
|
320
|
-
{
|
321
|
-
"type":"FeatureCollection",
|
322
|
-
"id":"unique2",
|
323
|
-
"bbox":[
|
324
|
-
-149.89603182812,
|
325
|
-
61.215716023773,
|
326
|
-
-149.87405917187,
|
327
|
-
61.225371976227
|
328
|
-
],
|
329
|
-
"properties":{
|
330
|
-
"name":"A FeatureCollection(polygons)",
|
331
|
-
"description":"represents GML MultiGeometry",
|
332
|
-
"includesData":true
|
333
|
-
},
|
334
|
-
"crs":{
|
335
|
-
"type":"name",
|
336
|
-
"properties":{
|
337
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
338
|
-
}
|
339
|
-
},
|
340
|
-
"features":[
|
341
|
-
{
|
342
|
-
"type":"Feature",
|
343
|
-
"id":"unique3",
|
344
|
-
"geometry":{
|
345
|
-
"type":"Polygon",
|
346
|
-
"coordinates":[
|
347
|
-
[
|
348
|
-
[
|
349
|
-
-149.880796,
|
350
|
-
61.21988
|
351
|
-
],
|
352
|
-
[
|
353
|
-
-149.880625,
|
354
|
-
61.221305
|
355
|
-
],
|
356
|
-
[
|
357
|
-
-149.889386,
|
358
|
-
61.221346
|
359
|
-
],
|
360
|
-
[
|
361
|
-
-149.880796,
|
362
|
-
61.21988
|
363
|
-
]
|
364
|
-
],
|
365
|
-
[
|
366
|
-
[
|
367
|
-
-149.8807,
|
368
|
-
61.21990
|
369
|
-
],
|
370
|
-
[
|
371
|
-
-149.880627,
|
372
|
-
61.221300
|
373
|
-
],
|
374
|
-
[
|
375
|
-
-149.8809,
|
376
|
-
61.221300
|
377
|
-
],
|
378
|
-
[
|
379
|
-
-149.8807,
|
380
|
-
61.21990
|
381
|
-
]
|
382
|
-
],
|
383
|
-
[
|
384
|
-
[
|
385
|
-
-149.889300,
|
386
|
-
61.221300
|
387
|
-
],
|
388
|
-
[
|
389
|
-
-149.889382,
|
390
|
-
61.221345
|
391
|
-
],
|
392
|
-
[
|
393
|
-
-149.889382,
|
394
|
-
61.221445
|
395
|
-
],
|
396
|
-
[
|
397
|
-
-149.889300,
|
398
|
-
61.221300
|
399
|
-
]
|
400
|
-
]
|
401
|
-
]
|
402
|
-
},
|
403
|
-
"properties":{
|
404
|
-
"name":"Buttress Park sampling location",
|
405
|
-
"description":"Boundary of area in downtown Anchorage where sampling occurred"
|
406
|
-
}
|
407
|
-
},
|
408
|
-
{
|
409
|
-
"type":"Feature",
|
410
|
-
"id":"unique4",
|
411
|
-
"geometry":{
|
412
|
-
"type":"Polygon",
|
413
|
-
"coordinates":[
|
414
|
-
[
|
415
|
-
[
|
416
|
-
-149.888221,
|
417
|
-
61.219643
|
418
|
-
],
|
419
|
-
[
|
420
|
-
-149.889466,
|
421
|
-
61.219643
|
422
|
-
],
|
423
|
-
[
|
424
|
-
-149.889251,
|
425
|
-
61.219973
|
426
|
-
],
|
427
|
-
[
|
428
|
-
-149.887835,
|
429
|
-
61.219952
|
430
|
-
],
|
431
|
-
[
|
432
|
-
-149.888221,
|
433
|
-
61.219643
|
434
|
-
]
|
435
|
-
]
|
436
|
-
]
|
437
|
-
},
|
438
|
-
"properties":{
|
439
|
-
"includesData":false,
|
440
|
-
"name":"Equipment staging area",
|
441
|
-
"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.)"
|
442
|
-
}
|
443
|
-
}
|
444
|
-
]
|
445
|
-
}
|
446
|
-
]
|
@@ -1,28 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"fileName": "fileName",
|
4
|
-
"fileDescription": "fileDescription",
|
5
|
-
"fileType": "fileType",
|
6
|
-
"fileUri": "http://thisisanexample.com"
|
7
|
-
}, {
|
8
|
-
"fileName": "allRecs_callCounts_bowhead_2010.jpg",
|
9
|
-
"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.",
|
10
|
-
"fileType": "JPEG",
|
11
|
-
"fileUri": "http://www.workspace.aoos.org/files/28354/ACOUST_SND_CLIP_2008_11_Ed3.csv"
|
12
|
-
}, {
|
13
|
-
"fileName": "cross_section_perc_sommer_2010.png",
|
14
|
-
"fileDescription": ".",
|
15
|
-
"fileLink": "https://www.workspace.aoos.org/files/28349/ACOUST_AMBT_NOISE_2007_11_Ed3.csv"
|
16
|
-
}, {
|
17
|
-
"fileName": "pln40_perc_2010_01.png",
|
18
|
-
"fileType": "PNG",
|
19
|
-
"fileLink": "http://workspace.aoos.org/files/28344/ACOUST_MMP_2009_11_Ed3.csv"
|
20
|
-
}, {
|
21
|
-
"fileName": "pln40_spec_summer_2010.png",
|
22
|
-
"fileLink": "http://workspace.aoos.org/files/28339/ACOUST_ACQ_2009_11_Ed3.csv"
|
23
|
-
}, {
|
24
|
-
"fileName": "pln40_spec_summer_2010.png"
|
25
|
-
}
|
26
|
-
]
|
27
|
-
|
28
|
-
|
data/examples/gridInfo.json
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"numberOfDimensions": 2,
|
3
|
-
"dimension": [
|
4
|
-
{
|
5
|
-
"dimensionType": "column",
|
6
|
-
"dimensionSize": 800,
|
7
|
-
"resolution": 10,
|
8
|
-
"resolutionUnit": "Meter",
|
9
|
-
"dimensionTitle": "x-axis",
|
10
|
-
"dimensionDescription": "The x-axis."
|
11
|
-
},
|
12
|
-
{
|
13
|
-
"dimensionType": "row",
|
14
|
-
"dimensionSize": 600,
|
15
|
-
"resolution": 10,
|
16
|
-
"resolutionUnit": "Meter",
|
17
|
-
"dimensionTitle": "y-axis",
|
18
|
-
"dimensionDescription": "The y-axis."
|
19
|
-
}
|
20
|
-
],
|
21
|
-
"cellGeometry": "area",
|
22
|
-
"transformationParameterAvailability": false
|
23
|
-
}
|
@@ -1,90 +0,0 @@
|
|
1
|
-
"metadata": {
|
2
|
-
{
|
3
|
-
"hierarchyLevel": "attribute"
|
4
|
-
}
|
5
|
-
}
|
6
|
-
|
7
|
-
"metadata": {
|
8
|
-
{
|
9
|
-
"hierarchyLevel": "attributeType"
|
10
|
-
}
|
11
|
-
}
|
12
|
-
|
13
|
-
|
14
|
-
"metadata": {
|
15
|
-
{
|
16
|
-
"hierarchyLevel": "collectionHardware"
|
17
|
-
}
|
18
|
-
}
|
19
|
-
|
20
|
-
"metadata": {
|
21
|
-
{
|
22
|
-
"hierarchyLevel": "collectionSession"
|
23
|
-
}
|
24
|
-
}
|
25
|
-
|
26
|
-
"metadata": {
|
27
|
-
{
|
28
|
-
"hierarchyLevel": "dataset"
|
29
|
-
}
|
30
|
-
}
|
31
|
-
|
32
|
-
"metadata": {
|
33
|
-
{
|
34
|
-
"hierarchyLevel": "nonGeographicDataset"
|
35
|
-
}
|
36
|
-
}
|
37
|
-
|
38
|
-
"metadata": {
|
39
|
-
{
|
40
|
-
"hierarchyLevel": "dimensionGroup"
|
41
|
-
}
|
42
|
-
}
|
43
|
-
|
44
|
-
"metadata": {
|
45
|
-
{
|
46
|
-
"hierarchyLevel": "feature"
|
47
|
-
}
|
48
|
-
}
|
49
|
-
|
50
|
-
"metadata": {
|
51
|
-
{
|
52
|
-
"hierarchyLevel": "featureType"
|
53
|
-
}
|
54
|
-
}
|
55
|
-
|
56
|
-
"metadata": {
|
57
|
-
{
|
58
|
-
"hierarchyLevel": "propertyType"
|
59
|
-
}
|
60
|
-
}
|
61
|
-
|
62
|
-
"metadata": {
|
63
|
-
{
|
64
|
-
"hierarchyLevel": "fieldSession"
|
65
|
-
}
|
66
|
-
}
|
67
|
-
|
68
|
-
"metadata": {
|
69
|
-
{
|
70
|
-
"hierarchyLevel": "software"
|
71
|
-
}
|
72
|
-
}
|
73
|
-
|
74
|
-
"metadata": {
|
75
|
-
{
|
76
|
-
"hierarchyLevel": "service"
|
77
|
-
}
|
78
|
-
}
|
79
|
-
|
80
|
-
"metadata": {
|
81
|
-
{
|
82
|
-
"hierarchyLevel": "model"
|
83
|
-
}
|
84
|
-
}
|
85
|
-
|
86
|
-
"metadata": {
|
87
|
-
{
|
88
|
-
"hierarchyLevel": "tile"
|
89
|
-
}
|
90
|
-
}
|