adiwg-mdjson_schemas 1.0.2 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bower.json +1 -1
- data/examples/citation.json +1 -0
- data/examples/coverageInfo.json +148 -0
- data/examples/dataDictionary.json +4 -2
- data/examples/distributor.json +36 -4
- data/examples/full_example.json +234 -17
- data/examples/gridInfo.json +23 -0
- data/examples/locale.json +5 -0
- data/lib/adiwg/mdjson_schemas/version.rb +1 -1
- data/schema/schema.json +1 -1
- data/schema/schema/citation.json +25 -0
- data/schema/schema/coverageInfo.json +303 -0
- data/schema/schema/dataDictionary.json +7 -0
- data/schema/schema/distributor.json +48 -3
- data/schema/schema/gridInfo.json +96 -0
- data/schema/schema/locale.json +32 -0
- data/schema/schema/metadata.json +9 -1
- data/schema/schema/resourceInfo.json +32 -3
- data/templates/mdJson_template.json +333 -8
- data/test/tc_schemas.rb +33 -0
- metadata +8 -2
@@ -0,0 +1,96 @@
|
|
1
|
+
{
|
2
|
+
"id": "gridInfo.json#",
|
3
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
4
|
+
"example": "../../examples/full_example.json#/metadata/resourceInfo/gridInfo/0",
|
5
|
+
"description": "Information about grid objects in the resource.",
|
6
|
+
"translation": {
|
7
|
+
"ISO 19115-2": ["MD_GridSpatialRepresentation"]
|
8
|
+
},
|
9
|
+
"type": "object",
|
10
|
+
"required": ["numberOfDimensions", "cellGeometry", "dimension"],
|
11
|
+
"additionalProperties": true,
|
12
|
+
"properties": {
|
13
|
+
"numberOfDimensions": {
|
14
|
+
"type": "number",
|
15
|
+
"description": "The number of independent spatial-temporal axes.",
|
16
|
+
"translation": {
|
17
|
+
"ISO 19115-2": ["MD_GridSpatialRepresentation > numberOfDimensions"]
|
18
|
+
}
|
19
|
+
},
|
20
|
+
"dimension": {
|
21
|
+
"type": "array",
|
22
|
+
"description": "Information about spatial-temporal axis properties.",
|
23
|
+
"translation": {
|
24
|
+
"ISO 19115-2": ["MD_GridSpatialRepresentation > axisDimensionProperties"]
|
25
|
+
},
|
26
|
+
"minItems": 1,
|
27
|
+
"items": {
|
28
|
+
"$ref": "#/definitions/dimension"
|
29
|
+
}
|
30
|
+
},
|
31
|
+
"cellGeometry": {
|
32
|
+
"type": "string",
|
33
|
+
"description": "Identification of grid data as point or cell.",
|
34
|
+
"translation": {
|
35
|
+
"ISO 19115-2": ["MD_GridSpatialRepresentation > cellGeometry"]
|
36
|
+
}
|
37
|
+
},
|
38
|
+
"transformationParameterAvailability": {
|
39
|
+
"type": "boolean",
|
40
|
+
"description": "An indication of whether or not parameters for transformation between image coordinates and geographic or map coordinates exist (are available).",
|
41
|
+
"translation": {
|
42
|
+
"ISO 19115-2": ["MD_GridSpatialRepresentation > transformationParameterAvailability"]
|
43
|
+
}
|
44
|
+
}
|
45
|
+
},
|
46
|
+
"definitions": {
|
47
|
+
"dimension": {
|
48
|
+
"type": "object",
|
49
|
+
"required": ["dimensionType", "dimensionSize"],
|
50
|
+
"properties": {
|
51
|
+
"dimensionType": {
|
52
|
+
"type": "string",
|
53
|
+
"description": "The type of dimension for this axis.",
|
54
|
+
"translation": {
|
55
|
+
"ISO 19115-2": ["MD_GridSpatialRepresentation > axisDimensionProperties > MD_Dimension > dimensionName > MD_DimensionNameTypeCode"]
|
56
|
+
}
|
57
|
+
},
|
58
|
+
"dimensionSize": {
|
59
|
+
"type": "integer",
|
60
|
+
"description": "The number of elements along the axis.",
|
61
|
+
"translation": {
|
62
|
+
"ISO 19115-2": ["MD_GridSpatialRepresentation > axisDimensionProperties > MD_Dimension > dimensionSize"]
|
63
|
+
}
|
64
|
+
},
|
65
|
+
"resolution": {
|
66
|
+
"type": "number",
|
67
|
+
"description": "Numeric Value that defines the degree of detail in the grid.",
|
68
|
+
"translation": {
|
69
|
+
"ISO 19115-2": ["MD_GridSpatialRepresentation > axisDimensionProperties > MD_Dimension > resolution"]
|
70
|
+
}
|
71
|
+
},
|
72
|
+
"resolutionUnit": {
|
73
|
+
"type": "string",
|
74
|
+
"description": "Unit of measure for the resolution.",
|
75
|
+
"translation": {
|
76
|
+
"ISO 19115-2": ["MD_GridSpatialRepresentation > axisDimensionProperties > MD_Dimension > resolution @uom"]
|
77
|
+
}
|
78
|
+
},
|
79
|
+
"dimensionTitle": {
|
80
|
+
"type": "string",
|
81
|
+
"description": "The name of the axis.",
|
82
|
+
"translation": {
|
83
|
+
"ISO 19115-2": [""]
|
84
|
+
}
|
85
|
+
},
|
86
|
+
"dimensionDescription": {
|
87
|
+
"type": "string",
|
88
|
+
"description": "The description of the axis.",
|
89
|
+
"translation": {
|
90
|
+
"ISO 19115-2": [""]
|
91
|
+
}
|
92
|
+
}
|
93
|
+
}
|
94
|
+
}
|
95
|
+
}
|
96
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
{
|
2
|
+
"id": "locale.json#",
|
3
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
4
|
+
"example": "../../examples/full_example.json#/metadata/resourceInfo/locale/0",
|
5
|
+
"description": "Localised language(s) and characterset(s) used within the resource being described.",
|
6
|
+
"type": "object",
|
7
|
+
"required": ["language", "characterSet"],
|
8
|
+
"additionalProperties": true,
|
9
|
+
"properties": {
|
10
|
+
"language": {
|
11
|
+
"type": "string",
|
12
|
+
"description": "Language(s) used within the resource. Should be a valid ISO 639-3 code.",
|
13
|
+
"translation": {
|
14
|
+
"ISO 19115-2": ["MD_DataIdentification > language"]
|
15
|
+
}
|
16
|
+
},
|
17
|
+
"characterSet": {
|
18
|
+
"type": "string",
|
19
|
+
"description": "Full name of the character encoding standard used by the resource(see http://www.iana.org/assignments/character-sets/character-sets.xhtml).",
|
20
|
+
"translation": {
|
21
|
+
"ISO 19115-2": ["MD_DataIdentification > characterSet [MD_CharacterSetCode]"]
|
22
|
+
}
|
23
|
+
},
|
24
|
+
"country": {
|
25
|
+
"type": "string",
|
26
|
+
"description": "Designation of the specific country of the locale language(ISO 3166-1).",
|
27
|
+
"translation": {
|
28
|
+
"ISO 19115-2": ["MD_DataIdentification > characterSet [MD_CharacterSetCode]"]
|
29
|
+
}
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
data/schema/schema/metadata.json
CHANGED
@@ -46,11 +46,19 @@
|
|
46
46
|
},
|
47
47
|
"metadataCharacterSet": {
|
48
48
|
"type": "string",
|
49
|
-
"
|
49
|
+
"deprecated": true,
|
50
|
+
"description": "Full name of the character coding standard used for the metadata set. NOTE:This property has been deprecated in favor of 'metadataLocale'.",
|
50
51
|
"translation": {
|
51
52
|
"ISO 19115-2": ["MI_Metadata > characterSet [MD_CharacterSetCode]"]
|
52
53
|
}
|
53
54
|
},
|
55
|
+
"metadataLocale": {
|
56
|
+
"type": "array",
|
57
|
+
"description": "Localised language(s) and characterset(s) used within the metadata record.",
|
58
|
+
"items": {
|
59
|
+
"$ref": "locale.json"
|
60
|
+
}
|
61
|
+
},
|
54
62
|
"metadataCreationDate": {
|
55
63
|
"$ref": "../schema.json#/definitions/date",
|
56
64
|
"description": "Date that the metadata was created.",
|
@@ -75,7 +75,8 @@
|
|
75
75
|
},
|
76
76
|
"language": {
|
77
77
|
"type": "array",
|
78
|
-
"
|
78
|
+
"deprecated": true,
|
79
|
+
"description": "Language(s) used within the resource. Should be a valid ISO 639-3 code. NOTE:This property has been deprecated in favor of 'locale'.",
|
79
80
|
"translation": {
|
80
81
|
"ISO 19115-2": ["MD_DataIdentification > language"]
|
81
82
|
},
|
@@ -85,7 +86,8 @@
|
|
85
86
|
},
|
86
87
|
"characterSet": {
|
87
88
|
"type": "array",
|
88
|
-
"
|
89
|
+
"deprecated": true,
|
90
|
+
"description": "Full name of the character encoding standard used by the resource. NOTE:This property has been deprecated in favor of 'locale'.",
|
89
91
|
"translation": {
|
90
92
|
"ISO 19115-2": ["MD_DataIdentification > characterSet [MD_CharacterSetCode]"]
|
91
93
|
},
|
@@ -93,6 +95,13 @@
|
|
93
95
|
"type": "string"
|
94
96
|
}
|
95
97
|
},
|
98
|
+
"locale": {
|
99
|
+
"type": "array",
|
100
|
+
"description": "Localised language(s) and characterset(s) used within the resource.",
|
101
|
+
"items": {
|
102
|
+
"$ref": "locale.json"
|
103
|
+
}
|
104
|
+
},
|
96
105
|
"purpose": {
|
97
106
|
"type": "string",
|
98
107
|
"description": "A summary of intentions for which the resource was created.",
|
@@ -235,7 +244,7 @@
|
|
235
244
|
"$ref": "taxonomy.json"
|
236
245
|
},
|
237
246
|
"spatialReferenceSystem": {
|
238
|
-
"description": "Geospatial referencing system
|
247
|
+
"description": "Geospatial referencing system used in the the data resource. The reference can be provided by an EPSG number, a named reference, or providing the parameters in a well known text (WKT) format.",
|
239
248
|
"example": "../../examples/spatialRef.json",
|
240
249
|
"translation": {
|
241
250
|
"ISO 19115-2": ["MD_Metadata > referenceSystemInfo > MD_ReferenceSystem > referenceSystemIdentifier > RS_Identifier > code"]
|
@@ -296,6 +305,26 @@
|
|
296
305
|
"$ref": "extent.json"
|
297
306
|
}
|
298
307
|
},
|
308
|
+
"gridInfo": {
|
309
|
+
"type": "array",
|
310
|
+
"description": "Information about grid objects in the resource.",
|
311
|
+
"translation": {
|
312
|
+
"ISO 19115-2": ["MD_GridSpatialRepresentation"]
|
313
|
+
},
|
314
|
+
"items": {
|
315
|
+
"$ref": "gridInfo.json"
|
316
|
+
}
|
317
|
+
},
|
318
|
+
"coverageInfo": {
|
319
|
+
"type": "array",
|
320
|
+
"description": "Details about the content of a raster(grid) resource.",
|
321
|
+
"translation": {
|
322
|
+
"ISO 19115-2": ["MI_Metadata > contentInfo"]
|
323
|
+
},
|
324
|
+
"items": {
|
325
|
+
"$ref": "coverageInfo.json"
|
326
|
+
}
|
327
|
+
},
|
299
328
|
"dataQualityInfo": {
|
300
329
|
"type": "array",
|
301
330
|
"description": "Information that describes the data quality, lineage, and/or processing steps that were applied to the whole or part of the data resource.",
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"version": {
|
3
3
|
"name": "mdJson",
|
4
|
-
"version": "1.0
|
4
|
+
"version": "1.1.0"
|
5
5
|
},
|
6
6
|
"contact": [
|
7
7
|
{
|
@@ -44,6 +44,7 @@
|
|
44
44
|
},
|
45
45
|
"parentMetadata": {
|
46
46
|
"title": "",
|
47
|
+
"alternateTitle": "",
|
47
48
|
"date": [
|
48
49
|
{
|
49
50
|
"date": "0000-00-00",
|
@@ -83,6 +84,13 @@
|
|
83
84
|
"metadataCreationDate": "0000-00-00",
|
84
85
|
"metadataLastUpdate": "0000-00-00",
|
85
86
|
"metadataCharacterSet": "utf8",
|
87
|
+
"metadataLocale": [
|
88
|
+
{
|
89
|
+
"language": "",
|
90
|
+
"country": "",
|
91
|
+
"characterSet": ""
|
92
|
+
}
|
93
|
+
],
|
86
94
|
"metadataUri": "http://thisisanexample.com",
|
87
95
|
"metadataStatus": "",
|
88
96
|
"metadataMaintenance": {
|
@@ -100,6 +108,7 @@
|
|
100
108
|
"resourceType": "",
|
101
109
|
"citation": {
|
102
110
|
"title": "",
|
111
|
+
"alternateTitle": "",
|
103
112
|
"date": [
|
104
113
|
{
|
105
114
|
"date": "0000-00-00",
|
@@ -120,6 +129,7 @@
|
|
120
129
|
"type": "",
|
121
130
|
"authority": {
|
122
131
|
"title": "",
|
132
|
+
"alternateTitle": "",
|
123
133
|
"date": [
|
124
134
|
{
|
125
135
|
"date": "0000-00-00",
|
@@ -172,6 +182,13 @@
|
|
172
182
|
"hasDataAvailable": true,
|
173
183
|
"language": [""],
|
174
184
|
"characterSet": [""],
|
185
|
+
"locale": [
|
186
|
+
{
|
187
|
+
"language": "",
|
188
|
+
"country": "",
|
189
|
+
"characterSet": ""
|
190
|
+
}
|
191
|
+
],
|
175
192
|
"purpose": "",
|
176
193
|
"credit": [""],
|
177
194
|
"topicCategory": [""],
|
@@ -188,6 +205,7 @@
|
|
188
205
|
"keywordType": "",
|
189
206
|
"thesaurus": {
|
190
207
|
"title": "",
|
208
|
+
"alternateTitle": "",
|
191
209
|
"date": [
|
192
210
|
{
|
193
211
|
"date": "0000-00-00",
|
@@ -208,6 +226,7 @@
|
|
208
226
|
"type": "",
|
209
227
|
"authority": {
|
210
228
|
"title": "",
|
229
|
+
"alternateTitle": "",
|
211
230
|
"date": [
|
212
231
|
{
|
213
232
|
"date": "0000-00-00",
|
@@ -298,6 +317,7 @@
|
|
298
317
|
"classificationSystem": [
|
299
318
|
{
|
300
319
|
"title": "",
|
320
|
+
"alternateTitle": "",
|
301
321
|
"date": [
|
302
322
|
{
|
303
323
|
"date": "0000-00-00",
|
@@ -318,6 +338,7 @@
|
|
318
338
|
"type": "",
|
319
339
|
"authority": {
|
320
340
|
"title": "",
|
341
|
+
"alternateTitle": "",
|
321
342
|
"date": [
|
322
343
|
{
|
323
344
|
"date": "0000-00-00",
|
@@ -592,6 +613,7 @@
|
|
592
613
|
"type": "",
|
593
614
|
"authority": {
|
594
615
|
"title": "",
|
616
|
+
"alternateTitle": "",
|
595
617
|
"date": [
|
596
618
|
{
|
597
619
|
"date": "0000-00-00",
|
@@ -665,6 +687,294 @@
|
|
665
687
|
]
|
666
688
|
}
|
667
689
|
],
|
690
|
+
"gridInfo": [
|
691
|
+
{
|
692
|
+
"numberOfDimensions": 9,
|
693
|
+
"dimension": [
|
694
|
+
{
|
695
|
+
"dimensionType": "",
|
696
|
+
"dimensionSize": 9,
|
697
|
+
"resolution": 9.99,
|
698
|
+
"resolutionUnit": "",
|
699
|
+
"dimensionTitle": "",
|
700
|
+
"dimensionDescription": ""
|
701
|
+
}
|
702
|
+
],
|
703
|
+
"cellGeometry": "",
|
704
|
+
"transformationParameterAvailability": false
|
705
|
+
}
|
706
|
+
],
|
707
|
+
"rasterInfo": [
|
708
|
+
{
|
709
|
+
"rasterDescription": "",
|
710
|
+
"processingLevel": {
|
711
|
+
"identifier": "",
|
712
|
+
"type": "",
|
713
|
+
"namespace": "",
|
714
|
+
"version": "",
|
715
|
+
"description": "",
|
716
|
+
"authority": {
|
717
|
+
"title": "",
|
718
|
+
"alternateTitle": "",
|
719
|
+
"date": [
|
720
|
+
{
|
721
|
+
"date": "",
|
722
|
+
"dateType": ""
|
723
|
+
}
|
724
|
+
],
|
725
|
+
"responsibleParty": [
|
726
|
+
{
|
727
|
+
"contactId": "",
|
728
|
+
"role": ""
|
729
|
+
}
|
730
|
+
],
|
731
|
+
"onlineResource": [
|
732
|
+
{
|
733
|
+
"uri": "",
|
734
|
+
"protocol": "",
|
735
|
+
"name": "",
|
736
|
+
"description": "",
|
737
|
+
"function": ""
|
738
|
+
}
|
739
|
+
]
|
740
|
+
}
|
741
|
+
},
|
742
|
+
"illuminationElevationAngle": 999.99,
|
743
|
+
"illuminationAzimuthAngle": 999.99,
|
744
|
+
"imagingCondition": "",
|
745
|
+
"imageQuality": {
|
746
|
+
"identifier": "",
|
747
|
+
"type": "",
|
748
|
+
"namespace": "",
|
749
|
+
"version": "",
|
750
|
+
"description": "",
|
751
|
+
"authority": {
|
752
|
+
"title": "",
|
753
|
+
"alternateTitle": "",
|
754
|
+
"date": [
|
755
|
+
{
|
756
|
+
"date": "",
|
757
|
+
"dateType": ""
|
758
|
+
}
|
759
|
+
],
|
760
|
+
"responsibleParty": [
|
761
|
+
{
|
762
|
+
"contactId": "",
|
763
|
+
"role": ""
|
764
|
+
}
|
765
|
+
],
|
766
|
+
"onlineResource": [
|
767
|
+
{
|
768
|
+
"uri": "",
|
769
|
+
"protocol": "",
|
770
|
+
"name": "",
|
771
|
+
"description": "",
|
772
|
+
"function": ""
|
773
|
+
}
|
774
|
+
]
|
775
|
+
}
|
776
|
+
},
|
777
|
+
"cloudCoverPercent": 999.99,
|
778
|
+
"compressionQuantity": 9,
|
779
|
+
"triangulationIndicator": true,
|
780
|
+
"radiometricCalibrationAvailable": true,
|
781
|
+
"cameraCalibrationAvailable": true,
|
782
|
+
"filmDistortionAvailable": true,
|
783
|
+
"lensDistortionAvailable": true,
|
784
|
+
"attributeGroup": [
|
785
|
+
{
|
786
|
+
"contentType": [""],
|
787
|
+
"attribute": [
|
788
|
+
{
|
789
|
+
"attributeName": "",
|
790
|
+
"attributeType": "",
|
791
|
+
"description": "",
|
792
|
+
"attributeDomain": [
|
793
|
+
{
|
794
|
+
"identifier": "",
|
795
|
+
"type": "",
|
796
|
+
"namespace": "",
|
797
|
+
"version": "",
|
798
|
+
"description": "",
|
799
|
+
"authority": {
|
800
|
+
"title": "",
|
801
|
+
"alternateTitle": "",
|
802
|
+
"date": [
|
803
|
+
{
|
804
|
+
"date": "",
|
805
|
+
"dateType": ""
|
806
|
+
}
|
807
|
+
],
|
808
|
+
"responsibleParty": [
|
809
|
+
{
|
810
|
+
"contactId": "",
|
811
|
+
"role": ""
|
812
|
+
}
|
813
|
+
],
|
814
|
+
"onlineResource": [
|
815
|
+
{
|
816
|
+
"uri": "",
|
817
|
+
"protocol": "",
|
818
|
+
"name": "",
|
819
|
+
"description": "",
|
820
|
+
"function": ""
|
821
|
+
}
|
822
|
+
]
|
823
|
+
}
|
824
|
+
}
|
825
|
+
],
|
826
|
+
"maxValue": 999.99,
|
827
|
+
"minValue": 999.99,
|
828
|
+
"units": "",
|
829
|
+
"scaleFactor": 999.99,
|
830
|
+
"offset": 999.99,
|
831
|
+
"meanValue": 999.99,
|
832
|
+
"numberOfValues": 9,
|
833
|
+
"standardDeviation": 999.999,
|
834
|
+
"bitsPerValue": 8,
|
835
|
+
"sensorMax": 999.99,
|
836
|
+
"sensorMin": 999.99,
|
837
|
+
"sensorUnit": "",
|
838
|
+
"peakResponse": 999.99,
|
839
|
+
"toneGradation": 9
|
840
|
+
}
|
841
|
+
]
|
842
|
+
}
|
843
|
+
]
|
844
|
+
}
|
845
|
+
],
|
846
|
+
"gridInfo": [
|
847
|
+
{
|
848
|
+
"numberOfDimensions": 9,
|
849
|
+
"dimension": [
|
850
|
+
{
|
851
|
+
"dimensionType": "",
|
852
|
+
"dimensionSize": 9,
|
853
|
+
"resolution": 9,
|
854
|
+
"resolutionUnit": "",
|
855
|
+
"dimensionTitle": "",
|
856
|
+
"dimensionDescription": ""
|
857
|
+
}
|
858
|
+
],
|
859
|
+
"cellGeometry": "",
|
860
|
+
"transformationParameterAvailability": false
|
861
|
+
}
|
862
|
+
],
|
863
|
+
"coverageInfo": [
|
864
|
+
{
|
865
|
+
"coverageType": "",
|
866
|
+
"coverageName": "",
|
867
|
+
"coverageDescription": "",
|
868
|
+
"processingLevel": {
|
869
|
+
"identifier": "",
|
870
|
+
"type": "",
|
871
|
+
"namespace": "",
|
872
|
+
"version": "",
|
873
|
+
"description": "",
|
874
|
+
"authority": {
|
875
|
+
"title": "",
|
876
|
+
"alternateTitle": "",
|
877
|
+
"date": [
|
878
|
+
{
|
879
|
+
"date": "1111-11-11",
|
880
|
+
"dateType": ""
|
881
|
+
}
|
882
|
+
],
|
883
|
+
"responsibleParty": [
|
884
|
+
{
|
885
|
+
"contactId": "",
|
886
|
+
"role": ""
|
887
|
+
}
|
888
|
+
],
|
889
|
+
"onlineResource": [
|
890
|
+
{
|
891
|
+
"uri": "http://thisisanexample.com",
|
892
|
+
"protocol": "",
|
893
|
+
"name": "",
|
894
|
+
"description": "",
|
895
|
+
"function": ""
|
896
|
+
}
|
897
|
+
]
|
898
|
+
}
|
899
|
+
},
|
900
|
+
"coverageItem": [
|
901
|
+
{
|
902
|
+
"itemName": "",
|
903
|
+
"itemType": "",
|
904
|
+
"itemDescription": "",
|
905
|
+
"minValue": 999.99,
|
906
|
+
"maxValue": 999.99,
|
907
|
+
"units": "",
|
908
|
+
"scaleFactor": 999.99,
|
909
|
+
"offset": 999.99,
|
910
|
+
"meanValue": 999.99,
|
911
|
+
"standardDeviation": 999.99,
|
912
|
+
"bitsPerValue": 9,
|
913
|
+
"classifiedData": {
|
914
|
+
"numberOfClasses": 9,
|
915
|
+
"classifiedDataItem": [
|
916
|
+
{
|
917
|
+
"className": "",
|
918
|
+
"classDescription": "",
|
919
|
+
"classValue": 999.99
|
920
|
+
}
|
921
|
+
]
|
922
|
+
},
|
923
|
+
"sensorInfo": {
|
924
|
+
"toneGradations": 9,
|
925
|
+
"sensorMin": 999.99,
|
926
|
+
"sensorMax": 999.99,
|
927
|
+
"sensorUnits": "",
|
928
|
+
"sensorPeakResponse": 999.99
|
929
|
+
}
|
930
|
+
}
|
931
|
+
],
|
932
|
+
"imageInfo": {
|
933
|
+
"illuminationElevationAngle": 999.99,
|
934
|
+
"illuminationAzimuthAngle": 999.99,
|
935
|
+
"imagingCondition": "",
|
936
|
+
"imageQuality": {
|
937
|
+
"identifier": "",
|
938
|
+
"type": "",
|
939
|
+
"namespace": "",
|
940
|
+
"version": "",
|
941
|
+
"description": "",
|
942
|
+
"authority": {
|
943
|
+
"title": "",
|
944
|
+
"alternateTitle": "",
|
945
|
+
"date": [
|
946
|
+
{
|
947
|
+
"date": "1111-11-11",
|
948
|
+
"dateType": ""
|
949
|
+
}
|
950
|
+
],
|
951
|
+
"responsibleParty": [
|
952
|
+
{
|
953
|
+
"contactId": "",
|
954
|
+
"role": ""
|
955
|
+
}
|
956
|
+
],
|
957
|
+
"onlineResource": [
|
958
|
+
{
|
959
|
+
"uri": "http://thisisanexample.com",
|
960
|
+
"protocol": "",
|
961
|
+
"name": "",
|
962
|
+
"description": "",
|
963
|
+
"function": ""
|
964
|
+
}
|
965
|
+
]
|
966
|
+
}
|
967
|
+
},
|
968
|
+
"cloudCoverPercent": 99.99,
|
969
|
+
"compressionQuantity": 9,
|
970
|
+
"triangulationIndicator": true,
|
971
|
+
"radiometricCalibrationAvailable": true,
|
972
|
+
"cameraCalibrationAvailable": true,
|
973
|
+
"filmDistortionAvailable": true,
|
974
|
+
"lensDistortionAvailable": true
|
975
|
+
}
|
976
|
+
}
|
977
|
+
],
|
668
978
|
"dataQualityInfo": [
|
669
979
|
{
|
670
980
|
"scope": "",
|
@@ -689,6 +999,7 @@
|
|
689
999
|
"description": "",
|
690
1000
|
"citation": {
|
691
1001
|
"title": "",
|
1002
|
+
"alternateTitle": "",
|
692
1003
|
"date": [
|
693
1004
|
{
|
694
1005
|
"date": "0000-00-00",
|
@@ -709,6 +1020,7 @@
|
|
709
1020
|
"type": "",
|
710
1021
|
"authority": {
|
711
1022
|
"title": "",
|
1023
|
+
"alternateTitle": "",
|
712
1024
|
"date": [
|
713
1025
|
{
|
714
1026
|
"date": "0000-00-00",
|
@@ -769,14 +1081,17 @@
|
|
769
1081
|
"turnaround": ""
|
770
1082
|
}
|
771
1083
|
],
|
772
|
-
"distributorFormat": [
|
773
|
-
{
|
774
|
-
"formatName": "",
|
775
|
-
"version": ""
|
776
|
-
}
|
777
|
-
],
|
778
1084
|
"distributorTransferOptions": [
|
779
1085
|
{
|
1086
|
+
"distributorFormat": [
|
1087
|
+
{
|
1088
|
+
"formatName": "",
|
1089
|
+
"version": "",
|
1090
|
+
"compressionMethod": ""
|
1091
|
+
}
|
1092
|
+
],
|
1093
|
+
"transferSize": 9.9,
|
1094
|
+
"transferSizeUnits": "kB",
|
780
1095
|
"online": [
|
781
1096
|
{
|
782
1097
|
"uri": "http://thisisanexample.com",
|
@@ -788,6 +1103,8 @@
|
|
788
1103
|
],
|
789
1104
|
"offline": {
|
790
1105
|
"name": "",
|
1106
|
+
"mediumCapacity": 9.9,
|
1107
|
+
"mediumCapacityUnits": "GB",
|
791
1108
|
"mediumFormat": "",
|
792
1109
|
"mediumNote": ""
|
793
1110
|
}
|
@@ -802,6 +1119,7 @@
|
|
802
1119
|
"resourceType": "",
|
803
1120
|
"resourceCitation": {
|
804
1121
|
"title": "",
|
1122
|
+
"alternateTitle": "",
|
805
1123
|
"date": [
|
806
1124
|
{
|
807
1125
|
"date": "0000-00-00",
|
@@ -822,6 +1140,7 @@
|
|
822
1140
|
"type": "",
|
823
1141
|
"authority": {
|
824
1142
|
"title": "",
|
1143
|
+
"alternateTitle": "",
|
825
1144
|
"date": [
|
826
1145
|
{
|
827
1146
|
"date": "0000-00-00",
|
@@ -858,6 +1177,7 @@
|
|
858
1177
|
},
|
859
1178
|
"metadataCitation": {
|
860
1179
|
"title": "",
|
1180
|
+
"alternateTitle": "",
|
861
1181
|
"date": [
|
862
1182
|
{
|
863
1183
|
"date": "0000-00-00",
|
@@ -878,6 +1198,7 @@
|
|
878
1198
|
"type": "",
|
879
1199
|
"authority": {
|
880
1200
|
"title": "",
|
1201
|
+
"alternateTitle": "",
|
881
1202
|
"date": [
|
882
1203
|
{
|
883
1204
|
"date": "0000-00-00",
|
@@ -919,6 +1240,7 @@
|
|
919
1240
|
"resourceType": "",
|
920
1241
|
"citation": {
|
921
1242
|
"title": "",
|
1243
|
+
"alternateTitle": "",
|
922
1244
|
"date": [
|
923
1245
|
{
|
924
1246
|
"date": "0000-00-00",
|
@@ -939,6 +1261,7 @@
|
|
939
1261
|
"type": "",
|
940
1262
|
"authority": {
|
941
1263
|
"title": "",
|
1264
|
+
"alternateTitle": "",
|
942
1265
|
"date": [
|
943
1266
|
{
|
944
1267
|
"date": "0000-00-00",
|
@@ -981,6 +1304,7 @@
|
|
981
1304
|
"dictionaryInfo": {
|
982
1305
|
"citation": {
|
983
1306
|
"title": "",
|
1307
|
+
"alternateTitle": "",
|
984
1308
|
"date": [
|
985
1309
|
{
|
986
1310
|
"date": "0000-00-00",
|
@@ -1006,7 +1330,8 @@
|
|
1006
1330
|
},
|
1007
1331
|
"description": "",
|
1008
1332
|
"resourceType": "",
|
1009
|
-
"language": ""
|
1333
|
+
"language": "",
|
1334
|
+
"includedWithDataset": true
|
1010
1335
|
},
|
1011
1336
|
"domain": [
|
1012
1337
|
{
|