ArchGDAL.jl documentation

ArchGDAL.jl documentation

GDAL is a translator library for raster and vector geospatial data formats that is released under an X/MIT license by the Open Source Geospatial Foundation. As a library, it presents an abstract data model to drivers for various raster and vector formats.

ArchGDAL.jl aims to be a complete solution for working with GDAL in Julia, similar in scope to the SWIG bindings for Python. It builds on top of GDAL.jl, and provides a high level API for GDAL, espousing the following principles.

Principles (The Arch Way)

(adapted from https://wiki.archlinux.org/index.php/Arch_Linux#Principles)

Installation

To install this package, run the following command in the Pkg REPL-mode,

pkg> add ArchGDAL

To test if it is installed correctly,

pkg> test ArchGDAL

To load the package,

julia> using ArchGDAL

In the documentation AG is often used as a shorthand for ArchGDAL. To use this shorthand you can use:

using ArchGDAL
const AG = ArchGDAL

Contents