zoukankan      html  css  js  c++  java
  • gdal和python在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 (http://sandbox.idre.ucla.edu/?p=779).

    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)GDALgdal-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)GDALgdalplugins

    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

  • 相关阅读:
    【转】常用 Java 静态代码分析工具的分析与比较
    转-SQL Server系列-我感觉自己不用写了,很清晰很有条理
    转-SQL Server Alwayson概念总结
    超级快的python vibora.io框架
    [转]做超炫图表,数据可视化的优雅实现方案 (硬核科普)
    统计资料下载论坛
    [FW]Windows7 Python-3.6 安装PyCrypto(pycrypto 2.6.1)出现错误以及解决方法
    国内外常用公共NTP网络时间服务器
    HTTP Error 500.24
    step7 microwin v4.0 sp9 win7 64位首次安装s7-200的软件,首次使用西门子软件,每次提示这个信息,怎么解决,网上有说,倒入注册表信息,按照下图进行操作还是不行,求各位高手指点一下,谢谢!
  • 原文地址:https://www.cnblogs.com/wang985850293/p/6264714.html
Copyright © 2011-2022 走看看