From 6228158532e50c9c650a8bf9454f354cd8a6d023 Mon Sep 17 00:00:00 2001 From: Dan Jones <danjon@noc.ac.uk> Date: Thu, 29 Aug 2024 09:33:47 +0100 Subject: [PATCH] feat: import geojson multi definitions --- generate_schema_config.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/generate_schema_config.py b/generate_schema_config.py index f0df964..d6c2115 100644 --- a/generate_schema_config.py +++ b/generate_schema_config.py @@ -191,6 +191,9 @@ def import_remote_refs(): "https://geojson.org/schema/Feature.json", "https://geojson.org/schema/FeatureCollection.json", "https://geojson.org/schema/LineString.json", + "https://geojson.org/schema/MultiLineString.json", + "https://geojson.org/schema/MultiPoint.json", + "https://geojson.org/schema/MultiPolygon.json", "https://geojson.org/schema/Point.json", "https://geojson.org/schema/Polygon.json", ] @@ -310,7 +313,7 @@ def get_options(): if __name__ == "__main__": import_remote_refs() - + # Parse script args config = get_options() -- GitLab