This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import requests | |
| from shapely.geometry import shape, mapping, MultiPolygon, GeometryCollection | |
| # --- Fetch JSON from GitHub --- | |
| URL = "https://raw.githubusercontent.com/periodo/periodo-places/2b0e7c9db27ada2fa9a73ab7e9a222b27ee827f2/gazetteers/subregions.json" | |
| print(f"Fetching data from {URL} ...") | |
| r = requests.get(URL) | |
| r.raise_for_status() | |
| data = r.json() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.