1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
from __future__ import annotations
import msgspec
Position = tuple[float, float]
# Define the 7 standard Geometry types.
# All types set `tag=True`, meaning that they'll make use of a `type` field to
# disambiguate between types when decoding.
class Point(msgspec.Struct, tag=True):
coordinates: Position
class MultiPoint(msgspec.Struct, tag=True):
coordinates: list[Position]
class LineString(msgspec.Struct, tag=True):
coordinates: list[Position]
class MultiLineString(msgspec.Struct, tag=True):
coordinates: list[list[Position]]
class Polygon(msgspec.Struct, tag=True):
coordinates: list[list[Position]]
class MultiPolygon(msgspec.Struct, tag=True):
coordinates: list[list[list[Position]]]
class GeometryCollection(msgspec.Struct, tag=True):
geometries: list[Geometry]
Geometry = (
Point
| MultiPoint
| LineString
| MultiLineString
| Polygon
| MultiPolygon
| GeometryCollection
)
# Define the two Feature types
class Feature(msgspec.Struct, tag=True):
geometry: Geometry | None = None
properties: dict | None = None
id: str | int | None = None
class FeatureCollection(msgspec.Struct, tag=True):
features: list[Feature]
# A union of all 9 GeoJSON types
GeoJSON = Geometry | Feature | FeatureCollection
# Create a decoder and an encoder to use for decoding & encoding GeoJSON types
loads = msgspec.json.Decoder(GeoJSON).decode
dumps = msgspec.json.Encoder().encode
|