Sha256: 898fddf9aa3b1e20f3df5b09fad156d8efbbb0af7a0db4ea2b10751d2dd99558
Contents?: true
Size: 1.58 KB
Versions: 22
Compression:
Stored size: 1.58 KB
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "spatialReference.json#", "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.", "example": "../examples/spatialReference.json", "translation": { "ISO 19115-2": ["MD_Metadata > referenceSystemInfo > MD_ReferenceSystem > referenceSystemIdentifier > RS_Identifier > code"] }, "type": "object", "additionalProperties": true, "properties": { "referenceSystemType": { "type": "string", "description": "Type of reference system used.", "translation": {}, "codelist": "iso_referenceSystemType", "minLength": 1 }, "referenceSystemIdentifier": { "$ref": "./identifier.json#", "description": "The reference system identifier or definition." }, "referenceSystemWKT":{ "type": "string", "description": "Well Known Text (WKT) for spatial reference system." }, "referenceSystemParameterSet":{ "$ref": "./referenceSystemParameterSet.json#" } }, "anyOf": [{ "title": "referenceSystemType is required", "required": ["referenceSystemType"] }, { "title": "referenceSystemIdentifier is required", "required": ["referenceSystemIdentifier"] }, { "title": "referenceSystemWKT is required", "required": ["referenceSystemWKT"] }, { "title": "referenceSystemParameterSet is required", "required": ["referenceSystemParameterSet"] } ] }
Version data entries
22 entries across 22 versions & 1 rubygems