0
votes
2answers
54 views

PostgreSQL update issue $libdir/postgis-1.5 $libdir/plr

I am trying to update from postgresql 9.1 to 9.2 on Mac OS X using binaries provided by William Kingesbury and since hours can`t find a solution for an issue with loadable libraries. First I got the ...
0
votes
1answer
36 views

Selecting Nodes Separating Line Segments

I want to select nodes separating line segments in a layer. I want to select nodes only where they are intersected by two lines, NOT when they meet with more than two line (e.g. a T intersection or ...
1
vote
1answer
42 views

Why do we use `As foo (geom)` and not `As geom`

In the query below, why do we use As foo (geom) and not As geom? What does foo() do? SQL Query SELECT ST_SRID(geom) AS srid, ST_SRID(ST_SetSRID(geom, 4326)) as srid_new FROM ( VALUES ( ...
0
votes
2answers
69 views

PostGIS Error: Could not choose a best candidate function

When creating a View, I get the error function populate_geometry_columns(unknown) is not unique. A book that I'm reading used this, but its giving me an error. What could have gone wrong for me? ...
0
votes
1answer
69 views

Relation “pk” already exists in Postgresql 9.1

I am new to Postgres/PostGIS, currently following a PostGIS book. When I tried one of their example's query, I get the error below stating that the relation "pk" already exists. Does this mean that 2 ...
0
votes
1answer
203 views

osm2pgsql windows “illegal option -W” error

tI'm trying to import map data into a postgis DB on windows. I've doing this for years using osm2pgsql but the latest update of Spain map generates a duplicate key error. It seems to be a 64 bit ...
0
votes
1answer
101 views

POSTGIS query optimization in RAILS

I am using postgis2.0 with postgres 9.1 db. My goal is to write as close as possible to an optimized query to get nearby locations within certain radius and out put them with their distance order. The ...
0
votes
1answer
80 views

postgis st_distance returning incorrect results

I am using postgis to calculate distance between 2 geo co-ordinates. select st_distance( 'POINT(15.651955 73.712769)'::geography, 'POINT(14.806993 74.131451)'::geography) AS d; It's returning ...
0
votes
1answer
81 views

POSTGIS SELECT optmization

I have a query that works, but wondering if there is a faster less obtuse form that I can use. I have already created a bounding box around my geometry to narrow the search, but the multiple calls to ...
2
votes
0answers
126 views

Changing the data type of a column in PostgreSQL 9.1

I'm learning PostgreSQL and PostGIS through "PostGIS in Action" book. My problem comes from Pg. 66 in Listing 3.4. My code is as follows: CREATE TABLE ch03.paris_polygons(tags hstore, CONSTRAINT ...
0
votes
1answer
245 views

postGIS for latitude and longitude

I created a table named zipcode with the following columns Id State Zip Latitude Longitude column1 column2 Columns named column1 and column2 are the 2 geometry columns i have created to store the ...
0
votes
1answer
64 views

How to call a function of postgis-1.5.dll in c code

I'm creating an Postgresql extension in c that use Postgis Point. when i try to call a function of postgis-1.5.dll after loading it, it fails and i get no error message Here is a small part of my ...
0
votes
1answer
146 views

Trying to get postres and postgis running in rails app

I am completely new to Postgresql, Postgis, and SQL and have a little bit of rails knowledge. I am trying to get an existing app going on my local and am currently receiving the following messages ...
-1
votes
1answer
87 views

Create Databse in PostGIS

At the moment, I have installed postGresSql 9.1 for windows with the extension of postGIS on it. Now, I want to create a new Database in PostGIS. Can someones guide me with an easy to follow and ...
0
votes
0answers
69 views

How do I install the hstore module on PostgreSQL 9.1?

I have seen there is already a question on the subject concerning 9.0 here but it is more than one year old. Has anything changed since then? I have 9.1 already installed on Snow Leopard. Which steps ...
1
vote
2answers
102 views

Nearest places from a certain point

I have the following table create table places(lat_lng point, place_name varchar(50)); insert into places values (POINT(-126.4, 45.32), 'Food Bar'); What should be the query to get all places ...
2
votes
1answer
184 views

Nested query as PostGIS function parameter

I have a PostGIS query where I really need to have nested queries inside PostGIS function calls: UPDATE raw.geocoding SET the_geom = ST_Centroid( ST_Collect( SELECT the_geom FROM ...
2
votes
1answer
787 views

issue when trying to create template database postgresql for postgis

I'm using ubuntu 12.04, I have postgis2.1 installed and postgresql9.1... and I'm a newbie for all!... I follow this tuto to create a template database: ...
0
votes
1answer
351 views

Is PostGIS 2 installed?

When I tried theh following command in psql: select PostGIS_full_version(); I get the error: ERROR: function postgis_full_version() does not exist LINE 1: select PostGIS_full_version(); ...
1
vote
0answers
67 views

Querying distance on 2 dimensions in a 3 dimension spatial data set

I have a case requirement where I need to find the nearest N suppliers who supply specific product types. The types in an int range of 0..1048575, which represents an hierarchy. Any supplier could ...
1
vote
1answer
403 views

Error creating a spatial database. ERROR : could not load library “/usr/pgsql-9.1/lib/rtpostgis-2.0.so”

I am running PostgreSQL 9.1 with Postgis 2.0 on Fedora 15. When trying to install the raster support, psql -d database -f rtpostgis.sql -v ON_ERROR_STOP=1 I get the following error ...
0
votes
1answer
77 views

How to revoke copy access to a user postgres?

I want to have a role based access for my Database. I've created a new user and want this user to only select access on Table but this also comes copy by default. I want to revoke this copy access to ...
0
votes
1answer
605 views

PostgreSQL `HINT: You will need to rewrite or cast the expression.` on update of a column with type POINT

I am using PostgreSQL 9.1 with PostGIS 2.0.1. The type of column location is point. type of latitude and longitude double precision. Why is this update statement update list_of_location SET ...
1
vote
1answer
83 views

PostgreSQL : Is this because of locks(row level)?

I have a table with approximately 2.1 million tuples. Which has latitude and longitude columns. I am trying to convert this into a geographic type (point with SRID). The function(procedure) I have ...
2
votes
3answers
929 views

Upgrading Postgre 8.4 to 9.1 on Ubuntu (Turnkey Linux)

I am trying to get Postgre 9.1 to work because I need the features available in the 2.0 version of PostGIS. Turnkey Linux offers a Postgre 8.4 appliance which works great and even has PostGIS built ...
0
votes
2answers
264 views

how to pass geometric point as parameter in postgres function?

I have some function where I need to pass a point datatype . somefunc("United States",Point(85.327892 27.703744)) But I am getting error with this. ERROR: syntax error at or near "27.703744" SQL ...
1
vote
0answers
198 views

partition PostgreSQL table based on geometry column

Here is the table with geometry field : Table "public.regions" Column | Type | -----------+-----------------------+- id | integer | parent_id | ...
2
votes
2answers
772 views

how to use geometry datatype to postgres table?

I have setup a postgres database(version 9.1) and trying to create a table capable of storing st_geometry with the following query : CREATE TABLE sensitive_areas (area_id integer, name varchar(128), ...
0
votes
1answer
838 views

insert Point(Geometry) value in database with postgresql/JDBC

Please give me code example to insert records containing sql statement: insert into TABLE (id, value1, value2, point, value3) values (1,'A', 'M', POINT (13.45646, 56.61782),5); in ...
3
votes
1answer
2k views

Unable to syncdb in GeoDjango App

I am having a real trouble in setting up spatial database and syncing it with GeoDjango. I was able to setup the spatial database as per the geodjango documentation and create a django app but when i ...
1
vote
2answers
1k views

setting up Postgresql 9.1 database in Django for ubuntu 11.10

I am trying to configure Postgresql 9.1 in Django 1.3 . Note: I am doing this in Ubuntu 11.10 (oneric). Also I have postgis 1.5 installed to work with Postgresql 9.1 To my best knowledge, I have ...
0
votes
1answer
243 views

Running a set returning function on all the rows in a postgres table and getting all the results back [closed]

I have a PostgreSQL 9.1 database with a svn version of PostGIS 2.0. I have a set returning function from postgis (ST_DumpAsPolygon), which takes one row and returns many rows. I have a table of data ...
2
votes
1answer
400 views

PostGIS 2.0 Installation issues

I have been trying to install postgis 2.0 on my computer(windows 7 32 bit) in order to benefit from expanded features. However I have been unable to actually get it to install successfully. My version ...