目录
https://trac.osgeo.org/geos/
https://libgeos.org/
https://libgeos.org/usage/download/
官网:
GEOS is a C/C++ library for spatial computational geometry of the sort generally used by “geographic information systems” software. GEOS is a core dependency of PostGIS, QGIS, GDAL, and Shapely.
从源码构建要求:
安装 CMake 命令:
由于我的Ubuntu 版本是 18.04 ,自带的 Cmake 是 3.10 不满足要求需要自行安装cmake,参见《Ubuntu 安装 cmake》
下载地址:https://download.osgeo.org/geos/geos-3.10.1.tar.bz2
注意: 谷歌浏览器直接点击下载无法下载,需将连接换成 https开头才能下载。
命令:
tar -jxvf geos-3.10.1.tar.bz2
命令:
cd geos-3.10.1
mkdir _build
cd _build
# Set up the build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local /home/public/Soft/geos-3.10.1/
# Run the build, test, install steps
make
sudo make install
sudo ln -s /usr/local/bin/* /usr/bin/
ctest
至此,安装完成。
手机扫一扫
移动阅读更方便
你可能感兴趣的文章