proj的安装与使用

官网下载地址:https://proj.org/download.html 

官网git 地址:https://github.com/OSGeo/PROJ.git   (下载比较慢)

ubuntu16下的安装:

$ cd ~/Download
$ git clone https://github.com/OSGeo/PROJ.git(多种尝试,发现下载都很慢,不知道是不是资源问题)
#安装方式2(推荐)
下载:https://proj.org/download.html
proj-6.2.0.tar.gz
解压缩后,进入对应文件夹
$ cd proj-6.2.0/
$ ./configure
$ make 
$ make check
$ make install

过程中出现需要安装Sqlite3,可以参考:https://blog.csdn.net/dikcychen2011/article/details/21969357

 

你可能感兴趣的:(C++,ubuntu)