Installing GDAL for Windows

GDAL is a useful command line tool to process spatial data, if you haven’t heard of the tool before some examples of what it can do are:

  • Create contours from a DEM
  • Create a TMS tile structure
  • Rasterize vector into a raster file
  • Build a quick mosaic from a set of images

Each of the above functions are python scripts which can be run from the command-line once GDAL is successfully installed.

This tutorial covers how to install GDAL on a Windows PC, if you are interested in getting GDAL running on a Mac please go here (https://sandbox.idre.ucla.edu/sandbox/general/how-to-install-and-run-gdal)

Step 1: Install Python

Python is necessary for GDAL, and if you already have an installation of Python then skip to step 4 below.

1. Feel free to download the latest 2.7x version of python (rather than the 3.x python version).

The python version used for this tutorial can be downloaded here:

https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi

2. Install python with the default options and directories.

3. After installation, go to Python –> IDLE (Python GUI) to find out what version of Python you are using:

2015-02-23 10_27_08-Start menu

4. Make a note of the number that shows the version of your Python in the top right, as highlighted below:

pythonShellHighlight

Note: MSC v.1500  may differ if you are using a different Python installation, if it does then please make a note of that number. Note, if you installed the 64-bit version of Python, for the rest of the tutorial please remove the (x86) from the paths.

Step 2: Install GDAL

1. Head over to Tamas Szekeres’ Windows binaries and download the appropriate GDAL Binary.

For this tutorial, we are using the MSC v.1500 on a 32-bit system, the picture below illustrates how to match the version with your own python version. The blue highlight is where you should look for either 64-bit or 32-bit systems, and the green shows the release-1500 number which should match the number from IDLE in step 4 above.

gdaload

2. Clicking the link will take you to the list of binaries (installers) to download.

gdalist

3. Locate the “core” installer, which has most of the components for GDAL.

 gdalCoreInstall

4. After downloading your version, install GDAL with standard settings.

5. Next, return to the list of GDAL binaries and install the python bindings for your version of Python, this can either be 2.7, 3.1, or 3.2.

Recall that we had installed Python 2.7 earlier, so we have to locate this version, as seen below:

gdalPython

6. Download the Python bindings and install them.

Step 3: Adding Path Variables:

We need to tell Windows system where the GDAL installations are located, so we need to add some system variables.

1. Right click on “Computer” on the desktop and go to “Properties”:

2015-02-23 13_53_20-Program Manager

2. Click on Advanced System Properties

2015-02-23 14_48_14-System

3. Select Environment Variables.

2015-02-23 14_49_25-System Properties

4. Under the System variables pane, find the ‘Path’ variable, then click on Edit.

pathVariable

5. Go to the end of the box and copy and paste the following:

;C:\Program Files (x86)\GDAL

Note: For 64-bit GDAL installations you would simply remove the (x86) after Program Files.

6. In the same System variables pane, click on “New” and then add the following in the dialogue box:

Variable name: GDAL_DATA

Variable value: C:\Program Files (x86)\GDAL\gdal-data

New System Variable

7. Click “OK”

8. Add one more new variable by clicking “New…”

10. Add the following in the dialogue box:

Variable name: GDAL_DRIVER_PATH

Variable value: C:\Program Files (x86)\GDAL\gdalplugins

11. Click “OK”

Step 4: Testing the GDAL install

1. Open the Windows command line, by going to the Start Menu -> Run ->Type in cmd and press Enter.

2. Type in

gdalinfo --version

3. Press Enter.

4. If you get the following result, then congratulations your GDAL installation worked smoothly!

2015-02-24 11_23_21-Command Prompt