Python Gis Ecosystem 31 Export Vector To File

Sub-skill of python-gis-ecosystem: 3.1 Export Vector to File (+1).

vamseeachanta Updated

File contents

3.1 Export Vector to File (+1)

3.1 Export Vector to File

# GeoPackage (preferred)
gdf_utm.to_file("wells_utm.gpkg", driver="GPKG", layer="wells")

# GeoJSON (web interchange, WGS84 expected)
gdf.to_file("wells.geojson", driver="GeoJSON")

# Shapefile (legacy)
gdf.to_file("wells.shp")

3.2 Export Raster (Rasterio)

import rasterio
from rasterio.transform import from_bounds

profile = {
    "driver": "GTiff", "dtype": "float32",
    "width": arr.shape[1], "height": arr.shape[0],
    "count": 1, "crs": "EPSG:32631",
    "transform": from_bounds(x_min, y_min, x_max, y_max,
                              arr.shape[1], arr.shape[0]),
    "compress": "lzw", "nodata": -9999
}
with rasterio.open("output.tif", "w", **profile) as dst:
    dst.write(arr.astype("float32"), 1)

vamseeachanta/workspace-hub/tree/main/.agents/skills/_archive/engineering/gis/python-gis-ecosystem/31-export-vector-to-file commit b74ead22e3

Frequently asked questions

npx skillmds@latest add vamseeachanta/python-gis-ecosystem-31-export-vector-to-file