### List Supported GeoIO.jl Formats Source: https://github.com/juliaearth/geoio.jl/blob/master/README.md Shows how to use the `formats` function in GeoIO.jl to retrieve a table of supported file extensions and their corresponding load/save backend packages. This output is a snapshot from a specific date. ```julia 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 │ └───────────┴─────────────────┴───────────────┘ ``` -------------------------------- ### Load and Save Geospatial Data Source: https://github.com/juliaearth/geoio.jl/blob/master/README.md Demonstrates the basic usage of the `load` and `save` functions in GeoIO.jl to read data from a file and write it to another. Additional keyword arguments can be passed to the underlying backend packages. ```julia using GeoIO table = GeoIO.load("file.shp") GeoIO.save("file.gpkg", table) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.