Created
June 23, 2023 12:05
-
-
Save perrygeo/e408afa2875ab9591fb3ae96a88220d7 to your computer and use it in GitHub Desktop.
Convert Open Street Map data into TileDB arrays
This file contains 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
# Using osm.pbf extracts from https://download.geofabrik.de/index.html | |
# Requires GDAL 3.7+ with the TileDB driver | |
ogr2ogr -f TileDB ./dc-lines district-of-columbia-latest.osm.pbf lines | |
ogr2ogr -f TileDB ./dc-points district-of-columbia-latest.osm.pbf points | |
ogr2ogr -f TileDB ./dc-polygons district-of-columbia-latest.osm.pbf multipolygons |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment