Installation
Since GeoDataFrames.jl is registered in the Julia General registry, you can simply run the following command in the Julia REPL:
julia> using Pkg
julia> Pkg.add("GeoDataFrames.jl")
# or
julia> ] # ']' should be pressed
pkg> add GeoDataFramesIf you want to use the latest unreleased version, you can run the following command:
pkg> add GeoDataFrames#mainExtensions
GeoDataFrames depends on (Arch)GDAL to load and save data by default. However, for several file formats, there now exist native Julia packages that can be used as backends. Before using the native backend for specific file format, you must install and load its corresponding package.
Keyword arguments passed to `read` and `write` when using these native backends differ from those when using the ArchGDAL backend. Please refer to the documentation of the corresponding package for details.
using Pkg
Pkg.add("GeoJSON")using Pkg
Pkg.add("GeoArrow")using Pkg
Pkg.add("GeoParquet")using Pkg
Pkg.add("Shapefile")using Pkg
Pkg.add("FlatGeobuf")See the File formats section for more details on the supported file formats and their corresponding native backends.