Is it possible to add PostGIS to PipelineDB?

297 Views Asked by At

Os:ubuntu 14.04 64bit

I'm trying to connect QGIS with pipelineDB. Homepage says it supports postGIS, but I couldn't find way to do it.

Older version has something like "loading PipelineDB extensions" during its init period while the 0.9.1 version I installed didn't have any.

Typing

"CREATE EXTENSION postgis;"

in psql doesn't work either giving such line as

could not access file "$libdir/postgis-2.1"

Is there some way to do such a thing? Thanks for reading.

1

There are 1 best solutions below

2
On

PostGIS is no longer pre-bundled with PipelineDB binaries. You will have to build and install it from source. We have a PipelineDB compatible fork of PostGIS on our GitHub. Check out the tag for the appropriate release, in your case the following should work:

git clone -b 0.9.0 https://github.com/pipelinedb/postgis.git

After that you can follow the instruction is the README.md file found here.