diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-11-02 15:43:42 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-11-02 15:43:42 +0100 |
| commit | 31fd3de9c2b2f823c01b3c2dbadddf4a7101fa16 (patch) | |
| tree | 08a18c05d5138ad6af8e5a506bccded6c22614ed /data/projjson.schema.json | |
| parent | 3b25b5011fcb04ea56a98cf6fa5fcdb9c9aa36ae (diff) | |
| download | PROJ-31fd3de9c2b2f823c01b3c2dbadddf4a7101fa16.tar.gz PROJ-31fd3de9c2b2f823c01b3c2dbadddf4a7101fa16.zip | |
WKT and PROJJSON: add import/export of geoid model of VertCRS
Diffstat (limited to 'data/projjson.schema.json')
| -rw-r--r-- | data/projjson.schema.json | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/data/projjson.schema.json b/data/projjson.schema.json index 60fca6df..e71e5031 100644 --- a/data/projjson.schema.json +++ b/data/projjson.schema.json @@ -1,5 +1,5 @@ { - "$id": "https://proj.org/schemas/v0.1/projjson.schema.json", + "$id": "https://proj.org/schemas/v0.2/projjson.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "description": "Schema for PROJJSON", "$comment": "This file exists both in data/ and in schemas/vXXX/. Keep both in sync. And if changing the value of $id, change PROJJSON_CURRENT_VERSION accordingly in io.cpp", @@ -932,6 +932,15 @@ }, "datum_ensemble": { "$ref": "#/definitions/datum_ensemble" }, "coordinate_system": { "$ref": "#/definitions/coordinate_system" }, + "geoid_model": { + "type": "object", + "properties": { + "name": { "type": "string" }, + "id": { "$ref": "#/definitions/id" } + }, + "required" : [ "name" ], + "additionalProperties": false + }, "$schema" : {}, "scope": {}, "area": {}, |
