Created
September 21, 2016 17:10
-
-
Save zimmicz/e3aaaf3b173f394349aae4fc5cdca511 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt-get install libgdal-dev | |
git clone https://github.com/pramsey/pgsql-ogr-fdw.git && cd pgsql-ogr-fdw | |
make | |
make install | |
psql -d $PGDATABASE -X -c "CREATE EXTENSION ogr_fdw" | |
psql -d $PGDATABASE -c "$(./ogr_fdw_info -s /tmp/buildings_a.shp -l buildings_a)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment