-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Here are things installed:
$ sudo apt-get install postgresql-server-dev-8.4 libpq5 libpq-dev
Here is a past to my config.out: http://pastebin.com/8Nk6pr96
And, here are some hints I got from IRC (names concealed)
< foo> it's NOT failing to find libpq.
< foo> libpq is present, but…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've installed PostgreSQL and PostGIS, and now I'm trying to follow these instructions:
http://docs.djangoproject.com/en/dev/ref/contrib/gis/install/#spatialdb-template
But I keep getting the following error, both in the command prompt and in Cygwin:
C:\Users\Home>createdb -E UTF8 template_postgis
createdb:…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Imagine a GPS tracking system that is following the position of several objects. The points are stored in a database (PostgreSQL + PostGIS).
Each path is composed by a different number of points. That is the reason why, in order to compare a pair of paths, I need to divide every path in a set of…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have 5 tables:
- users - information about user with current location_id (fk to geo_location_data)
- geo_location_data - information about location, with PostGIS geography(POINT, 4326) column
- user_friends - relationships between users.
I want to find near friends for current user, but it takes…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm using Ubuntu 10.10, PostgreSQL 9.0 and PostGIS 1.5.
I've installed PostGIS 1.5 from:
https://launchpad.net/~ubuntugis/+archive/ubuntugis-unstable
I used PPA first then the command:
sudo apt-get install postgis
to install postgis.
I've been following these instructions to create a spatially-enabled…
>>> More