Skip to content

OSGeo/gdal-grass

Repository files navigation

Introduction

Description: GRASS GIS extension for the GDAL library

GDAL is a translator library for raster geospatial data formats. As a library, it presents a single abstract data model to the calling application for all supported formats. This extension provides access to GRASS data via GDAL.

This package contains the two standalone GDAL-GRASS GIS drivers, the raster driver and the vector driver for GRASS GIS raster and vector file support in GDAL.

This approach avoids circular dependencies with GRASS depending on GDAL, but GDAL with GRASS support depending on GRASS. With this driver package you configure and install GDAL normally, then build and install GRASS normally and finally build and install this driver in GDAL's "autoload" directory.

Installation

To build this driver it is necessary for it to find GDAL and GRASS support files.

Building with Autotools:

(to be deprecated after 1.0.3 release)

Typically the configure and build process would look something like with Autotools:

./configure --with-gdal=/usr/bin/gdal-config \
            --with-grass=/usr/grass
make
sudo make install

Building with CMake:

cd gdal-grass
mkdir build && cd build
cmake ..
cmake --build .
cmake --install .

CMake usually works out the location of GDAL and GRASS, but at times you may need/wish to set some configurations manually, e.g.:

cmake .. -DAUTOLOAD_DIR=/opt/local/lib/gdalplugins \
         -DGDAL_CONFIG_PREFER_PATH=/opt/local/bin \
         -DGRASS_BIN_PREFER_PATH=/opt/local/bin

Usage

Set the driver path:

GDAL_DRIVER_PATH="/usr/lib/gdalplugins"

Access GRASS GIS raster data from GDAL:

gdalinfo $HOME/grassdata/nc_spm_08_grass7/PERMANENT/cellhd/elevation

Access GRASS GIS vector data from GDAL-OGR:

ogrinfo -so -al $HOME/grassdata/nc_spm_08_grass7/PERMANENT/vector/zipcodes/head

Where is the gdal-grass driver available?

Version number has been restarted

Note that during the transit of this driver out of core GDAL we have decided to reset the version numbering back to 1.

So: older packages show 3.x which the new driver is 1.x (or later).

Release management

List of milestones.

Tracking upstream changes

The release policies of the GDAL-GRASS driver are (so far) fairly simple:

  • we follow the GDAL development for their breaking changes:
    • as of 2022, any GDAL 2+ and GDAL 3+ version is compliant, with GDAL 3+ recommended.
  • we follow the GRASS GIS development for their breaking changes:
    • as of 2022, any GRASS GIS 7+ and GRASS GIS 8+ version is compliant, with GRASS GIS 8+ recommended.

We expect low maintenance needs for this driver.

Using milestones

For easier planning, each issue and pull request will be assigned to a milestone.

QA / CI

Any pull request opened in this repository is compiled and tested with GitHub Actions against the GDAL version included in Ubuntu (see related CI workflow). Improvements and other workflows are welcome, ideally as a pull request.

Found a bug?

Please open an issue describing the problem along with a reproducible example.

Who is involved here?

Please see the list of contributors.