Source code for geopulse.io.geojson

"""GeoJSON reader for network topologies — STUB (WP2)."""

from __future__ import annotations

from pathlib import Path

from geopulse.exceptions import NotImplementedYetError

__all__ = ["read_geojson"]


[docs] def read_geojson(path: str | Path): """Read a network topology from a GeoJSON file (WP2).""" raise NotImplementedYetError("read_geojson", "WP2")