PostGIS spatial database extension for PostgreSQL.
1
vote
0answers
19 views
Where are the python-native objects for SQL-Alchemy?
In an ORM I would expect to be able to do this:
session.add(Lake("hello",Polygon([(0,0),(1,0),(1,1)])))
lake = session.get(Lake).first()
assert isinstance(lake.geometry, Polygon)
assert ...
0
votes
0answers
5 views
Combine polygons for a coveredby query
I am trying to figure out how to run a SQL query for where points fall within certain polygons.
Basically, end-users can enter in N number of polygons, and I need to find all the relevant data within ...
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 ...
2
votes
0answers
14 views
Rails test database getting wrong column type on geographic columns
We have a rails app that uses postgis and activerecord-postgis-adapter for geographic information search. However, it doesn't work right in the test database. In development and production database, ...
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
0answers
13 views
How to store data for gis system?
I'm developing a GIS solution using Postgis database and geoserver as web map server. The solution to develop will analyzes the defects (as a polygon) and process parameters values (as a linestring) ...
1
vote
0answers
16 views
How To Back Up Django PostGIS Databases
I have a GeoDjango (Django 1.5) application running with PostGIS 2. Traditionally, when backing up a PostgreSQL database without PostGIS, I would use pg_dump. The PostGIS documentation recommends to ...
0
votes
1answer
24 views
How to query points north of a certain latitude
I have a Django model with a geodjango PointField:
geopoint = gis_models.PointField(srid=4326, verbose_name='location', geography=True, null=True)
I want to query the model for all points North of ...
0
votes
0answers
14 views
(SOLVED) postgis-2.0.so: undefined symbol: GETSTRUCT
when i use pg_upgrade check upgrade postgresql 9.0 beta2 to postgresql 9.3 beta1.
error occure below :
uptest@db-172-16-3-33-> cat loadable_libraries.txt
Could not load library ...
3
votes
1answer
26 views
How to calculate the topological distance using ArcMap or other softwares?
I'd like to calculate the topological distance instead of Euclidean distance between two polygons. The distance between two neighboring polygons is 1, between two polygons connecting through a common ...
0
votes
1answer
24 views
Database that supports three-dimensional spatial indexing
I have a set of roughly 10 million documents tagged with geolocation and time, that is growing at a rate of about 100,000 per day. We need a good way to query for documents nearby a given ...
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
...
0
votes
1answer
30 views
cannot create extension without superuser role
I'm trying to run unit tests in Django, and it creates a new database. The database has postgis extensions and when I regularly create the database, I use "CREATE ExTENSION postgis".
However, when I ...
0
votes
1answer
16 views
Force geoserver to SRID 0
I'm developing a gis solution which uses only geometry data.
I designed my spatial DB with PostGIS and now I'm performing some trials connecting the DB with GeoServer map server (using the ...
0
votes
0answers
8 views
Display result GeoQuerySet
I'm trying to query my PostGis database thanks to geoDjango but I have an error where I found no solution on the internet.
close_loc=PlanetOsmPoint.objects.get(way__distance_lte=(lePoint, ...
0
votes
1answer
25 views
mapnik not rendering postgis multipolygonzm?
So I loaded a bunch of NHD data, and the geometry ended up as MultiPolygonZM (and pointZM and areaZM for other tables)
way geometry(MultiPolygonZM,900913)
I've tested the query and its returning ...
0
votes
1answer
33 views
How can I use internal PostGIS functions in my own PostgreSQL extension?
Is there a stable and portable way to make use of PostGIS-functions in my own PostgreSQL extension?
I would like to process the geometry type with functions like intersects in my c code by directly ...
0
votes
2answers
28 views
Touch function in postgre sql with postgis
I have posgresql installed with postgis, I try to run the following in postgresql:
SELECT N1.edname AS "Borders Royal Exchange A"
FROM eds_census2011 N1, eds_census2011 N2
WHERE Touch(N1.the_geom, ...
0
votes
1answer
35 views
Postgis: How to build query which returns points within box initially and then all the other points?
There is code which get from database points in bounding box for rendering on browser. Also displays list of points with attributes (name etc.)
But, when filter will be applied to the dataset I may ...
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
2answers
20 views
How to map PostGis geometry column as wkt with nHibernate not using nHibernate spatial
I need to read a postgis geometry column as wkt using nHibernate. I know I could use nHibernate Spatial, but that is not an option in my case.
I have seen this post: Best way to map a hidden property ...
0
votes
3answers
28 views
Colon in variable identifier
Is it possible to have a colon in a variable name ?
I already tried to backslash it but it doesn't work...
I'm using geoDjango so my identifiers in my models have to keep the same name than those ...
-1
votes
1answer
28 views
Selecting the surrounding points of a single point [closed]
I am using Postgresql and PostGIS(coordinates)
Example case: A database holds information about restaurants and each restaurant has unique coordinates on a map. I give coordinates to the database, ...
0
votes
1answer
64 views
Hibernate-Spatial Query for Points within an area
Dear stackoverflow readers,
I'm currently working on an application that has the requirement to load specific items based on its coordinates. Example: I want all shops from coordinates x or within 15 ...
0
votes
1answer
28 views
Searching points inside certain radius
I've got the following Point model:
class Point(models.Model):
name = CharField(max_length=50)
location = PointField()
I'm now trying to get all the point in a distance of 5 km of that ...
0
votes
0answers
14 views
driving_distance does not return all sets of distance
I'm working with pgRouting, trying to get the distance matrix along the river system.
I use driving_distance function and it seems like I am getting what I want, but when I check the result table ...
1
vote
1answer
36 views
ImageMosaic-JDBC Error
I'm trying to get postgis raster layers in geoserver-2.3.1, with postgresql-8.4, postgis-2.0 and gt-imagemosaic-jdbc-9.1.jar support. I'm going through the tutorial with a PNG raster that i have. In ...
1
vote
1answer
47 views
postgis homebrew installation referencing an old path?
I upgraded, and subsequently reinstalled postgis and postgresql on OS X mountain lion. I receive this error when trying to use the postgis extensions:
ERROR: could not open extension control file ...
2
votes
1answer
78 views
Using multiple databases within the same application
I am currently developing an application in node.js. I have a Postgres/PostGIS database to store geospatial information and render them as SVG. That works fine so far. On the other side I have a ...
0
votes
0answers
19 views
using wfs_t to store data in postgis
i'm using wfs_t to add a feature to my layer, but when i click "save" i find nothing new in my table postgis
i'm using this tutorial: ...
1
vote
2answers
58 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
0answers
37 views
Receiving PG::Error when trying to save GeoJSON to Postgres / PostGIS database. What's missing?
I'm using Rails 3.2 with a Postgres / PostGIS database and the following gems:
pg (0.15.1)
rgeo (0.3.20)
rgeo-activerecord (0.5.0)
rgeo-geojson (0.2.3)
activerecord-postgis-adapter (0.6.2)
The ...
0
votes
1answer
38 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 ...
0
votes
0answers
17 views
not able to view imported .tif file in geoserver
I am using geoserver. I have imported a .tif file using postgis, which has been saved in vector type layer in geoserver. Now, whenever, I preview it, the layer gets automatically downloaded as wms ...
1
vote
0answers
41 views
not able to import raster data through raster2pgsql
I'm new to postgis and I'm not able to get through raster2pgsql.
The problem is:
I want to import a raster (.tif) file using raster2pgsql. But after running the command:
raster2pgsql -s 4326 -I -C ...
0
votes
1answer
44 views
Handling Exception From C Function
I have a function that is calling a function from a C library. Is there anyway that I can catch that exception from the Postgres function that's calling the C function?
Here's the function that I'm ...
3
votes
1answer
55 views
How to set InsertCommand parameter as function call?
I working on a GIS application which uses the PostgreSQL database with PostGIS extension. I already created the data access logic for entire project and everything works fine except the geometry value ...
0
votes
1answer
57 views
Spatial Join Query Optimization on Large Data Set
I have a use case where two sets of data are joined with an expensive spatial predicate. To parallelize the query I partitioned the spatial universe into tiles (in the order of thousands) such that ...
0
votes
1answer
56 views
Slow update with ST_Contains()
UPDATE tbl
SET city=s.city_name
FROM shp AS s
WHERE
ST_CONTAINS(s.city_geom,geom);
With the code above i can add exact city to a GPS point.
It runs about 45-50 min on 50 million rows.
There are ...
2
votes
1answer
123 views
How can I use PostGIS functions in rails?
The query I'd like to run is:
SELECT zcta.geoid10, ST_AsGeoJSON(ST_simplify(zcta.geom,500)) FROM zcta WHERE zcta.geoid10 = '90210'
However in the Rails console when I enter this:
testquery = ...
0
votes
1answer
95 views
How create polygons along line with fixed length on Postgis query or Leaflet(geojson)?
I have many lines in Postgis(with import in Geoserver). I need create(in new table) polygons(or buffers with fixed colors for count points in buffer) for each line with fixed length(1km, 100meters) ...
2
votes
1answer
80 views
PostgreSQL query error when using PHP
When I run a PostgreSQL query containing ::geometry casting, I get a type "geometry" does not exist error. I am using php5-pgsql V5.3.10, php5-fpm 5.4.13, Laravel 4, Postgresql 9.1, PostGIS 2.0.1 on ...
2
votes
0answers
185 views
Prevent installation of BOTH PostgreSQL 9.1 and 9.2
In an attempt to automate the deployment of an Ubuntu 12.04 server (using Puppet) that contains Postgresql 9.2 and PostGIS 2.x, I end up with both PostgreSQL 9.1 and 9.2 installed and their services ...
1
vote
0answers
96 views
Postsql and Postgis
I'm trying to get postsql and postgis to work together, but keep running into the same issue.
Using:
PostgreSQL 9.2.3 (postgres.app)
when I run:
CREATE EXTENSION postgis;
ERROR: could not access ...
0
votes
0answers
53 views
Get points closer than X meters in PostGIS
I had multiple locations represented by WGS84 system, so I made a table in PostgreSQL with name of the location, and than I added geometry column like this:
SELECT AddGeometryColumn( 'public', ...
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
0answers
20 views
find username and password for PostGIS for use in QuantumGIS on Mac Lion
I installed postGIS successfully and now need the login info for getting the data into a QuantumGIS file. I don't recall ever creating a username and login when I installed postGIS, I've gone over ...
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
73 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
0answers
15 views
how to use st_xmax by hibernate/jpa
The following does not work.
import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.Predicate;
import javax.persistence.EntityManager;
import ...

