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/dataQuality.json
DELETED
@@ -1,272 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"scope": "scope",
|
4
|
-
"lineage": {
|
5
|
-
"statement": "statement",
|
6
|
-
"processStep": [
|
7
|
-
{
|
8
|
-
"stepId": "stepId1",
|
9
|
-
"description": "description1",
|
10
|
-
"rationale": "rationale1",
|
11
|
-
"dateTime": "1111-11-11",
|
12
|
-
"processor": [
|
13
|
-
{
|
14
|
-
"contactId": "contactId11",
|
15
|
-
"role": "role11"
|
16
|
-
}, {
|
17
|
-
"contactId": "contactId12",
|
18
|
-
"role": "role12"
|
19
|
-
}
|
20
|
-
]
|
21
|
-
}, {
|
22
|
-
"stepId": "stepId2",
|
23
|
-
"description": "description2",
|
24
|
-
"rationale": "rationale2",
|
25
|
-
"dateTime": "1112-11-11",
|
26
|
-
"processor": [
|
27
|
-
{
|
28
|
-
"contactId": "contactId21",
|
29
|
-
"role": "role21"
|
30
|
-
}, {
|
31
|
-
"contactId": "contactId22",
|
32
|
-
"role": "role22"
|
33
|
-
}
|
34
|
-
]
|
35
|
-
}
|
36
|
-
],
|
37
|
-
"source": [
|
38
|
-
{
|
39
|
-
"description": "description1",
|
40
|
-
"citation": {
|
41
|
-
"title": "title",
|
42
|
-
"date": [
|
43
|
-
{
|
44
|
-
"date": "1111-11-11",
|
45
|
-
"dateType": "dateType1"
|
46
|
-
}, {
|
47
|
-
"date": "1112-11-11",
|
48
|
-
"dateType": "dateType2"
|
49
|
-
}
|
50
|
-
],
|
51
|
-
"edition": "edition",
|
52
|
-
"responsibleParty": [
|
53
|
-
{
|
54
|
-
"contactId": "contactId1",
|
55
|
-
"role": "role1"
|
56
|
-
}, {
|
57
|
-
"contactId": "contactId2",
|
58
|
-
"role": "role2"
|
59
|
-
}
|
60
|
-
],
|
61
|
-
"presentationForm": ["presentationForm1", "presentationForm2"],
|
62
|
-
"identifier": [
|
63
|
-
{
|
64
|
-
"identifier": "identifier1",
|
65
|
-
"type": "type1",
|
66
|
-
"authority": {
|
67
|
-
"title": "title",
|
68
|
-
"date": [
|
69
|
-
{
|
70
|
-
"date": "1111-11-11",
|
71
|
-
"dateType": "dateType1"
|
72
|
-
}
|
73
|
-
],
|
74
|
-
"responsibleParty": [
|
75
|
-
{
|
76
|
-
"contactId": "contactId1",
|
77
|
-
"role": "role1"
|
78
|
-
}
|
79
|
-
],
|
80
|
-
"onlineResource": [
|
81
|
-
{
|
82
|
-
"uri": "http://thisisanexample1.com",
|
83
|
-
"protocol": "protocol1",
|
84
|
-
"name": "name1",
|
85
|
-
"description": "description1",
|
86
|
-
"function": "function1"
|
87
|
-
}
|
88
|
-
]
|
89
|
-
}
|
90
|
-
}
|
91
|
-
],
|
92
|
-
"onlineResource": [
|
93
|
-
{
|
94
|
-
"uri": "http://thisisanexample1.com",
|
95
|
-
"protocol": "protocol1",
|
96
|
-
"name": "name1",
|
97
|
-
"description": "description1",
|
98
|
-
"function": "function1"
|
99
|
-
}, {
|
100
|
-
"uri": "http://thisisanexample2.com",
|
101
|
-
"protocol": "protocol2",
|
102
|
-
"name": "name2",
|
103
|
-
"description": "description2",
|
104
|
-
"function": "function2"
|
105
|
-
}
|
106
|
-
]
|
107
|
-
},
|
108
|
-
"processStep": [
|
109
|
-
{
|
110
|
-
"stepId": "stepId11",
|
111
|
-
"description": "description11",
|
112
|
-
"rationale": "rationale11",
|
113
|
-
"dateTime": "1111-11-11",
|
114
|
-
"processor": [
|
115
|
-
{
|
116
|
-
"contactId": "contactId111",
|
117
|
-
"role": "role111"
|
118
|
-
}, {
|
119
|
-
"contactId": "contactId112",
|
120
|
-
"role": "role112"
|
121
|
-
}
|
122
|
-
]
|
123
|
-
}, {
|
124
|
-
"stepId": "stepId22",
|
125
|
-
"description": "description22",
|
126
|
-
"rationale": "rationale22",
|
127
|
-
"dateTime": "1122-11-11",
|
128
|
-
"processor": [
|
129
|
-
{
|
130
|
-
"contactId": "contactId221",
|
131
|
-
"role": "role221"
|
132
|
-
}, {
|
133
|
-
"contactId": "contactId222",
|
134
|
-
"role": "role222"
|
135
|
-
}
|
136
|
-
]
|
137
|
-
}
|
138
|
-
]
|
139
|
-
}
|
140
|
-
]
|
141
|
-
}
|
142
|
-
}, {
|
143
|
-
"scope": "dataset",
|
144
|
-
"lineage": {
|
145
|
-
"statement": "derived from that other dataset",
|
146
|
-
"processStep": [
|
147
|
-
{
|
148
|
-
"stepId": "135b",
|
149
|
-
"description": "Manually combed through to find obvious junk data values, changed value to 9999",
|
150
|
-
"rationale": "It had to be done!",
|
151
|
-
"dateTime": "2011-08-23",
|
152
|
-
"processor": [
|
153
|
-
{
|
154
|
-
"contactId": "3",
|
155
|
-
"role": "processor"
|
156
|
-
}, {
|
157
|
-
"contactId": "2",
|
158
|
-
"role": "publisher"
|
159
|
-
}
|
160
|
-
]
|
161
|
-
}, {
|
162
|
-
"description": "changed junk data value to 9999",
|
163
|
-
"rationale": "Way too many 9's that first time.",
|
164
|
-
"dateTime": "2013-08-28",
|
165
|
-
"processor": [
|
166
|
-
{
|
167
|
-
"contactId": "4",
|
168
|
-
"role": "processor"
|
169
|
-
}
|
170
|
-
]
|
171
|
-
}
|
172
|
-
],
|
173
|
-
"source": [
|
174
|
-
{
|
175
|
-
"description": "For this work, a mesoscale numerical model (WRF) will be initialized using the National Centers for Environmental Prediction (NCEP) North American Regional Reanalysis (NARR) output at 32-km resolution. The NARR data provides the “best-guess” analysis of atmospheric conditions for use in historical studies. The NARR domain covers all of North and Central America, much of the northeastern Pacific and northern Atlantic Oceans, including Alaska and Hawaii. Ten years of NARR data will be used (1 Jan 2000 – 31 Dec 2009).",
|
176
|
-
"citation": {
|
177
|
-
"title": "Very High-Resolution Dynamic Downscaling of Regional Climate and Hydrology",
|
178
|
-
"date": [
|
179
|
-
{
|
180
|
-
"date": "2000-01-21",
|
181
|
-
"dateType": "publication"
|
182
|
-
}
|
183
|
-
],
|
184
|
-
"edition": "version 1.2.0",
|
185
|
-
"responsibleParty": [
|
186
|
-
{
|
187
|
-
"contactId": "1",
|
188
|
-
"role": "originator"
|
189
|
-
}
|
190
|
-
],
|
191
|
-
"presentationForm": ["documentDigital"],
|
192
|
-
"additionalIdentifier": {
|
193
|
-
"isbn": "HB12365.214",
|
194
|
-
"issn": "0ab4-dd983c01"
|
195
|
-
}
|
196
|
-
},
|
197
|
-
"processStep": [
|
198
|
-
{
|
199
|
-
"stepId": "135bc",
|
200
|
-
"description": "The NARR data will be used to initialize the WRF model. The NARR data cannot be used by the WRF directly. Instead, WRF-required initial data and lateral data will be created from the NARR data using the WRF Preprocessing System (WPS) utilities. In addition, the 32-km grid resolution of the NARR data will be objectively analyzed to the WRF 4-km grid. ",
|
201
|
-
"rationale": "It had to be done!",
|
202
|
-
"dateTime": "2013-08-13",
|
203
|
-
"processor": [
|
204
|
-
{
|
205
|
-
"contactId": "3",
|
206
|
-
"role": "processor"
|
207
|
-
}
|
208
|
-
]
|
209
|
-
}, {
|
210
|
-
"stepId": "135bd",
|
211
|
-
"description": "The Hawaii Forest Bird Survey Vegetation Database includes data for over 40,400 vegetation plots that were sampled on the island of Hawaii in 1977. This database records with cover data that can be used for modeling their distribution abundance.",
|
212
|
-
"rationale": "It had to be done!",
|
213
|
-
"dateTime": "2013-08-13",
|
214
|
-
"processor": [
|
215
|
-
{
|
216
|
-
"contactId": "3",
|
217
|
-
"role": "processor"
|
218
|
-
}
|
219
|
-
]
|
220
|
-
}
|
221
|
-
]
|
222
|
-
}, {
|
223
|
-
"description": "We got this dataset from those guys in Fairbanks."
|
224
|
-
}
|
225
|
-
]
|
226
|
-
}
|
227
|
-
}, {
|
228
|
-
"scope": "dataset",
|
229
|
-
"lineage": {
|
230
|
-
"statement": "This is that other dataset that you might have heard about.",
|
231
|
-
"source": [
|
232
|
-
{
|
233
|
-
"description": "This dataset came from somewhere. It was collected by so and so.",
|
234
|
-
"citation": {
|
235
|
-
"title": "Example_dataset_20111009_turner_v1-12.csv",
|
236
|
-
"date": [
|
237
|
-
{
|
238
|
-
"date": "2011-10-09",
|
239
|
-
"dateType": "creation"
|
240
|
-
}
|
241
|
-
]
|
242
|
-
}
|
243
|
-
}
|
244
|
-
]
|
245
|
-
}
|
246
|
-
}, {
|
247
|
-
"scope": "series",
|
248
|
-
"lineage": {
|
249
|
-
"statement": "This series is made up of those datasets."
|
250
|
-
}
|
251
|
-
}, {
|
252
|
-
"scope": "dataset",
|
253
|
-
"lineage": {
|
254
|
-
"statement": "This another ctd datas from the GAK1 location.",
|
255
|
-
"processStep": [
|
256
|
-
{
|
257
|
-
"description": "This is how this dataset was processed."
|
258
|
-
}
|
259
|
-
]
|
260
|
-
}
|
261
|
-
}, {
|
262
|
-
"scope": "dataset",
|
263
|
-
"lineage": {
|
264
|
-
"statement": "This series is made up of those datasets.",
|
265
|
-
"source": [
|
266
|
-
{
|
267
|
-
"description": "We got this dataset from those guys in Fairbanks."
|
268
|
-
}
|
269
|
-
]
|
270
|
-
}
|
271
|
-
}
|
272
|
-
]
|
@@ -1,288 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"description":"Single Line",
|
4
|
-
"geographicElement":[
|
5
|
-
{
|
6
|
-
"type":"Feature",
|
7
|
-
"id":"line1",
|
8
|
-
"properties":{
|
9
|
-
"name":"Summer 2012 Bering Sea Survey Track",
|
10
|
-
"description":"Coordinates of ship track"
|
11
|
-
},
|
12
|
-
"geometry":{
|
13
|
-
"type":"LineString",
|
14
|
-
"coordinates":[
|
15
|
-
[
|
16
|
-
-157.0702509848438,
|
17
|
-
71.10933136359692
|
18
|
-
],
|
19
|
-
[
|
20
|
-
-154.6526281903968,
|
21
|
-
70.40820968995817
|
22
|
-
],
|
23
|
-
[
|
24
|
-
-150.7617407589279,
|
25
|
-
70.02201223417278
|
26
|
-
],
|
27
|
-
[
|
28
|
-
-150.8371960238169,
|
29
|
-
70.43210058905156
|
30
|
-
],
|
31
|
-
[
|
32
|
-
-152.2049884417053,
|
33
|
-
70.87235618158296
|
34
|
-
],
|
35
|
-
[
|
36
|
-
-154.5708878990441,
|
37
|
-
71.04082324476376
|
38
|
-
]
|
39
|
-
]
|
40
|
-
},
|
41
|
-
"crs":{
|
42
|
-
"type":"name",
|
43
|
-
"properties":{
|
44
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
45
|
-
}
|
46
|
-
}
|
47
|
-
}
|
48
|
-
]
|
49
|
-
},
|
50
|
-
{
|
51
|
-
"description":"List of Lines",
|
52
|
-
"geographicElement":[
|
53
|
-
{
|
54
|
-
"type":"Feature",
|
55
|
-
"bbox":[
|
56
|
-
-157.07025098484,
|
57
|
-
70.022012234173,
|
58
|
-
35.2,
|
59
|
-
-150.76174075893,
|
60
|
-
71.109331363597,
|
61
|
-
125.8
|
62
|
-
],
|
63
|
-
"id":"linelist1",
|
64
|
-
"properties":{
|
65
|
-
"name":"Lines",
|
66
|
-
"description":"These lines have shared attributes",
|
67
|
-
"includesData":true
|
68
|
-
},
|
69
|
-
"geometry":{
|
70
|
-
"type":"MultiLineString",
|
71
|
-
"coordinates":[
|
72
|
-
[
|
73
|
-
[
|
74
|
-
-157.0702509848438,
|
75
|
-
71.10933136359692,
|
76
|
-
35.2
|
77
|
-
],
|
78
|
-
[
|
79
|
-
-154.6526281903968,
|
80
|
-
70.40820968995817,
|
81
|
-
68.1
|
82
|
-
],
|
83
|
-
[
|
84
|
-
-150.7617407589279,
|
85
|
-
70.02201223417278,
|
86
|
-
84.7
|
87
|
-
],
|
88
|
-
[
|
89
|
-
-150.8371960238169,
|
90
|
-
70.43210058905156,
|
91
|
-
125.8
|
92
|
-
],
|
93
|
-
[
|
94
|
-
-152.2049884417053,
|
95
|
-
70.87235618158296,
|
96
|
-
116.0
|
97
|
-
]
|
98
|
-
],
|
99
|
-
[
|
100
|
-
[
|
101
|
-
-154.5708878990441,
|
102
|
-
71.04082324476376,
|
103
|
-
36.9
|
104
|
-
],
|
105
|
-
[
|
106
|
-
-150.7617407589279,
|
107
|
-
70.02201223417278,
|
108
|
-
84.7
|
109
|
-
],
|
110
|
-
[
|
111
|
-
-154.6526281903968,
|
112
|
-
70.40820968995817,
|
113
|
-
68.1
|
114
|
-
],
|
115
|
-
[
|
116
|
-
-157.0702509848438,
|
117
|
-
71.10933136359692,
|
118
|
-
35.2
|
119
|
-
]
|
120
|
-
],
|
121
|
-
[
|
122
|
-
[
|
123
|
-
-150.7617407589279,
|
124
|
-
70.02201223417278,
|
125
|
-
84.7
|
126
|
-
],
|
127
|
-
[
|
128
|
-
-154.6526281903968,
|
129
|
-
70.40820968995817,
|
130
|
-
68.1
|
131
|
-
]
|
132
|
-
]
|
133
|
-
]
|
134
|
-
},
|
135
|
-
"crs":{
|
136
|
-
"type":"name",
|
137
|
-
"properties":{
|
138
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
139
|
-
}
|
140
|
-
}
|
141
|
-
}
|
142
|
-
]
|
143
|
-
},
|
144
|
-
{
|
145
|
-
"description":"List of Lines with attributes",
|
146
|
-
"geographicElement":[
|
147
|
-
{
|
148
|
-
"type":"FeatureCollection",
|
149
|
-
"id":"multiline1",
|
150
|
-
"bbox":[
|
151
|
-
-157.07025098484,
|
152
|
-
70.022012234173,
|
153
|
-
35.2,
|
154
|
-
-150.76174075893,
|
155
|
-
71.109331363597,
|
156
|
-
125.8
|
157
|
-
],
|
158
|
-
"properties":{
|
159
|
-
"name":"A FeatureCollection(lines)",
|
160
|
-
"description":"represents GML MultiGeometry"
|
161
|
-
},
|
162
|
-
"crs":{
|
163
|
-
"type":"name",
|
164
|
-
"properties":{
|
165
|
-
"name":"urn:ogc:def:crs:OGC:1.3:CRS84"
|
166
|
-
}
|
167
|
-
},
|
168
|
-
"features":[
|
169
|
-
{
|
170
|
-
"type":"Feature",
|
171
|
-
"id":"multiLine001",
|
172
|
-
"properties":{
|
173
|
-
"name":"Josh",
|
174
|
-
"description":"First line in multiline object",
|
175
|
-
"temporalElement":{
|
176
|
-
"date":[
|
177
|
-
"2011-09-15",
|
178
|
-
"2012-08-13",
|
179
|
-
"2013-08-05"
|
180
|
-
]
|
181
|
-
}
|
182
|
-
},
|
183
|
-
"geometry":{
|
184
|
-
"type":"LineString",
|
185
|
-
"coordinates":[
|
186
|
-
[
|
187
|
-
-157.0702509848438,
|
188
|
-
71.10933136359692,
|
189
|
-
35.2
|
190
|
-
],
|
191
|
-
[
|
192
|
-
-154.6526281903968,
|
193
|
-
70.40820968995817,
|
194
|
-
68.1
|
195
|
-
],
|
196
|
-
[
|
197
|
-
-150.7617407589279,
|
198
|
-
70.02201223417278,
|
199
|
-
84.7
|
200
|
-
],
|
201
|
-
[
|
202
|
-
-150.8371960238169,
|
203
|
-
70.43210058905156,
|
204
|
-
125.8
|
205
|
-
],
|
206
|
-
[
|
207
|
-
-152.2049884417053,
|
208
|
-
70.87235618158296,
|
209
|
-
116.0
|
210
|
-
]
|
211
|
-
]
|
212
|
-
}
|
213
|
-
},
|
214
|
-
{
|
215
|
-
"type":"Feature",
|
216
|
-
"id":"multiLine001",
|
217
|
-
"properties":{
|
218
|
-
"name":"Chris",
|
219
|
-
"description":"Second line in multiline object",
|
220
|
-
"temporalElement":{
|
221
|
-
"date":[
|
222
|
-
"2011-09-15",
|
223
|
-
"2012-08-13",
|
224
|
-
"2013-08-05"
|
225
|
-
],
|
226
|
-
"timeInstant":[
|
227
|
-
{
|
228
|
-
"id":"ti-035",
|
229
|
-
"description":"the moment I realized I was lost",
|
230
|
-
"timePosition":"1968-12-15T08:05:00.0+09:00"
|
231
|
-
}
|
232
|
-
]
|
233
|
-
}
|
234
|
-
},
|
235
|
-
"geometry":{
|
236
|
-
"type":"LineString",
|
237
|
-
"coordinates":[
|
238
|
-
[
|
239
|
-
-154.5708878990441,
|
240
|
-
71.04082324476376,
|
241
|
-
36.9
|
242
|
-
],
|
243
|
-
[
|
244
|
-
-150.7617407589279,
|
245
|
-
70.02201223417278,
|
246
|
-
84.7
|
247
|
-
],
|
248
|
-
[
|
249
|
-
-154.6526281903968,
|
250
|
-
70.40820968995817,
|
251
|
-
68.1
|
252
|
-
],
|
253
|
-
[
|
254
|
-
-157.0702509848438,
|
255
|
-
71.10933136359692,
|
256
|
-
35.2
|
257
|
-
]
|
258
|
-
]
|
259
|
-
}
|
260
|
-
},
|
261
|
-
{
|
262
|
-
"type":"Feature",
|
263
|
-
"id":"multiLine003",
|
264
|
-
"properties":{
|
265
|
-
"name":"Allison",
|
266
|
-
"description":"Third line in multiline object"
|
267
|
-
},
|
268
|
-
"geometry":{
|
269
|
-
"type":"LineString",
|
270
|
-
"coordinates":[
|
271
|
-
[
|
272
|
-
-150.7617407589279,
|
273
|
-
70.02201223417278,
|
274
|
-
84.7
|
275
|
-
],
|
276
|
-
[
|
277
|
-
-154.6526281903968,
|
278
|
-
70.40820968995817,
|
279
|
-
68.1
|
280
|
-
]
|
281
|
-
]
|
282
|
-
}
|
283
|
-
}
|
284
|
-
]
|
285
|
-
}
|
286
|
-
]
|
287
|
-
}
|
288
|
-
]
|