Tagged Questions
0
votes
2answers
30 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
66 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
2answers
144 views
Display data from postgis over google maps
I am working on a project where i am using postgres/postgis and asp.net with c# connected with google maps api v3.
My issue is that i would like to be able to display spatial data ex: points of ...
1
vote
1answer
37 views
Point of intersection
I am using postgis for my spatial database.
in my database I have a set of lines in one table and a set of points in another table. How Is it possible to determine which fits best as a point of ...
2
votes
1answer
109 views
How to snap line string start & end vertex to the nearest point?
I have a point layer and a line layer. The points are road junctions, collected using DGPS, while the lines are the connecting roads, collected through Handheld GPS in tracking mode. As a result, the ...
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 ...
2
votes
0answers
85 views
Temporal aggregation in PostGIS
I have a database of climatic data for farms in postgresql/postgis. it contains information about temperature, humidity and ... for farms and it is updated every hour. I need to perform some ...
0
votes
0answers
181 views
Tomcat 7 JNDI PostGIS database
I've been trying to configure a JNDI datasource with Tomcat 7 for a Hibernate Spatial/PostGIS database, with no success. When the web app tries to access geometry types in the database, I keep having ...
0
votes
0answers
30 views
Need tool to convert agf file format to shape postgis in linux
i am looking for tool that convert atlas geo file(.agf) file format to shape (.shp)
in windows i got agf2shp and shp2agf .exe file directlybut i am serching for the same in linux
any one please help
...
0
votes
1answer
184 views
postgis spatial query assistance
Assuming I have three tables:
A. Municipalities (MultiPolygon)
B. Postcode centroids (Point)
C. User data (Point)
Entries from (C) match entries on (B) with FK (code).
I am looking for an ...
0
votes
1answer
383 views
Spatial gist index in postgis - performance
I have problem with gist index.
I have table 'country' with 'geog' (geography,multipolygon) columny.
I have also gist index on this column.
This simple query with ST_CoveredBy() against table with 2 ...
4
votes
1answer
1k views
Migrate SPATIAL data from Oracle to Postgresql
I am trying my best to migrate a spatial database from Oracle to Postgresql and failing miserably.
I have tried many different avenues as you can see from my previous question on here and none are ...
0
votes
1answer
628 views
Postgres spatial SQL queries
I'm trying to wrap my head about how postgres spatial stuff works from a SQL point of view. My goal is to be able to insert polygon geometry references as a column onto a table that also includes ...
22
votes
1answer
416 views
How can I query the postgres Point type from clojureql?
How can I query the postgres Point type from clojureql? I wish to use the PostGIS functionality but clojureql does not seem to include this.
2
votes
1answer
208 views
What sort of things can be done with PostGIS that can't be done using MySQL?
I'm about to start a GIS project, and I want to know if I really need PostGIS or if MySQL's Spatial Extensions are sufficient?
2
votes
2answers
149 views
What are good ways to upload large amount of spatial data in Postgis?
I have a large amount of spatial data I need analyze and put into use in an application. Original data is represented in WKT format and I'm wrapping it into a INSERT SQL statements to upload the data.
...
0
votes
1answer
165 views
PostGIS: Finding LineStrings that overlap a box
I want to specify a box (i.e. 2 points) and select all the linestrings that are either within or intersect the box.
SELECT * FROM pub_trail_segment WHERE st_force_2d(pub_trail_segment.geometry) ...
0
votes
2answers
307 views
Write raw SQL for PostGIS
I'm trying to input some data into a PostgreSQL 8.4 database with a PostGIS template. I'm unable to UPDATE polygons:
> UPDATE my_table SET coords = POINT(1, 1)
UPDATE 0 1
> UPDATE my_table SET ...
1
vote
2answers
2k views
MySQL VS PostGres/POSTGIS spatial database support
We're building a small-sized GIS Web application (as a school project) right now.
In terms of spatial database support and capabilities, which is better?
:)
thanks everyone!
5
votes
2answers
3k views
Generating density/heat maps like SpatialKey
SpatialKey generates some really nice looking heatmaps, and we're looking into what's involved in doing this for an internal project to visualize large amounts of points. I'm looking for feedback on ...
6
votes
3answers
2k views
Accessing PostGIS spatial data from Rails
I need to use an existing PostGIS database from my Rails application. So far I am able to access the DB just fine, GeoRuby nicely converts the 'geom' column into a Point object.
What I am looking for ...
7
votes
6answers
4k views
Any good spatial database tutorials out there?
I was looking to explore the spatial capabilities of PostGIS or SQL Server 2008. Maybe Oracle as well.
I was wondering if there are any good tutorials out there exploring the spatial capabilities of ...