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/resourceInfo.json
CHANGED
@@ -1,1264 +1,238 @@
|
|
1
|
-
[
|
2
|
-
|
3
|
-
|
4
|
-
"
|
5
|
-
"title":"Project Tracking System",
|
6
|
-
"date":[
|
7
|
-
{
|
8
|
-
"date":"2013-03-13",
|
9
|
-
"dateType":"creation"
|
10
|
-
}
|
11
|
-
],
|
12
|
-
"responsibleParty":[
|
13
|
-
{
|
14
|
-
"contactId":"1",
|
15
|
-
"role":"originator"
|
16
|
-
},
|
17
|
-
{
|
18
|
-
"contactId":"2",
|
19
|
-
"role":"publisher"
|
20
|
-
}
|
21
|
-
]
|
22
|
-
},
|
23
|
-
"resourceTimePeriod": {
|
24
|
-
"description": "Span of project activity",
|
25
|
-
"beginPosition": "2011-09-03",
|
26
|
-
"endPosition": "2014-11-15"
|
27
|
-
},
|
28
|
-
"pointOfContact":[
|
29
|
-
{
|
30
|
-
"contactId":"1",
|
31
|
-
"role":"custodian"
|
32
|
-
}
|
33
|
-
],
|
34
|
-
"abstract":"The Arctic LCC has developed a Project Tracking System(PTS) to assist with the management of projects. The PTS is used to track projects throughout all stages of development, from receipt of proposals through delivery of final products.",
|
35
|
-
"status":"onGoing",
|
36
|
-
"language":[
|
37
|
-
"eng; USA"
|
38
|
-
],
|
39
|
-
"resourceNativeFormat":[
|
40
|
-
{
|
41
|
-
"formatName":"ExtJS",
|
42
|
-
"version":"4.0.7"
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"formatName":"PostgreSQL",
|
46
|
-
"version":"9.1"
|
47
|
-
},
|
48
|
-
{
|
49
|
-
"formatName":"PHP",
|
50
|
-
"version":"5.3"
|
51
|
-
}
|
52
|
-
],
|
53
|
-
"keyword":[
|
54
|
-
{
|
55
|
-
"keyword":[
|
56
|
-
"Oceans > Ocean temperature > Thermocline",
|
57
|
-
"Oceans > Ocean Temperature > Water Temperature",
|
58
|
-
"Oceans > Ocean Heat Budget > Heat Flux"
|
59
|
-
],
|
60
|
-
"keywordType":"theme",
|
61
|
-
"thesaurus":{
|
62
|
-
"title":"NASA/Global Change Master Directory (GCMD) Earth Science Keywords.",
|
63
|
-
"date":[
|
64
|
-
{
|
65
|
-
"date":"2013-09-19",
|
66
|
-
"dateType":"revision"
|
67
|
-
}
|
68
|
-
],
|
69
|
-
"onlineResource":[
|
70
|
-
{
|
71
|
-
"uri":"http://gcmdservices.gsfc.nasa.gov/static/kms/sciencekeywords/sciencekeywords.csv"
|
72
|
-
}
|
73
|
-
],
|
74
|
-
"edition":"Version 8.0.0.0.0",
|
75
|
-
"responsibleParty":[
|
76
|
-
{
|
77
|
-
"contactId":"1",
|
78
|
-
"role":"originator"
|
79
|
-
},
|
80
|
-
{
|
81
|
-
"contactId":"2",
|
82
|
-
"role":"owner"
|
83
|
-
}
|
84
|
-
],
|
85
|
-
"presentationForm":[
|
86
|
-
"documentDigital"
|
87
|
-
],
|
88
|
-
"identifier":[
|
89
|
-
{
|
90
|
-
"type":"isbn",
|
91
|
-
"identifier":"HB12365.214"
|
92
|
-
},
|
93
|
-
{
|
94
|
-
"type":"issn",
|
95
|
-
"identifier":"0ab4-dd983c01"
|
96
|
-
}
|
97
|
-
]
|
98
|
-
}
|
99
|
-
}
|
100
|
-
]
|
1
|
+
[{
|
2
|
+
"resourceType": "resourceType",
|
3
|
+
"citation": {
|
4
|
+
"title": "title"
|
101
5
|
},
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
6
|
+
"abstract": "abstract",
|
7
|
+
"shortAbstract": "shortAbstract",
|
8
|
+
"purpose": "purpose",
|
9
|
+
"credit": [
|
10
|
+
"credit0",
|
11
|
+
"credit1"
|
12
|
+
],
|
13
|
+
"timePeriod": {
|
14
|
+
"startDateTime": "2016-11-01"
|
15
|
+
},
|
16
|
+
"status": [
|
17
|
+
"status0",
|
18
|
+
"status1"
|
19
|
+
],
|
20
|
+
"topicCategory": [
|
21
|
+
"topicCategory0",
|
22
|
+
"topicCategory1"
|
23
|
+
],
|
24
|
+
"pointOfContact": [{
|
25
|
+
"role": "role",
|
26
|
+
"timePeriod": [{
|
27
|
+
"startDateTime": "2016-10-14"
|
28
|
+
}],
|
29
|
+
"party": [{
|
30
|
+
"contactId": "individualId0"
|
31
|
+
}]
|
32
|
+
}, {
|
33
|
+
"role": "role2",
|
34
|
+
"timePeriod": [{
|
35
|
+
"startDateTime": "2016-10-14"
|
36
|
+
}],
|
37
|
+
"party": [{
|
38
|
+
"contactId": "individualId0"
|
39
|
+
}]
|
40
|
+
}],
|
41
|
+
"spatialReferenceSystem": [{
|
42
|
+
"type": "referenceSystemType0",
|
43
|
+
"systemIdentifier": {
|
44
|
+
"identifier": "identifier"
|
45
|
+
}
|
46
|
+
}, {
|
47
|
+
"type": "referenceSystemType1",
|
48
|
+
"systemIdentifier": {
|
49
|
+
"identifier": "identifier"
|
50
|
+
}
|
51
|
+
}],
|
52
|
+
"spatialRepresentationType": [
|
53
|
+
"spatialRepresentationType0",
|
54
|
+
"spatialRepresentationType1"
|
55
|
+
],
|
56
|
+
"spatialRepresentation": [{
|
57
|
+
"type": "grid",
|
58
|
+
"gridRepresentation": {
|
59
|
+
"numberOfDimensions": 9,
|
60
|
+
"dimension": [{
|
61
|
+
"dimensionType": "dimensionType",
|
62
|
+
"dimensionSize": 9
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"dimensionType": "dimensionType",
|
66
|
+
"dimensionSize": 9
|
125
67
|
}
|
126
68
|
],
|
127
|
-
"
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
69
|
+
"cellGeometry": "cellGeometry",
|
70
|
+
"transformationParameterAvailable": true
|
71
|
+
}
|
72
|
+
}, {
|
73
|
+
"type": "grid",
|
74
|
+
"gridRepresentation": {
|
75
|
+
"numberOfDimensions": 9,
|
76
|
+
"dimension": [{
|
77
|
+
"dimensionType": "dimensionType",
|
78
|
+
"dimensionSize": 9
|
79
|
+
}],
|
80
|
+
"cellGeometry": "cellGeometry",
|
81
|
+
"transformationParameterAvailable": true
|
82
|
+
}
|
83
|
+
}],
|
84
|
+
"spatialResolution": [{
|
85
|
+
"scaleFactor": 99999
|
86
|
+
}, {
|
87
|
+
"measure": {
|
88
|
+
"type": "distance",
|
89
|
+
"value": 99.9,
|
90
|
+
"unitOfMeasure": "unitOfMeasure"
|
91
|
+
}
|
92
|
+
}, {
|
93
|
+
"levelOfDetail": "levelOfDetail"
|
94
|
+
}],
|
95
|
+
"temporalResolution": [{
|
96
|
+
"years": 1
|
97
|
+
}, {
|
98
|
+
"seconds": 1
|
99
|
+
}],
|
100
|
+
"extent": [{
|
101
|
+
"description": "description0"
|
102
|
+
}, {
|
103
|
+
"description": "description1"
|
104
|
+
}],
|
105
|
+
"coverageDescription": [{
|
106
|
+
"coverageName": "coverageName0",
|
107
|
+
"coverageDescription": "coverageDescription0"
|
108
|
+
}, {
|
109
|
+
"coverageName": "coverageName1",
|
110
|
+
"coverageDescription": "coverageDescription1"
|
111
|
+
}],
|
112
|
+
"taxonomy": {
|
113
|
+
"taxonomicSystem": [{
|
114
|
+
"citation": {
|
115
|
+
"title": "title"
|
116
|
+
},
|
117
|
+
"modification": "modification"
|
118
|
+
}],
|
119
|
+
"identificationReference": [{
|
120
|
+
"identifier": "identifier0",
|
121
|
+
"namespace": "namespace0",
|
122
|
+
"version": "version0",
|
123
|
+
"description": "description0",
|
124
|
+
"authority": {
|
125
|
+
"title": "title0"
|
134
126
|
}
|
135
|
-
},
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
127
|
+
}, {
|
128
|
+
"identifier": "identifier1",
|
129
|
+
"namespace": "namespace1",
|
130
|
+
"version": "version1",
|
131
|
+
"description": "description1",
|
132
|
+
"authority": {
|
133
|
+
"title": "title1"
|
140
134
|
}
|
141
|
-
],
|
142
|
-
"
|
143
|
-
"
|
144
|
-
|
145
|
-
"
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
"
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
"
|
155
|
-
"
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
],
|
180
|
-
"
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
"specificUsage":"Bathymetry datasets developed for modeling physical oceanographic conditions in the Barrow Straight.",
|
213
|
-
"userContactInfo":[
|
214
|
-
{
|
215
|
-
"contactId":"1",
|
216
|
-
"role":"custodian"
|
217
|
-
}
|
218
|
-
]
|
219
|
-
}
|
220
|
-
],
|
221
|
-
"graphicOverview":[
|
222
|
-
{
|
223
|
-
"fileName":"allRecs_callCounts_bowhead_2010.jpg",
|
224
|
-
"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.",
|
225
|
-
"fileType":"JPEG",
|
226
|
-
"fileLink":"http://aoos.org/aoos-data-resources/bowhead_images2010_0114.jpg"
|
227
|
-
},
|
228
|
-
{
|
229
|
-
"fileName":"cross_section_perc_sommer_2010.png",
|
230
|
-
"fileDescription":"."
|
231
|
-
},
|
232
|
-
{
|
233
|
-
"fileName":"pln40_perc_2010_01.png",
|
234
|
-
"fileType":"PNG"
|
235
|
-
},
|
236
|
-
{
|
237
|
-
"fileName":"pln40_spec_summer_2010.png"
|
238
|
-
}
|
239
|
-
],
|
240
|
-
"constraint":{
|
241
|
-
"useLimitations":[
|
242
|
-
"not for suitable for navigation",
|
243
|
-
"draft version",
|
244
|
-
"not intended for general use",
|
245
|
-
"don't be a jerk"
|
246
|
-
],
|
247
|
-
"legalConstraint":[
|
248
|
-
{
|
249
|
-
"accessConstraint":[
|
250
|
-
"patentPending",
|
251
|
-
"restricted"
|
252
|
-
],
|
253
|
-
"useConstraint":[
|
254
|
-
"restricted"
|
255
|
-
],
|
256
|
-
"otherConstraint":[
|
257
|
-
"Legally barred from use for navigation."
|
258
|
-
]
|
259
|
-
},
|
260
|
-
{
|
261
|
-
"accessConstraint":[
|
262
|
-
"otherRestrictions"
|
263
|
-
],
|
264
|
-
"useConstraint":[
|
265
|
-
"otherRestrictions"
|
266
|
-
],
|
267
|
-
"otherConstraint":[
|
268
|
-
"Access Constraint: No one else. Use Constraint: None"
|
269
|
-
]
|
270
|
-
},
|
271
|
-
{
|
272
|
-
"accessConstraint":[
|
273
|
-
"copyright",
|
274
|
-
"patent",
|
275
|
-
"patentPending",
|
276
|
-
"trademark",
|
277
|
-
"license",
|
278
|
-
"intellectualPropertyRights",
|
279
|
-
"restricted",
|
280
|
-
"otherRestrictions"
|
281
|
-
]
|
282
|
-
}
|
283
|
-
],
|
284
|
-
"securityConstraint":[
|
285
|
-
{
|
286
|
-
"classification":"unclassified",
|
287
|
-
"userNote":"security clearance not required",
|
288
|
-
"classificationSystem":"none",
|
289
|
-
"handlingDescription":"this is how to handle things..."
|
290
|
-
},
|
291
|
-
{
|
292
|
-
"classification":"intellectualPropertyRights"
|
293
|
-
},
|
294
|
-
{
|
295
|
-
"classification":"secret",
|
296
|
-
"userNote":"shhhhh"
|
297
|
-
}
|
298
|
-
]
|
299
|
-
},
|
300
|
-
"taxonomy":{
|
301
|
-
"classificationSystem":[
|
302
|
-
{
|
303
|
-
"title":"Otter Record Survey",
|
304
|
-
"date":[
|
305
|
-
{
|
306
|
-
"date":"2000",
|
307
|
-
"dateType":"publication"
|
308
|
-
}
|
309
|
-
],
|
310
|
-
"responsibleParty":[
|
311
|
-
{
|
312
|
-
"contactId":"2",
|
313
|
-
"role":"publisher"
|
314
|
-
}
|
315
|
-
]
|
316
|
-
}
|
135
|
+
}],
|
136
|
+
"identificationProcedure": "identificationProcedure",
|
137
|
+
"taxonomicClassification": {
|
138
|
+
"taxonomicRank": "taxonomicRank",
|
139
|
+
"latinName": "latinName"
|
140
|
+
}
|
141
|
+
},
|
142
|
+
"graphicOverview": [{
|
143
|
+
"fileName": "fileName0"
|
144
|
+
}, {
|
145
|
+
"fileName": "fileName1"
|
146
|
+
}],
|
147
|
+
"resourceFormat": [{
|
148
|
+
"formatSpecification": {
|
149
|
+
"title": "title0"
|
150
|
+
}
|
151
|
+
}, {
|
152
|
+
"formatSpecification": {
|
153
|
+
"title": "title1"
|
154
|
+
}
|
155
|
+
}],
|
156
|
+
"keyword": [{
|
157
|
+
"keyword": [{
|
158
|
+
"keyword": "keyword00",
|
159
|
+
"keywordId": "keywordId00"
|
160
|
+
}, {
|
161
|
+
"keyword": "keyword01"
|
162
|
+
}],
|
163
|
+
"keywordType": "keywordType0",
|
164
|
+
"thesaurus": {
|
165
|
+
"title": "title"
|
166
|
+
}
|
167
|
+
}, {
|
168
|
+
"keyword": [{
|
169
|
+
"keyword": "keyword10",
|
170
|
+
"keywordId": "keywordId10"
|
171
|
+
}, {
|
172
|
+
"keyword": "keyword11"
|
173
|
+
}],
|
174
|
+
"keywordType": "keywordType1",
|
175
|
+
"thesaurus": {
|
176
|
+
"title": "title"
|
177
|
+
}
|
178
|
+
}],
|
179
|
+
"resourceUsage": [{
|
180
|
+
"specificUsage": "specificUsage",
|
181
|
+
"userDeterminedLimitation": "userDeterminedLimitation",
|
182
|
+
"limitationResponse": [
|
183
|
+
"limitationResponse0",
|
184
|
+
"limitationResponse1"
|
185
|
+
]
|
186
|
+
}, {
|
187
|
+
"specificUsage": "specificUsage1",
|
188
|
+
"userDeterminedLimitation": "userDeterminedLimitation1",
|
189
|
+
"limitationResponse": [
|
190
|
+
"limitationResponse0",
|
191
|
+
"limitationResponse1"
|
192
|
+
]
|
193
|
+
}],
|
194
|
+
"constraint": [{
|
195
|
+
"type": "use",
|
196
|
+
"useLimitation": [
|
197
|
+
"useLimitation0",
|
198
|
+
"useLimitation1"
|
199
|
+
]
|
200
|
+
}, {
|
201
|
+
"type": "legal",
|
202
|
+
"legal": {
|
203
|
+
"useConstraint": [
|
204
|
+
"useConstraint0",
|
205
|
+
"useConstraint1"
|
317
206
|
],
|
318
|
-
"
|
319
|
-
|
320
|
-
|
321
|
-
"contactId":"1",
|
322
|
-
"role":"principalInvestigator"
|
323
|
-
},
|
324
|
-
{
|
325
|
-
"contactId":"2",
|
326
|
-
"role":"pointOfContact"
|
327
|
-
}
|
207
|
+
"accessConstraint": [
|
208
|
+
"accessConstraint0",
|
209
|
+
"accessConstraint1"
|
328
210
|
],
|
329
|
-
"
|
330
|
-
|
331
|
-
"
|
332
|
-
"repository":{
|
333
|
-
"contactId":"2",
|
334
|
-
"role":"publisher"
|
335
|
-
}
|
336
|
-
},
|
337
|
-
"taxonClass":[
|
338
|
-
{
|
339
|
-
"taxonRank":"Kingdom",
|
340
|
-
"taxonValue":"Animalia"
|
341
|
-
},
|
342
|
-
{
|
343
|
-
"taxonRank":"Phylum",
|
344
|
-
"taxonValue":"Chordata"
|
345
|
-
},
|
346
|
-
{
|
347
|
-
"taxonRank":"Subphylum",
|
348
|
-
"taxonValue":"Vertebrata"
|
349
|
-
},
|
350
|
-
{
|
351
|
-
"taxonRank":"Class",
|
352
|
-
"taxonValue":"Mammalia"
|
353
|
-
},
|
354
|
-
{
|
355
|
-
"taxonRank":"Subclass",
|
356
|
-
"taxonValue":"Theria"
|
357
|
-
},
|
358
|
-
{
|
359
|
-
"taxonRank":"Infraclass",
|
360
|
-
"taxonValue":"Eutheria"
|
361
|
-
},
|
362
|
-
{
|
363
|
-
"taxonRank":"Order",
|
364
|
-
"taxonValue":"Carnivora"
|
365
|
-
},
|
366
|
-
{
|
367
|
-
"taxonRank":"Suborder",
|
368
|
-
"taxonValue":"Caniformia"
|
369
|
-
},
|
370
|
-
{
|
371
|
-
"taxonRank":"Family",
|
372
|
-
"taxonValue":"Mustilidae"
|
373
|
-
},
|
374
|
-
{
|
375
|
-
"taxonRank":"Subfamily",
|
376
|
-
"taxonValue":"Lutrinae"
|
377
|
-
},
|
378
|
-
{
|
379
|
-
"taxonRank":"Genus",
|
380
|
-
"taxonValue":"Enhydra"
|
381
|
-
},
|
382
|
-
{
|
383
|
-
"common":"Sea Otter",
|
384
|
-
"taxonRank":"Species",
|
385
|
-
"taxonValue":"Enhydra lutris"
|
386
|
-
},
|
387
|
-
{
|
388
|
-
"common":"Southern Sea Otter",
|
389
|
-
"taxonRank":"Subspecies",
|
390
|
-
"taxonValue":"Enhydra"
|
391
|
-
}
|
211
|
+
"otherConstraint": [
|
212
|
+
"otherConstraint0",
|
213
|
+
"otherConstraint1"
|
392
214
|
]
|
393
|
-
}
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
"
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
{
|
418
|
-
"uri":"http://www.gtnp.org"
|
419
|
-
}
|
420
|
-
]
|
421
|
-
}
|
422
|
-
}
|
423
|
-
],
|
424
|
-
"name":"BS7882",
|
425
|
-
"description":"Sea buoy BS7882 location"
|
426
|
-
},
|
427
|
-
"geometry":{
|
428
|
-
"type":"Point",
|
429
|
-
"coordinates":[
|
430
|
-
-164.87402357161,
|
431
|
-
59.165040850639
|
432
|
-
]
|
433
|
-
},
|
434
|
-
"crs":{
|
435
|
-
"type":"name",
|
436
|
-
"properties":{
|
437
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
438
|
-
}
|
439
|
-
}
|
440
|
-
},
|
441
|
-
{
|
442
|
-
"type":"Feature",
|
443
|
-
"id":"point100",
|
444
|
-
"properties":{
|
445
|
-
"identifier":[
|
446
|
-
{
|
447
|
-
"identifier":"PNT-12346",
|
448
|
-
"authority":{
|
449
|
-
"title":"Global Terrestrial Network for Permafrost Identifiers",
|
450
|
-
"onlineResource":[
|
451
|
-
{
|
452
|
-
"uri":"http://www.gtnp.org"
|
453
|
-
}
|
454
|
-
]
|
455
|
-
}
|
456
|
-
}
|
457
|
-
],
|
458
|
-
"name":"BS999",
|
459
|
-
"description":"Sea buoy BS999 location"
|
460
|
-
},
|
461
|
-
"geometry":{
|
462
|
-
"type":"Point",
|
463
|
-
"coordinates":[
|
464
|
-
-164.87302357161,
|
465
|
-
59.145040850639
|
466
|
-
]
|
467
|
-
},
|
468
|
-
"crs":{
|
469
|
-
"type":"name",
|
470
|
-
"properties":{
|
471
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
472
|
-
}
|
473
|
-
}
|
474
|
-
}
|
475
|
-
]
|
476
|
-
},
|
477
|
-
{
|
478
|
-
"description":"List of Points",
|
479
|
-
"geographicElement":[
|
480
|
-
{
|
481
|
-
"type":"Feature",
|
482
|
-
"bbox":[
|
483
|
-
-164.88550989974,
|
484
|
-
59.159712874412,
|
485
|
-
-164.86353724349,
|
486
|
-
59.169368826866
|
487
|
-
],
|
488
|
-
"id":"pointlist1",
|
489
|
-
"properties":{
|
490
|
-
"name":"Fishin' spots",
|
491
|
-
"description":"These points have shared attributes",
|
492
|
-
"includesData":true
|
493
|
-
},
|
494
|
-
"geometry":{
|
495
|
-
"type":"MultiPoint",
|
496
|
-
"coordinates":[
|
497
|
-
[
|
498
|
-
-164.87402357161,
|
499
|
-
59.165040850639
|
500
|
-
],
|
501
|
-
[
|
502
|
-
-164.87502357161,
|
503
|
-
59.164040850639
|
504
|
-
],
|
505
|
-
[
|
506
|
-
-164.88387053359,
|
507
|
-
59.161207759012
|
508
|
-
]
|
509
|
-
]
|
510
|
-
},
|
511
|
-
"crs":{
|
512
|
-
"type":"name",
|
513
|
-
"properties":{
|
514
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
515
|
-
}
|
516
|
-
}
|
517
|
-
}
|
518
|
-
]
|
519
|
-
},
|
520
|
-
{
|
521
|
-
"description":"List of Points with attributes",
|
522
|
-
"geographicElement":[
|
523
|
-
{
|
524
|
-
"type":"FeatureCollection",
|
525
|
-
"id":"multiPt1",
|
526
|
-
"bbox":[
|
527
|
-
-164.88550989974,
|
528
|
-
59.159712874412,
|
529
|
-
-164.86353724349,
|
530
|
-
59.169368826866
|
531
|
-
],
|
532
|
-
"properties":{
|
533
|
-
"name":"A FeatureCollection(points)",
|
534
|
-
"description":"represents GML MultiGeometry"
|
535
|
-
},
|
536
|
-
"crs":{
|
537
|
-
"type":"name",
|
538
|
-
"properties":{
|
539
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
540
|
-
}
|
541
|
-
},
|
542
|
-
"features":[
|
543
|
-
{
|
544
|
-
"type":"Feature",
|
545
|
-
"id":"point010",
|
546
|
-
"properties":{
|
547
|
-
"identifier":[
|
548
|
-
{
|
549
|
-
"identifier":"PNT-12345",
|
550
|
-
"authority":{
|
551
|
-
"title":"Global Terrestrial Network for Permafrost Identifiers",
|
552
|
-
"onlineResource":[
|
553
|
-
{
|
554
|
-
"uri":"http://www.gtnp.org"
|
555
|
-
}
|
556
|
-
]
|
557
|
-
}
|
558
|
-
}
|
559
|
-
],
|
560
|
-
"name":"BS7882",
|
561
|
-
"description":"point valid on or after a specific date",
|
562
|
-
"temporalElement":{
|
563
|
-
"date":[
|
564
|
-
"2011-09-15",
|
565
|
-
"2012-08-14"
|
566
|
-
]
|
567
|
-
}
|
568
|
-
},
|
569
|
-
"geometry":{
|
570
|
-
"type":"Point",
|
571
|
-
"coordinates":[
|
572
|
-
-164.88550989974,
|
573
|
-
59.179712874412
|
574
|
-
]
|
575
|
-
}
|
576
|
-
},
|
577
|
-
{
|
578
|
-
"type":"Feature",
|
579
|
-
"id":"point012",
|
580
|
-
"properties":{
|
581
|
-
"description":"point valid on or after a specific date",
|
582
|
-
"temporalElement":{
|
583
|
-
"timeInstant":[
|
584
|
-
{
|
585
|
-
"description":"ground condition",
|
586
|
-
"timePosition":"2012-07-15T08:05:00-09:00"
|
587
|
-
}
|
588
|
-
]
|
589
|
-
}
|
590
|
-
},
|
591
|
-
"geometry":{
|
592
|
-
"type":"Point",
|
593
|
-
"coordinates":[
|
594
|
-
-164.87550989974,
|
595
|
-
59.209712874412
|
596
|
-
]
|
597
|
-
}
|
598
|
-
},
|
599
|
-
{
|
600
|
-
"type":"Feature",
|
601
|
-
"id":"point013",
|
602
|
-
"properties":{
|
603
|
-
"description":"point valid over a time period",
|
604
|
-
"temporalElement":{
|
605
|
-
"timePeriod":[
|
606
|
-
{
|
607
|
-
"beginPosition":"2013-08-24T08:05:00",
|
608
|
-
"endPosition":"2013-10-04"
|
609
|
-
}
|
610
|
-
]
|
611
|
-
}
|
612
|
-
},
|
613
|
-
"geometry":{
|
614
|
-
"type":"Point",
|
615
|
-
"coordinates":[
|
616
|
-
-164.89650989974,
|
617
|
-
59.249712874412
|
618
|
-
]
|
619
|
-
}
|
620
|
-
}
|
621
|
-
]
|
622
|
-
}
|
623
|
-
]
|
624
|
-
},
|
625
|
-
{
|
626
|
-
"description":"Single Line",
|
627
|
-
"geographicElement":[
|
628
|
-
{
|
629
|
-
"type":"Feature",
|
630
|
-
"id":"line1",
|
631
|
-
"properties":{
|
632
|
-
"name":"Summer 2012 Bering Sea Survey Track",
|
633
|
-
"description":"Coordinates of ship track"
|
634
|
-
},
|
635
|
-
"geometry":{
|
636
|
-
"type":"LineString",
|
637
|
-
"coordinates":[
|
638
|
-
[
|
639
|
-
-157.0702509848438,
|
640
|
-
71.10933136359692
|
641
|
-
],
|
642
|
-
[
|
643
|
-
-154.6526281903968,
|
644
|
-
70.40820968995817
|
645
|
-
],
|
646
|
-
[
|
647
|
-
-150.7617407589279,
|
648
|
-
70.02201223417278
|
649
|
-
],
|
650
|
-
[
|
651
|
-
-150.8371960238169,
|
652
|
-
70.43210058905156
|
653
|
-
],
|
654
|
-
[
|
655
|
-
-152.2049884417053,
|
656
|
-
70.87235618158296
|
657
|
-
],
|
658
|
-
[
|
659
|
-
-154.5708878990441,
|
660
|
-
71.04082324476376
|
661
|
-
]
|
662
|
-
]
|
663
|
-
},
|
664
|
-
"crs":{
|
665
|
-
"type":"name",
|
666
|
-
"properties":{
|
667
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
668
|
-
}
|
669
|
-
}
|
670
|
-
}
|
671
|
-
]
|
672
|
-
},
|
673
|
-
{
|
674
|
-
"description":"List of Lines",
|
675
|
-
"geographicElement":[
|
676
|
-
{
|
677
|
-
"type":"Feature",
|
678
|
-
"bbox":[
|
679
|
-
-157.07025098484,
|
680
|
-
70.022012234173,
|
681
|
-
35.2,
|
682
|
-
-150.76174075893,
|
683
|
-
71.109331363597,
|
684
|
-
125.8
|
685
|
-
],
|
686
|
-
"id":"linelist1",
|
687
|
-
"properties":{
|
688
|
-
"name":"Lines",
|
689
|
-
"description":"These lines have shared attributes",
|
690
|
-
"includesData":true
|
691
|
-
},
|
692
|
-
"geometry":{
|
693
|
-
"type":"MultiLineString",
|
694
|
-
"coordinates":[
|
695
|
-
[
|
696
|
-
[
|
697
|
-
-157.0702509848438,
|
698
|
-
71.10933136359692,
|
699
|
-
35.2
|
700
|
-
],
|
701
|
-
[
|
702
|
-
-154.6526281903968,
|
703
|
-
70.40820968995817,
|
704
|
-
68.1
|
705
|
-
],
|
706
|
-
[
|
707
|
-
-150.7617407589279,
|
708
|
-
70.02201223417278,
|
709
|
-
84.7
|
710
|
-
],
|
711
|
-
[
|
712
|
-
-150.8371960238169,
|
713
|
-
70.43210058905156,
|
714
|
-
125.8
|
715
|
-
],
|
716
|
-
[
|
717
|
-
-152.2049884417053,
|
718
|
-
70.87235618158296,
|
719
|
-
116.0
|
720
|
-
]
|
721
|
-
],
|
722
|
-
[
|
723
|
-
[
|
724
|
-
-154.5708878990441,
|
725
|
-
71.04082324476376,
|
726
|
-
36.9
|
727
|
-
],
|
728
|
-
[
|
729
|
-
-150.7617407589279,
|
730
|
-
70.02201223417278,
|
731
|
-
84.7
|
732
|
-
],
|
733
|
-
[
|
734
|
-
-154.6526281903968,
|
735
|
-
70.40820968995817,
|
736
|
-
68.1
|
737
|
-
],
|
738
|
-
[
|
739
|
-
-157.0702509848438,
|
740
|
-
71.10933136359692,
|
741
|
-
35.2
|
742
|
-
]
|
743
|
-
],
|
744
|
-
[
|
745
|
-
[
|
746
|
-
-150.7617407589279,
|
747
|
-
70.02201223417278,
|
748
|
-
84.7
|
749
|
-
],
|
750
|
-
[
|
751
|
-
-154.6526281903968,
|
752
|
-
70.40820968995817,
|
753
|
-
68.1
|
754
|
-
]
|
755
|
-
]
|
756
|
-
]
|
757
|
-
},
|
758
|
-
"crs":{
|
759
|
-
"type":"name",
|
760
|
-
"properties":{
|
761
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
762
|
-
}
|
763
|
-
}
|
764
|
-
}
|
765
|
-
]
|
766
|
-
},
|
767
|
-
{
|
768
|
-
"description":"List of Lines with attributes",
|
769
|
-
"geographicElement":[
|
770
|
-
{
|
771
|
-
"type":"FeatureCollection",
|
772
|
-
"id":"multiline1",
|
773
|
-
"bbox":[
|
774
|
-
-157.07025098484,
|
775
|
-
70.022012234173,
|
776
|
-
35.2,
|
777
|
-
-150.76174075893,
|
778
|
-
71.109331363597,
|
779
|
-
125.8
|
780
|
-
],
|
781
|
-
"properties":{
|
782
|
-
"name":"A FeatureCollection(lines)",
|
783
|
-
"description":"represents GML MultiGeometry"
|
784
|
-
},
|
785
|
-
"crs":{
|
786
|
-
"type":"name",
|
787
|
-
"properties":{
|
788
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
789
|
-
}
|
790
|
-
},
|
791
|
-
"features":[
|
792
|
-
{
|
793
|
-
"type":"Feature",
|
794
|
-
"id":"multiLine001",
|
795
|
-
"properties":{
|
796
|
-
"name":"Josh",
|
797
|
-
"description":"First line in multiline object",
|
798
|
-
"temporalElement":{
|
799
|
-
"date":[
|
800
|
-
"2011-09-15",
|
801
|
-
"2012-08-13",
|
802
|
-
"2013-08-05"
|
803
|
-
]
|
804
|
-
}
|
805
|
-
},
|
806
|
-
"geometry":{
|
807
|
-
"type":"LineString",
|
808
|
-
"coordinates":[
|
809
|
-
[
|
810
|
-
-157.0702509848438,
|
811
|
-
71.10933136359692,
|
812
|
-
35.2
|
813
|
-
],
|
814
|
-
[
|
815
|
-
-154.6526281903968,
|
816
|
-
70.40820968995817,
|
817
|
-
68.1
|
818
|
-
],
|
819
|
-
[
|
820
|
-
-150.7617407589279,
|
821
|
-
70.02201223417278,
|
822
|
-
84.7
|
823
|
-
],
|
824
|
-
[
|
825
|
-
-150.8371960238169,
|
826
|
-
70.43210058905156,
|
827
|
-
125.8
|
828
|
-
],
|
829
|
-
[
|
830
|
-
-152.2049884417053,
|
831
|
-
70.87235618158296,
|
832
|
-
116.0
|
833
|
-
]
|
834
|
-
]
|
835
|
-
}
|
836
|
-
},
|
837
|
-
{
|
838
|
-
"type":"Feature",
|
839
|
-
"id":"multiLine002",
|
840
|
-
"properties":{
|
841
|
-
"name":"Chris",
|
842
|
-
"description":"Second line in multiline object",
|
843
|
-
"temporalElement":{
|
844
|
-
"date":[
|
845
|
-
"2011-09-15",
|
846
|
-
"2012-08-13",
|
847
|
-
"2013-08-05"
|
848
|
-
],
|
849
|
-
"timeInstant":[
|
850
|
-
{
|
851
|
-
"id":"ti-035",
|
852
|
-
"description":"the moment I realized I was lost",
|
853
|
-
"timePosition":"1968-12-15T08:05:00.0+09:00"
|
854
|
-
}
|
855
|
-
]
|
856
|
-
}
|
857
|
-
},
|
858
|
-
"geometry":{
|
859
|
-
"type":"LineString",
|
860
|
-
"coordinates":[
|
861
|
-
[
|
862
|
-
-154.5708878990441,
|
863
|
-
71.04082324476376,
|
864
|
-
36.9
|
865
|
-
],
|
866
|
-
[
|
867
|
-
-150.7617407589279,
|
868
|
-
70.02201223417278,
|
869
|
-
84.7
|
870
|
-
],
|
871
|
-
[
|
872
|
-
-154.6526281903968,
|
873
|
-
70.40820968995817,
|
874
|
-
68.1
|
875
|
-
],
|
876
|
-
[
|
877
|
-
-157.0702509848438,
|
878
|
-
71.10933136359692,
|
879
|
-
35.2
|
880
|
-
]
|
881
|
-
]
|
882
|
-
}
|
883
|
-
},
|
884
|
-
{
|
885
|
-
"type":"Feature",
|
886
|
-
"id":"multiLine003",
|
887
|
-
"properties":{
|
888
|
-
"name":"Allison",
|
889
|
-
"description":"Third line in multiline object"
|
890
|
-
},
|
891
|
-
"geometry":{
|
892
|
-
"type":"LineString",
|
893
|
-
"coordinates":[
|
894
|
-
[
|
895
|
-
-150.7617407589279,
|
896
|
-
70.02201223417278,
|
897
|
-
84.7
|
898
|
-
],
|
899
|
-
[
|
900
|
-
-154.6526281903968,
|
901
|
-
70.40820968995817,
|
902
|
-
68.1
|
903
|
-
]
|
904
|
-
]
|
905
|
-
}
|
906
|
-
}
|
907
|
-
]
|
908
|
-
}
|
909
|
-
]
|
910
|
-
},
|
911
|
-
{
|
912
|
-
"description":"BBOX only",
|
913
|
-
"geographicElement":[
|
914
|
-
{
|
915
|
-
"type":"Feature",
|
916
|
-
"bbox":[
|
917
|
-
-148.1764,
|
918
|
-
57.01428,
|
919
|
-
-132.821,
|
920
|
-
60.917
|
921
|
-
],
|
922
|
-
"geometry":null,
|
923
|
-
"properties":{
|
924
|
-
"includesData":true,
|
925
|
-
"description":"Gulf of Alaska"
|
926
|
-
},
|
927
|
-
"crs":{
|
928
|
-
"type":"link",
|
929
|
-
"properties":{
|
930
|
-
"href":"http://spatialreference.org/ref/epsg/4326/proj4/",
|
931
|
-
"type":"proj4"
|
932
|
-
}
|
933
|
-
}
|
934
|
-
}
|
935
|
-
],
|
936
|
-
"temporalElement":{
|
937
|
-
"timeInstant":[
|
938
|
-
{
|
939
|
-
"id":"ti-001",
|
940
|
-
"description":"ground condition",
|
941
|
-
"timePosition":"2012-07-15T08:05:00.0+09:00"
|
942
|
-
}
|
943
|
-
]
|
944
|
-
},
|
945
|
-
"verticalElement":[
|
946
|
-
{
|
947
|
-
"minimumValue":-500,
|
948
|
-
"maximumValue":0,
|
949
|
-
"verticalCRSTitle":"NAVD88 depth",
|
950
|
-
"verticalCRSUri":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::6357"
|
951
|
-
}
|
952
|
-
]
|
953
|
-
},
|
954
|
-
{
|
955
|
-
"description":"Polygon with BBOX",
|
956
|
-
"geographicElement":[
|
957
|
-
{
|
958
|
-
"type":"Feature",
|
959
|
-
"id":"unique1",
|
960
|
-
"bbox":[
|
961
|
-
-148.1764,
|
962
|
-
57.01428,
|
963
|
-
-132.821,
|
964
|
-
60.917
|
965
|
-
],
|
966
|
-
"geometry":{
|
967
|
-
"type":"Polygon",
|
968
|
-
"coordinates":[
|
969
|
-
[
|
970
|
-
[
|
971
|
-
-139.388046,
|
972
|
-
59.828561
|
973
|
-
],
|
974
|
-
[
|
975
|
-
-140.882186,
|
976
|
-
59.839602
|
977
|
-
],
|
978
|
-
[
|
979
|
-
-143.101425,
|
980
|
-
60.22375
|
981
|
-
],
|
982
|
-
[
|
983
|
-
-147.056503,
|
984
|
-
60.829147
|
985
|
-
],
|
986
|
-
[
|
987
|
-
-148.902206,
|
988
|
-
59.982807
|
989
|
-
],
|
990
|
-
[
|
991
|
-
-148.792343,
|
992
|
-
57.944338
|
993
|
-
],
|
994
|
-
[
|
995
|
-
-134.576034,
|
996
|
-
57.663361
|
997
|
-
]
|
998
|
-
]
|
999
|
-
]
|
1000
|
-
},
|
1001
|
-
"properties":{
|
1002
|
-
"includesData":true,
|
1003
|
-
"description":"Gulf of Alaska"
|
1004
|
-
},
|
1005
|
-
"crs":{
|
1006
|
-
"type":"name",
|
1007
|
-
"properties":{
|
1008
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
1009
|
-
}
|
1010
|
-
}
|
1011
|
-
},
|
1012
|
-
{
|
1013
|
-
"type":"Feature",
|
1014
|
-
"id":"unique101",
|
1015
|
-
"bbox":[
|
1016
|
-
-97.067240989074,
|
1017
|
-
18.556394455134,
|
1018
|
-
-80.807475364074,
|
1019
|
-
29.366941330134
|
1020
|
-
],
|
1021
|
-
"geometry":{
|
1022
|
-
"type":"Polygon",
|
1023
|
-
"coordinates":[
|
1024
|
-
[
|
1025
|
-
[
|
1026
|
-
-84.059428489074,
|
1027
|
-
29.366941330134
|
1028
|
-
],
|
1029
|
-
[
|
1030
|
-
-97.067240989074,
|
1031
|
-
28.048581955134
|
1032
|
-
],
|
1033
|
-
[
|
1034
|
-
-95.397319114074,
|
1035
|
-
18.556394455134
|
1036
|
-
],
|
1037
|
-
[
|
1038
|
-
-80.895365989074,
|
1039
|
-
24.620847580134
|
1040
|
-
],
|
1041
|
-
[
|
1042
|
-
-80.807475364074,
|
1043
|
-
24.708738205134
|
1044
|
-
],
|
1045
|
-
[
|
1046
|
-
-84.059428489074,
|
1047
|
-
29.366941330134
|
1048
|
-
]
|
1049
|
-
]
|
1050
|
-
]
|
1051
|
-
},
|
1052
|
-
"properties":{
|
1053
|
-
"includesData":false,
|
1054
|
-
"description":"Gulf of Mexico",
|
1055
|
-
"text":"Whatever I want."
|
1056
|
-
},
|
1057
|
-
"crs":{
|
1058
|
-
"type":"name",
|
1059
|
-
"properties":{
|
1060
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
1061
|
-
}
|
1062
|
-
}
|
1063
|
-
}
|
1064
|
-
],
|
1065
|
-
"temporalElement":{
|
1066
|
-
"timePeriod":[
|
1067
|
-
{
|
1068
|
-
"id":"tp-001",
|
1069
|
-
"description":"Ground Condition",
|
1070
|
-
"beginPosition":"1987-05-16T16:05:00",
|
1071
|
-
"endPosition":"2011-12"
|
1072
|
-
},
|
1073
|
-
{
|
1074
|
-
"id":"tp-101",
|
1075
|
-
"description":"Below Ground Condition",
|
1076
|
-
"beginPosition":"1987-08-13T16:05:00",
|
1077
|
-
"endPosition":"2012-12-12"
|
1078
|
-
}
|
1079
|
-
]
|
1080
|
-
},
|
1081
|
-
"verticalElement":[
|
1082
|
-
{
|
1083
|
-
"minimumValue":0,
|
1084
|
-
"maximumValue":1000,
|
1085
|
-
"verticalCRSTitle":"NAVD88 height",
|
1086
|
-
"verticalCRSUri":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5703"
|
1087
|
-
},
|
1088
|
-
{
|
1089
|
-
"minimumValue":1500,
|
1090
|
-
"maximumValue":0,
|
1091
|
-
"verticalCRSTitle":"NAVD88 depth",
|
1092
|
-
"verticalCRSUri":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::6357"
|
1093
|
-
}
|
1094
|
-
]
|
1095
|
-
},
|
1096
|
-
{
|
1097
|
-
"description":"A feature collection with just polygons",
|
1098
|
-
"geographicElement":[
|
1099
|
-
{
|
1100
|
-
"type":"FeatureCollection",
|
1101
|
-
"id":"unique2",
|
1102
|
-
"bbox":[
|
1103
|
-
-149.89603182812,
|
1104
|
-
61.215716023773,
|
1105
|
-
-149.87405917187,
|
1106
|
-
61.225371976227
|
1107
|
-
],
|
1108
|
-
"properties":{
|
1109
|
-
"name":"A FeatureCollection(polygons)",
|
1110
|
-
"description":"represents GML MultiGeometry",
|
1111
|
-
"includesData":true
|
1112
|
-
},
|
1113
|
-
"crs":{
|
1114
|
-
"type":"name",
|
1115
|
-
"properties":{
|
1116
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
1117
|
-
}
|
1118
|
-
},
|
1119
|
-
"features":[
|
1120
|
-
{
|
1121
|
-
"type":"Feature",
|
1122
|
-
"id":"unique3",
|
1123
|
-
"geometry":{
|
1124
|
-
"type":"Polygon",
|
1125
|
-
"coordinates":[
|
1126
|
-
[
|
1127
|
-
[
|
1128
|
-
-149.880796,
|
1129
|
-
61.21988
|
1130
|
-
],
|
1131
|
-
[
|
1132
|
-
-149.880625,
|
1133
|
-
61.221305
|
1134
|
-
],
|
1135
|
-
[
|
1136
|
-
-149.889386,
|
1137
|
-
61.221346
|
1138
|
-
],
|
1139
|
-
[
|
1140
|
-
-149.880796,
|
1141
|
-
61.21988
|
1142
|
-
]
|
1143
|
-
],
|
1144
|
-
[
|
1145
|
-
[
|
1146
|
-
-149.8807,
|
1147
|
-
61.21990
|
1148
|
-
],
|
1149
|
-
[
|
1150
|
-
-149.880627,
|
1151
|
-
61.221300
|
1152
|
-
],
|
1153
|
-
[
|
1154
|
-
-149.8809,
|
1155
|
-
61.221300
|
1156
|
-
],
|
1157
|
-
[
|
1158
|
-
-149.8807,
|
1159
|
-
61.21990
|
1160
|
-
]
|
1161
|
-
],
|
1162
|
-
[
|
1163
|
-
[
|
1164
|
-
-149.889300,
|
1165
|
-
61.221300
|
1166
|
-
],
|
1167
|
-
[
|
1168
|
-
-149.889382,
|
1169
|
-
61.221345
|
1170
|
-
],
|
1171
|
-
[
|
1172
|
-
-149.889382,
|
1173
|
-
61.221445
|
1174
|
-
],
|
1175
|
-
[
|
1176
|
-
-149.889300,
|
1177
|
-
61.221300
|
1178
|
-
]
|
1179
|
-
]
|
1180
|
-
]
|
1181
|
-
},
|
1182
|
-
"properties":{
|
1183
|
-
"name":"Buttress Park sampling location",
|
1184
|
-
"description":"Boundary of area in downtown Anchorage where sampling occurred"
|
1185
|
-
}
|
1186
|
-
},
|
1187
|
-
{
|
1188
|
-
"type":"Feature",
|
1189
|
-
"id":"unique4",
|
1190
|
-
"geometry":{
|
1191
|
-
"type":"Polygon",
|
1192
|
-
"coordinates":[
|
1193
|
-
[
|
1194
|
-
[
|
1195
|
-
-149.888221,
|
1196
|
-
61.219643
|
1197
|
-
],
|
1198
|
-
[
|
1199
|
-
-149.889466,
|
1200
|
-
61.219643
|
1201
|
-
],
|
1202
|
-
[
|
1203
|
-
-149.889251,
|
1204
|
-
61.219973
|
1205
|
-
],
|
1206
|
-
[
|
1207
|
-
-149.887835,
|
1208
|
-
61.219952
|
1209
|
-
],
|
1210
|
-
[
|
1211
|
-
-149.888221,
|
1212
|
-
61.219643
|
1213
|
-
]
|
1214
|
-
]
|
1215
|
-
]
|
1216
|
-
},
|
1217
|
-
"properties":{
|
1218
|
-
"includesData":false,
|
1219
|
-
"name":"Equipment staging area",
|
1220
|
-
"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.)"
|
1221
|
-
}
|
1222
|
-
}
|
1223
|
-
]
|
1224
|
-
}
|
1225
|
-
],
|
1226
|
-
"temporalElement":{
|
1227
|
-
"timePeriod":[
|
1228
|
-
{
|
1229
|
-
"id":"tp-002",
|
1230
|
-
"beginPosition":"2013-08-24T08:05:00",
|
1231
|
-
"endPosition":"2013-10-04"
|
1232
|
-
},
|
1233
|
-
{
|
1234
|
-
"id":"tp-004",
|
1235
|
-
"beginPosition":"2010-08-24T08:05:00",
|
1236
|
-
"endPosition":"2014-10-04",
|
1237
|
-
"description":"The best days of my life"
|
1238
|
-
}
|
1239
|
-
],
|
1240
|
-
"timeInstant":[
|
1241
|
-
{
|
1242
|
-
"id":"ti-002",
|
1243
|
-
"description":"below ground condition",
|
1244
|
-
"timePosition":"2012-07-15T08:05:00.0+09:00"
|
1245
|
-
},
|
1246
|
-
{
|
1247
|
-
"id":"ti-003",
|
1248
|
-
"description":"below ground condition",
|
1249
|
-
"timePosition":"2012-08-16T08:06:00.0+09:00"
|
1250
|
-
}
|
1251
|
-
]
|
1252
|
-
},
|
1253
|
-
"verticalElement":[
|
1254
|
-
{
|
1255
|
-
"minimumValue":60.5,
|
1256
|
-
"maximumValue":110.68,
|
1257
|
-
"verticalCRSTitle":"NAVD88 height (ftUS)",
|
1258
|
-
"verticalCRSUri":"http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:axis-name:EPSG::9904"
|
1259
|
-
}
|
1260
|
-
]
|
1261
|
-
}
|
1262
|
-
]
|
1263
|
-
}
|
1264
|
-
]
|
215
|
+
}
|
216
|
+
}],
|
217
|
+
"defaultResourceLocale": {
|
218
|
+
"language": "LanguageCode",
|
219
|
+
"country": "CountryCode",
|
220
|
+
"characterSet": "MD_CharacterSetCode"
|
221
|
+
},
|
222
|
+
"otherResourceLocale": [{
|
223
|
+
"language": "LanguageCode0",
|
224
|
+
"country": "CountryCode0",
|
225
|
+
"characterSet": "MD_CharacterSetCode0"
|
226
|
+
}, {
|
227
|
+
"language": "LanguageCode1",
|
228
|
+
"country": "CountryCode1",
|
229
|
+
"characterSet": "MD_CharacterSetCode1"
|
230
|
+
}],
|
231
|
+
"resourceMaintenance": [{
|
232
|
+
"frequency": "frequency0"
|
233
|
+
}, {
|
234
|
+
"frequency": "frequency1"
|
235
|
+
}],
|
236
|
+
"environmentDescription": "environmentDescription",
|
237
|
+
"supplementalInfo": "supplementalInfo"
|
238
|
+
}]
|