Load/save geospatial data compatible with the GeoStats.jl framework.
GeoIO.jl uses various backend packages that are spread across different Julia organizations to load and save the universal representation of geospatial data described in the book Geospatial Data Science with Julia.
The load
and save
functions are self-explanatory:
using GeoIO
table = GeoIO.load("file.shp")
GeoIO.save("file.gpkg", table)
Additional keyword arguments are forwarded to the backends.
To see the formats supported by GeoIO.jl, use the formats
function.
Below is the output generated on May 9, 2025:
julia> GeoIO.formats()
┌───────────┬─────────────────┬───────────────┐
│ extension │ load │ save │
├───────────┼─────────────────┼───────────────┤
│ .csv │ CSV.jl │ CSV.jl │
│ .geojson │ GeoJSON.jl │ GeoJSON.jl │
│ .gpkg │ ArchGDAL.jl │ ArchGDAL.jl │
│ .grib │ GRIBDatasets.jl │ │
│ .gslib │ GslibIO.jl │ GslibIO.jl │
│ .jpeg │ ImageIO.jl │ ImageIO.jl │
│ .jpg │ ImageIO.jl │ ImageIO.jl │
│ .kml │ ArchGDAL.jl │ │
│ .msh │ GeoIO.jl │ GeoIO.jl │
│ .nc │ NCDatasets.jl │ NCDatasets.jl │
│ .obj │ GeoIO.jl │ GeoIO.jl │
│ .off │ GeoIO.jl │ GeoIO.jl │
│ .parquet │ GeoParquet.jl │ GeoParquet.jl │
│ .ply │ PlyIO.jl │ PlyIO.jl │
│ .png │ ImageIO.jl │ ImageIO.jl │
│ .shp │ Shapefile.jl │ Shapefile.jl │
│ .stl │ GeoIO.jl │ GeoIO.jl │
│ .tif │ GeoTIFF.jl │ GeoTIFF.jl │
│ .tiff │ GeoTIFF.jl │ GeoTIFF.jl │
│ .vti │ ReadVTK.jl │ WriteVTK.jl │
│ .vtp │ ReadVTK.jl │ WriteVTK.jl │
│ .vtr │ ReadVTK.jl │ WriteVTK.jl │
│ .vts │ ReadVTK.jl │ WriteVTK.jl │
│ .vtu │ ReadVTK.jl │ WriteVTK.jl │
└───────────┴─────────────────┴───────────────┘
Please read the docstrings for more details.
If you have any questions, please contact our community.