Getting started with gdal

Other topics

Remarks:

GDAL (Geospatial Data Abstraction Library) is a computer software library that provides tools for manipulating raster and vector geospatial data.

Installation on Linux

GDAL is available in the default repositories of most popular Linux distributions and can be installed in the same way that packages in a Linux distribution are usually installed.

apt-get install libgdal-dev

CPLUS_INCLUDE_PATH and C_INCLUDE_PATH are necessary in order to include these corresponding libraries.

export CPLUS_INCLUDE_PATH=/usr/include/gdal

export C_INCLUDE_PATH=/usr/include/gdal

GDAL can also be installed with Python's package manager pip.

xe pip install gdal

Contributors

Topic Id: 7667

Example Ids: 25193

This site is not affiliated with any of the contributors.