From c50e8b1dbc4b6055029db2659325388051483064 Mon Sep 17 00:00:00 2001 From: vectorien Date: Mon, 14 Dec 2015 12:01:08 +0100 Subject: [PATCH 1/4] added spatial index --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0e7bfe9..cf87c42 100644 --- a/README.md +++ b/README.md @@ -21,15 +21,23 @@ cd .. wget http://download.osgeo.org/gdal/1.11.1/gdal-1.11.1.tar.gz tar xvzf gdal-1.11.1.tar.gz cd gdal-1.11.1 -./configure --prefix $HOME --with-geosconfig=$HOME/bin/geos-config --with-pg=/p$ +./configure --prefix $HOME --with-geosconfig=$HOME/bin/geos-config +make && make install + +wget http://download.osgeo.org/libspatialindex/spatialindex-src-1.8.5.tar.gz +tar xvzf spatialindex-src-1.8.5.tar.gz +cd spatialindex-src-1.8.5 +./configure --prefix $HOME make && make install ``` + + ##Shapely, Fiona and pyproj ```python -easy_install-2.7 fiona shapely pyproj #Those dont work with pip on uberspace for permission or otherreasons +easy_install-2.7 fiona shapely pyproj rtree#Those dont work with pip on uberspace for permission or otherreasons ``` ##Set library paths From 6f97f732f5c5e006907604b2e4ed9fc4f59e6681 Mon Sep 17 00:00:00 2001 From: vectorien Date: Mon, 14 Dec 2015 12:38:19 +0100 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cf87c42..4a86d24 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ make && make install ##Shapely, Fiona and pyproj ```python -easy_install-2.7 fiona shapely pyproj rtree#Those dont work with pip on uberspace for permission or otherreasons +pip2.7 install --user fiona shapely pyproj rtree ``` ##Set library paths From 345fb92b481098921b21e3b4f1e798e184140a12 Mon Sep 17 00:00:00 2001 From: vectorien Date: Wed, 30 Dec 2015 14:10:15 +0100 Subject: [PATCH 3/4] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4a86d24..9c3c525 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,9 @@ cd gdal-1.11.1 ./configure --prefix $HOME --with-geosconfig=$HOME/bin/geos-config make && make install -wget http://download.osgeo.org/libspatialindex/spatialindex-src-1.8.5.tar.gz -tar xvzf spatialindex-src-1.8.5.tar.gz -cd spatialindex-src-1.8.5 +wget http://download.osgeo.org/libspatialindex/spatialindex-src-1.7.0.tar.gz +tar xvzf spatialindex-src-1.7.0.tar.gz +cd spatialindex-src-1.7.0 ./configure --prefix $HOME make && make install @@ -37,7 +37,7 @@ make && make install ##Shapely, Fiona and pyproj ```python -pip2.7 install --user fiona shapely pyproj rtree +pip2.7 install --user fiona shapely pyproj rtree==0.7.0 ``` ##Set library paths From 2e45a85e4f6c90b02eb26e855ccd0183e0d177c2 Mon Sep 17 00:00:00 2001 From: vectorien Date: Wed, 30 Dec 2015 14:10:41 +0100 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9c3c525..b01584f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Spatial Python on uberspace How to get fiona, shapely and other spatial python packages running on uberspace -## Build & install the dependencies: geos, proj, gdal +## Build & install the dependencies: geos, proj, gdal, spatialindex ```bash #!/bin/bash