Verified Commit 2316c1dd authored by Dan Jones's avatar Dan Jones
Browse files

feat: import geojson multi definitions

parent 5e0ee51a
...@@ -191,6 +191,9 @@ def import_remote_refs(): ...@@ -191,6 +191,9 @@ def import_remote_refs():
"https://geojson.org/schema/Feature.json", "https://geojson.org/schema/Feature.json",
"https://geojson.org/schema/FeatureCollection.json", "https://geojson.org/schema/FeatureCollection.json",
"https://geojson.org/schema/LineString.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/Point.json",
"https://geojson.org/schema/Polygon.json", "https://geojson.org/schema/Polygon.json",
] ]
...@@ -310,7 +313,7 @@ def get_options(): ...@@ -310,7 +313,7 @@ def get_options():
if __name__ == "__main__": if __name__ == "__main__":
import_remote_refs() import_remote_refs()
# Parse script args # Parse script args
config = get_options() config = get_options()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment