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
@@ -0,0 +1,31 @@
|
|
1
|
+
[{
|
2
|
+
"commonName": "commonName",
|
3
|
+
"codeName": "codeName",
|
4
|
+
"alias": [
|
5
|
+
"alias0",
|
6
|
+
"alias1"
|
7
|
+
],
|
8
|
+
"definition": "definition",
|
9
|
+
"dataType": "dataType",
|
10
|
+
"allowNull": true,
|
11
|
+
"units": "units",
|
12
|
+
"domainId": "domainId",
|
13
|
+
"minValue": "minValue",
|
14
|
+
"maxValue": "maxValue"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"commonName": "Employee ID",
|
18
|
+
"codeName": "empId",
|
19
|
+
"alias": [
|
20
|
+
"employeeId",
|
21
|
+
"employeeNumber"
|
22
|
+
],
|
23
|
+
"definition": "Numeric code to uniquely identify an employee of Acme Oil",
|
24
|
+
"dataType": "numeric",
|
25
|
+
"allowNull": true,
|
26
|
+
"units": "meters",
|
27
|
+
"domainId": "dom042",
|
28
|
+
"minValue": "1000000",
|
29
|
+
"maxValue": "5000000"
|
30
|
+
}
|
31
|
+
]
|
@@ -0,0 +1,17 @@
|
|
1
|
+
[{
|
2
|
+
"localAttributeCodeName": [
|
3
|
+
"localAttributeCodeName0",
|
4
|
+
"localAttributeCodeName1"
|
5
|
+
],
|
6
|
+
"referencedEntityCodeName": "referencedEntityCodeName",
|
7
|
+
"referencedAttributeCodeName": [
|
8
|
+
"referencedAttributeCodeName0",
|
9
|
+
"referencedAttributeCodeName1"
|
10
|
+
]
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"localAttributeCodeName": ["employeeID"],
|
14
|
+
"referencedEntityCodeName": "EMPLOYEE",
|
15
|
+
"referencedAttributeCodeName": ["employeeID"]
|
16
|
+
}
|
17
|
+
]
|
@@ -0,0 +1,60 @@
|
|
1
|
+
[{
|
2
|
+
"description": "description",
|
3
|
+
"geographicExtent": [{
|
4
|
+
"containsData": false,
|
5
|
+
"geographicElement": [{
|
6
|
+
"type": "Point",
|
7
|
+
"coordinates": [100.0, 0.0]
|
8
|
+
},
|
9
|
+
{
|
10
|
+
"type": "LineString",
|
11
|
+
"coordinates": [
|
12
|
+
[100.0, 0.0],
|
13
|
+
[101.0, 1.0]
|
14
|
+
]
|
15
|
+
}
|
16
|
+
]
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"geographicElement": [{
|
20
|
+
"type": "Point",
|
21
|
+
"coordinates": [100.0, 0.0]
|
22
|
+
}]
|
23
|
+
}
|
24
|
+
],
|
25
|
+
"temporalExtent": [{
|
26
|
+
"type": "instant",
|
27
|
+
"timeInstant": {
|
28
|
+
"dateTime": "2016-10-24T11:10:15.2-10:00"
|
29
|
+
}
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"type": "period",
|
33
|
+
"timePeriod": {
|
34
|
+
"startDateTime": "2016-10-24T11:10:15.2-10:00"
|
35
|
+
}
|
36
|
+
}
|
37
|
+
],
|
38
|
+
"verticalExtent": [{
|
39
|
+
"description": "description",
|
40
|
+
"minValue": 9.9,
|
41
|
+
"maxValue": 9.9,
|
42
|
+
"crsId": {
|
43
|
+
"type": "referenceSystemType",
|
44
|
+
"systemIdentifier": {
|
45
|
+
"identifier": "identifier"
|
46
|
+
}
|
47
|
+
}
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"minValue": 9.9,
|
51
|
+
"maxValue": 9.9,
|
52
|
+
"crsId": {
|
53
|
+
"type": "referenceSystemType",
|
54
|
+
"systemIdentifier": {
|
55
|
+
"identifier": "identifier"
|
56
|
+
}
|
57
|
+
}
|
58
|
+
}
|
59
|
+
]
|
60
|
+
}]
|
@@ -0,0 +1,58 @@
|
|
1
|
+
[{
|
2
|
+
"type": "FeatureCollection",
|
3
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
4
|
+
"features": [{
|
5
|
+
"type": "Feature",
|
6
|
+
"id": "id",
|
7
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
8
|
+
"geometry": {
|
9
|
+
"type": "Point",
|
10
|
+
"coordinates": [102.0, 0.5]
|
11
|
+
},
|
12
|
+
"properties": {
|
13
|
+
"description": "description"
|
14
|
+
}
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"type": "Feature",
|
18
|
+
"id": "id",
|
19
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
20
|
+
"geometry": {
|
21
|
+
"type": "LineString",
|
22
|
+
"coordinates": [
|
23
|
+
[102.0, 0.0],
|
24
|
+
[103.0, 1.0],
|
25
|
+
[104.0, 0.0],
|
26
|
+
[105.0, 1.0]
|
27
|
+
]
|
28
|
+
},
|
29
|
+
"properties": {
|
30
|
+
"description": "description"
|
31
|
+
}
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"type": "Feature",
|
35
|
+
"id": "featureId",
|
36
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
37
|
+
"geometry": {
|
38
|
+
"type": "GeometryCollection",
|
39
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
40
|
+
"geometries": [{
|
41
|
+
"type": "Point",
|
42
|
+
"coordinates": [100.0, 0.0]
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"type": "LineString",
|
46
|
+
"coordinates": [
|
47
|
+
[101.0, 0.0],
|
48
|
+
[102.0, 1.0]
|
49
|
+
]
|
50
|
+
}
|
51
|
+
]
|
52
|
+
},
|
53
|
+
"properties": {
|
54
|
+
"description": "description"
|
55
|
+
}
|
56
|
+
}
|
57
|
+
]
|
58
|
+
}]
|
@@ -0,0 +1,16 @@
|
|
1
|
+
[{
|
2
|
+
"featureName": [
|
3
|
+
"featureName0",
|
4
|
+
"featureName1"
|
5
|
+
],
|
6
|
+
"description": "description",
|
7
|
+
"identifier": [{
|
8
|
+
"identifier": "identifier0",
|
9
|
+
"namespace": "namespace0"
|
10
|
+
}, {
|
11
|
+
"identifier": "identifier1",
|
12
|
+
"namespace": "namespace1"
|
13
|
+
}],
|
14
|
+
"featureScope": "featureScope",
|
15
|
+
"acquisitionMethod": "acquisitionMethod"
|
16
|
+
}]
|
data/examples/format.json
CHANGED
@@ -1,14 +1,7 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
}, {
|
9
|
-
"formatName": "Excel Spreadsheet",
|
10
|
-
"version": "xlsx"
|
11
|
-
}, {
|
12
|
-
"formatName": "OpenOffice Spreadsheet"
|
13
|
-
}
|
14
|
-
]
|
1
|
+
[{
|
2
|
+
"formatSpecification": {
|
3
|
+
"title": "title"
|
4
|
+
},
|
5
|
+
"amendmentNumber": "amendmentNumber",
|
6
|
+
"compressionMethod": "compressionMethod"
|
7
|
+
}]
|
@@ -0,0 +1,33 @@
|
|
1
|
+
[{
|
2
|
+
"allocation": [{
|
3
|
+
"amount": 300.00,
|
4
|
+
"currency": "USD",
|
5
|
+
"sourceId": "Alpha contactId",
|
6
|
+
"recipientId": "Beta contactId",
|
7
|
+
"matching": true,
|
8
|
+
"comment": "some comments about the allocation"
|
9
|
+
},
|
10
|
+
{
|
11
|
+
"amount": 700,
|
12
|
+
"currency": "EUR",
|
13
|
+
"sourceId": "Beta contactId"
|
14
|
+
}
|
15
|
+
],
|
16
|
+
"timePeriod": {
|
17
|
+
"startDateTime": "2015-10-01",
|
18
|
+
"endDateTime": "2016-09-30"
|
19
|
+
}
|
20
|
+
},
|
21
|
+
{
|
22
|
+
"timePeriod": {
|
23
|
+
"startDateTime": "2015-10-01",
|
24
|
+
"endDateTime": "2016-09-30"
|
25
|
+
}
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"allocation": [{
|
29
|
+
"amount": 300000,
|
30
|
+
"currency": "USD"
|
31
|
+
}]
|
32
|
+
}
|
33
|
+
]
|
@@ -0,0 +1,185 @@
|
|
1
|
+
[{
|
2
|
+
"type": "Point",
|
3
|
+
"coordinates": [100.0, 0.0]
|
4
|
+
},
|
5
|
+
{
|
6
|
+
"type": "LineString",
|
7
|
+
"coordinates": [
|
8
|
+
[100.0, 0.0],
|
9
|
+
[101.0, 1.0]
|
10
|
+
]
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"type": "Polygon",
|
14
|
+
"coordinates": [
|
15
|
+
[
|
16
|
+
[100.0, 0.0],
|
17
|
+
[101.0, 0.0],
|
18
|
+
[101.0, 1.0],
|
19
|
+
[100.0, 1.0],
|
20
|
+
[100.0, 0.0]
|
21
|
+
]
|
22
|
+
]
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"type": "Polygon",
|
26
|
+
"coordinates": [
|
27
|
+
[
|
28
|
+
[100.0, 0.0],
|
29
|
+
[101.0, 0.0],
|
30
|
+
[101.0, 1.0],
|
31
|
+
[100.0, 1.0],
|
32
|
+
[100.0, 0.0]
|
33
|
+
],
|
34
|
+
[
|
35
|
+
[100.8, 0.8],
|
36
|
+
[100.8, 0.2],
|
37
|
+
[100.2, 0.2],
|
38
|
+
[100.2, 0.8],
|
39
|
+
[100.8, 0.8]
|
40
|
+
]
|
41
|
+
]
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"type": "MultiPoint",
|
45
|
+
"coordinates": [
|
46
|
+
[100.0, 0.0],
|
47
|
+
[101.0, 1.0]
|
48
|
+
]
|
49
|
+
},
|
50
|
+
{
|
51
|
+
"type": "MultiLineString",
|
52
|
+
"coordinates": [
|
53
|
+
[
|
54
|
+
[100.0, 0.0],
|
55
|
+
[101.0, 1.0]
|
56
|
+
],
|
57
|
+
[
|
58
|
+
[102.0, 2.0],
|
59
|
+
[103.0, 3.0]
|
60
|
+
]
|
61
|
+
]
|
62
|
+
},
|
63
|
+
{
|
64
|
+
"type": "MultiPolygon",
|
65
|
+
"coordinates": [
|
66
|
+
[
|
67
|
+
[
|
68
|
+
[102.0, 2.0],
|
69
|
+
[103.0, 2.0],
|
70
|
+
[103.0, 3.0],
|
71
|
+
[102.0, 3.0],
|
72
|
+
[102.0, 2.0]
|
73
|
+
]
|
74
|
+
],
|
75
|
+
[
|
76
|
+
[
|
77
|
+
[100.0, 0.0],
|
78
|
+
[101.0, 0.0],
|
79
|
+
[101.0, 1.0],
|
80
|
+
[100.0, 1.0],
|
81
|
+
[100.0, 0.0]
|
82
|
+
],
|
83
|
+
[
|
84
|
+
[100.2, 0.2],
|
85
|
+
[100.2, 0.8],
|
86
|
+
[100.8, 0.8],
|
87
|
+
[100.8, 0.2],
|
88
|
+
[100.2, 0.2]
|
89
|
+
]
|
90
|
+
]
|
91
|
+
]
|
92
|
+
},
|
93
|
+
|
94
|
+
|
95
|
+
{
|
96
|
+
"type": "GeometryCollection",
|
97
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
98
|
+
"geometries": [{
|
99
|
+
"type": "Point",
|
100
|
+
"coordinates": [100.0, 0.0]
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"type": "LineString",
|
104
|
+
"coordinates": [
|
105
|
+
[101.0, 0.0],
|
106
|
+
[102.0, 1.0]
|
107
|
+
]
|
108
|
+
}
|
109
|
+
]
|
110
|
+
},
|
111
|
+
|
112
|
+
|
113
|
+
{
|
114
|
+
"type": "Feature",
|
115
|
+
"id": "featureId",
|
116
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
117
|
+
"geometry": {
|
118
|
+
"type": "Point",
|
119
|
+
"coordinates": [102.0, 0.5]
|
120
|
+
},
|
121
|
+
"properties": {
|
122
|
+
"see": "geometryProperties 2.0"
|
123
|
+
}
|
124
|
+
},
|
125
|
+
|
126
|
+
|
127
|
+
{
|
128
|
+
"type": "FeatureCollection",
|
129
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
130
|
+
"features": [{
|
131
|
+
"type": "Feature",
|
132
|
+
"id": "featureId",
|
133
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
134
|
+
"geometry": {
|
135
|
+
"type": "Point",
|
136
|
+
"coordinates": [102.0, 0.5]
|
137
|
+
},
|
138
|
+
"properties": {
|
139
|
+
"see": "geometryProperties 2.0"
|
140
|
+
}
|
141
|
+
},
|
142
|
+
{
|
143
|
+
"type": "Feature",
|
144
|
+
"id": "featureId",
|
145
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
146
|
+
"geometry": {
|
147
|
+
"type": "LineString",
|
148
|
+
"coordinates": [
|
149
|
+
[102.0, 0.0],
|
150
|
+
[103.0, 1.0],
|
151
|
+
[104.0, 0.0],
|
152
|
+
[105.0, 1.0]
|
153
|
+
]
|
154
|
+
},
|
155
|
+
"properties": {
|
156
|
+
"see": "geometryProperties 2.0"
|
157
|
+
}
|
158
|
+
},
|
159
|
+
{
|
160
|
+
"type": "Feature",
|
161
|
+
"id": "featureId",
|
162
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
163
|
+
"geometry": {
|
164
|
+
"type": "GeometryCollection",
|
165
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
166
|
+
"geometries": [{
|
167
|
+
"type": "Point",
|
168
|
+
"coordinates": [100.0, 0.0]
|
169
|
+
},
|
170
|
+
{
|
171
|
+
"type": "LineString",
|
172
|
+
"coordinates": [
|
173
|
+
[101.0, 0.0],
|
174
|
+
[102.0, 1.0]
|
175
|
+
]
|
176
|
+
}
|
177
|
+
]
|
178
|
+
},
|
179
|
+
"properties": {
|
180
|
+
"description": "description"
|
181
|
+
}
|
182
|
+
}
|
183
|
+
]
|
184
|
+
}
|
185
|
+
]
|
@@ -0,0 +1,22 @@
|
|
1
|
+
[{
|
2
|
+
"containsData": false,
|
3
|
+
"identifier": {
|
4
|
+
"identifier": "identifier"
|
5
|
+
},
|
6
|
+
"boundingBox": {
|
7
|
+
"westLongitude": -140.0,
|
8
|
+
"eastLongitude": -120.0,
|
9
|
+
"southLatitude": 49.0,
|
10
|
+
"northLatitude": 70.0
|
11
|
+
},
|
12
|
+
"geographicElement": [{
|
13
|
+
"type": "Point",
|
14
|
+
"coordinates": [100.0, 0.0]
|
15
|
+
}, {
|
16
|
+
"type": "LineString",
|
17
|
+
"coordinates": [
|
18
|
+
[100.0, 0.0],
|
19
|
+
[101.0, 1.0]
|
20
|
+
]
|
21
|
+
}]
|
22
|
+
}]
|
@@ -0,0 +1,90 @@
|
|
1
|
+
[{
|
2
|
+
"type": "Point",
|
3
|
+
"coordinates": [100.0, 0.0]
|
4
|
+
}, {
|
5
|
+
"type": "LineString",
|
6
|
+
"coordinates": [
|
7
|
+
[100.0, 0.0],
|
8
|
+
[101.0, 1.0]
|
9
|
+
]
|
10
|
+
}, {
|
11
|
+
"type": "Polygon",
|
12
|
+
"coordinates": [
|
13
|
+
[
|
14
|
+
[100.0, 0.0],
|
15
|
+
[101.0, 0.0],
|
16
|
+
[101.0, 1.0],
|
17
|
+
[100.0, 1.0],
|
18
|
+
[100.0, 0.0]
|
19
|
+
]
|
20
|
+
]
|
21
|
+
}, {
|
22
|
+
"type": "Polygon",
|
23
|
+
"coordinates": [
|
24
|
+
[
|
25
|
+
[100.0, 0.0],
|
26
|
+
[101.0, 0.0],
|
27
|
+
[101.0, 1.0],
|
28
|
+
[100.0, 1.0],
|
29
|
+
[100.0, 0.0]
|
30
|
+
],
|
31
|
+
[
|
32
|
+
[100.8, 0.8],
|
33
|
+
[100.8, 0.2],
|
34
|
+
[100.2, 0.2],
|
35
|
+
[100.2, 0.8],
|
36
|
+
[100.8, 0.8]
|
37
|
+
]
|
38
|
+
]
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"type": "MultiPoint",
|
42
|
+
"coordinates": [
|
43
|
+
[100.0, 0.0],
|
44
|
+
[101.0, 1.0]
|
45
|
+
]
|
46
|
+
},
|
47
|
+
{
|
48
|
+
"type": "MultiLineString",
|
49
|
+
"coordinates": [
|
50
|
+
[
|
51
|
+
[100.0, 0.0],
|
52
|
+
[101.0, 1.0]
|
53
|
+
],
|
54
|
+
[
|
55
|
+
[102.0, 2.0],
|
56
|
+
[103.0, 3.0]
|
57
|
+
]
|
58
|
+
]
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"type": "MultiPolygon",
|
62
|
+
"coordinates": [
|
63
|
+
[
|
64
|
+
[
|
65
|
+
[102.0, 2.0],
|
66
|
+
[103.0, 2.0],
|
67
|
+
[103.0, 3.0],
|
68
|
+
[102.0, 3.0],
|
69
|
+
[102.0, 2.0]
|
70
|
+
]
|
71
|
+
],
|
72
|
+
[
|
73
|
+
[
|
74
|
+
[100.0, 0.0],
|
75
|
+
[101.0, 0.0],
|
76
|
+
[101.0, 1.0],
|
77
|
+
[100.0, 1.0],
|
78
|
+
[100.0, 0.0]
|
79
|
+
],
|
80
|
+
[
|
81
|
+
[100.2, 0.2],
|
82
|
+
[100.2, 0.8],
|
83
|
+
[100.8, 0.8],
|
84
|
+
[100.8, 0.2],
|
85
|
+
[100.2, 0.2]
|
86
|
+
]
|
87
|
+
]
|
88
|
+
]
|
89
|
+
}
|
90
|
+
]
|
@@ -0,0 +1,28 @@
|
|
1
|
+
[{
|
2
|
+
"gridRepresentation": {
|
3
|
+
"dimension": [{
|
4
|
+
"dimensionType": "dimensionType",
|
5
|
+
"dimensionSize": 9
|
6
|
+
},
|
7
|
+
{
|
8
|
+
"dimensionType": "dimensionType",
|
9
|
+
"dimensionSize": 9
|
10
|
+
}
|
11
|
+
],
|
12
|
+
"numberOfDimensions": 9,
|
13
|
+
"cellGeometry": "cellGeometry",
|
14
|
+
"transformationParameterAvailable": true
|
15
|
+
},
|
16
|
+
"checkPointAvailable": true,
|
17
|
+
"checkPointDescription": "checkPointDescription",
|
18
|
+
"cornerPoints": [
|
19
|
+
[0.0, 0.0],
|
20
|
+
[0.0, 1.0],
|
21
|
+
[1.0, 1.0],
|
22
|
+
[1.0, 0.0]
|
23
|
+
],
|
24
|
+
"centerPoint": [0.5, 0.5],
|
25
|
+
"pointInPixel": "pointInPixel",
|
26
|
+
"transformationDimensionDescription": "transformationDimensionDescription",
|
27
|
+
"transformationDimensionMapping": "transformationDimensionMapping"
|
28
|
+
}]
|
@@ -0,0 +1,25 @@
|
|
1
|
+
[{
|
2
|
+
"gridRepresentation": {
|
3
|
+
"numberOfDimensions": 9,
|
4
|
+
"dimension": [{
|
5
|
+
"dimensionType": "dimensionType",
|
6
|
+
"dimensionSize": 9
|
7
|
+
},
|
8
|
+
{
|
9
|
+
"dimensionType": "dimensionType",
|
10
|
+
"dimensionSize": 9
|
11
|
+
}
|
12
|
+
],
|
13
|
+
"cellGeometry": "cellGeometry",
|
14
|
+
"transformationParameterAvailable": true
|
15
|
+
},
|
16
|
+
"controlPointAvailable": true,
|
17
|
+
"orientationParameterAvailable": true,
|
18
|
+
"orientationParameterDescription": "orientationParameterDescription",
|
19
|
+
"georeferencedParameter": "georeferencedParameter",
|
20
|
+
"parameterCitation": [{
|
21
|
+
"title": "title"
|
22
|
+
}, {
|
23
|
+
"title": "title"
|
24
|
+
}]
|
25
|
+
}]
|
@@ -0,0 +1,33 @@
|
|
1
|
+
[{
|
2
|
+
"fileName": "fileName",
|
3
|
+
"fileDescription": "fileDescription",
|
4
|
+
"fileType": "fileType",
|
5
|
+
"fileConstraint": [{
|
6
|
+
"type": "use",
|
7
|
+
"useLimitation": [
|
8
|
+
"useLimitation0",
|
9
|
+
"useLimitation1"
|
10
|
+
]
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"type": "legal",
|
14
|
+
"legal": {
|
15
|
+
"useConstraint": [
|
16
|
+
"useConstraint0",
|
17
|
+
"useConstraint1"
|
18
|
+
],
|
19
|
+
"accessConstraint": [
|
20
|
+
"accessConstraint0",
|
21
|
+
"accessConstraint1"
|
22
|
+
],
|
23
|
+
"otherConstraint": [
|
24
|
+
"otherConstraint0",
|
25
|
+
"otherConstraint1"
|
26
|
+
]
|
27
|
+
}
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"fileUri": [{
|
31
|
+
"uri": "http://adiwg.org"
|
32
|
+
}]
|
33
|
+
}]
|
@@ -0,0 +1,14 @@
|
|
1
|
+
[{
|
2
|
+
"numberOfDimensions": 9,
|
3
|
+
"dimension": [{
|
4
|
+
"dimensionType": "dimensionType",
|
5
|
+
"dimensionSize": 9
|
6
|
+
},
|
7
|
+
{
|
8
|
+
"dimensionType": "dimensionType",
|
9
|
+
"dimensionSize": 9
|
10
|
+
}
|
11
|
+
],
|
12
|
+
"cellGeometry": "cellGeometry",
|
13
|
+
"transformationParameterAvailable": true
|
14
|
+
}]
|