0
votes
0answers
15 views

installing postgres 9.2 on Mac OSX 10.6 with KyngChaos package

I'm trying to install postgres 9.2 on a mac 10.6 using using KyngChaos (because ultimately I'd like to enable PostGIS, and this seems to be the best package to that with). I get exactly the problem ...
0
votes
1answer
17 views

Postgresql Connection with Database in Java fail

I try to connect from my Android app to my postgresql server running on Windows 7. Both is running on my computer with a special IP. I try String url = ...
0
votes
1answer
28 views

undefined method when trying to build db with activerecord-postgis-adapter

I am trying to deploy a rails application using activerecord-postgis-adapter to heroku, however I keep getting this error. ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-darwin12.3.0] Rails 3.2.13 ...
1
vote
2answers
80 views

PostgreSQL error: subquery must return only one column

Using PostgreSQL-9.1 and PostGIS 2.0.1, when doing a SELECT query containing a sub-query that returns multiple columns, I am getting the error subquery must return only one column. How can the ...
0
votes
1answer
351 views

Storing PostgreSQL/PostGIS “geometry(MultiPolygon)” data type in java

I need to store PostgreSQL's geometry(MultiPolygon) type variable into a java variable this is because im trying to add the geometry column to a non-spatial table for querying a map using mapserver i ...
0
votes
1answer
246 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 ...
1
vote
1answer
123 views

Using PostGIS for location based data

I have a table in postgresql 9.2 that stores the latitude and longitude of locations as integer values. I intend to do something like when a user searches for a location, he also gets information on ...
-1
votes
1answer
124 views

Converting a SQL Server 2008 R2 database to PostGIS

I have a database in SQL Server 2008 R2 which needs to be converted into a PostGIS one. I have PostGres 9.2 installed with the PostGIS extension. What should be my next step to convert my existing ...
0
votes
1answer
236 views

Unit of return value of ST_Distance

I need to calculate the distance between all buildings and all hospitals in a map imported from OSM. I use following query: SELECT building_id, hospital_id, ST_Distance(building_centroid, ...
0
votes
1answer
541 views

Importing OpenStreetMap data into PostgreSQL database

I'm trying to import one of the following OpenStreetMap maps 1, 2, 3 into a PostgreSQL database using calls like call osmosis.bat --read-xml file="map.osm" --write-pgsimp user="ccp-web-user" ...
1
vote
1answer
941 views

osm2pgsql: Function AddGeometryColumn doesn't exist

I want to import OSM file into my PostgreSQL database (Windows, Postgres Version 9.2) using the tool Osm2pgsql. When I run following command osm2pgsql.exe --create -d mydb artyom.xml -U myuser -W ...