GDAL的安装和配置(编译proj.4)

1.下载地址

  http://trac.osgeo.org/gdal/wiki/DownloadSource

  下面是两个版本:

  http://pan.baidu.com/s/1bntuXER  (1.10.0 - April 2013)

  http://pan.baidu.com/s/1i35ZY2x   (2.0.0 Latest Stable Release - June 2015)

2.编译安装(vs2008命令行编译)

  在开始菜单中找到“所有程序——>Microsoft Visual Studio 2008-->Visual Studio Tool-->Visual Studio2008 命令提示行”如图所示

  GDAL的安装和配置(编译proj.4)

使用cd /d D:\Downloads\gdal-2.0.0命令切换到源代码目录,如图

GDAL的安装和配置(编译proj.4)

然后依次执行下列命令:

namke -f makefile.vc

nmake -f makefile.vc install

nmake -f makefile.vc devinstall

下面是清理命令

nmake -f makefile.vc clean

nmake -f makefile.vcMSVC_VER=1400 clean

nmake -f makefile.vcMSVC_VER=1400 DEBUG = 1

最后一个表示编译GDAL库的debug模式,可以用来调试GDAL源码。

补充:编译proj.4 实现坐标系转换功能

(官网)http://trac.osgeo.org/proj/wiki/ProjAPI

(下载地址)https://github.com/OSGeo/proj.4

GDAL的安装和配置(编译proj.4)

重新生成gdal:

修改gdal中nmake.opt文件中的目录即可

GDAL的安装和配置(编译proj.4)

然后重新编译gdal后gdal就带有坐标转换功能了。

写一个wgs84转utm的例子 :http://www.cnblogs.com/lwngreat/p/4655605.html

下载地址(包含有坐标转换功能的GDAL):http://pan.baidu.com/s/1pJMKauf

编译好之后:主要使用include文件夹下的头文件、gdal_i.lib、gdal110.dll.

http://pan.baidu.com/s/1gdxqJWv(编译好的文件)

http://pan.baidu.com/s/1mgN4WVe(这个是C#版的.dll文件)

http://www.gisinternals.com/stable.php  编号的dll直接用

GDAL的安装和配置(编译proj.4)

3.我自己写的一个显示shp文件的程序。

GDAL的安装和配置(编译proj.4)

http://pan.baidu.com/s/1sj0uiYx(工程文件地址vs2008)

上一篇:Selenium自动化测试Python三:WebDriver进阶


下一篇:搭建samba文件共享服务器