Tagged Questions
0
votes
0answers
49 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', ...
0
votes
2answers
39 views
Retrive a limited number of records that locates near a geo spatial point
I have a use case where I need to retrieve a limited number of records that has a location hear a geospatial point. Something similar to:
SELECT * FROM table WHERE location is near (x, y) LIMIT 200
...
0
votes
1answer
50 views
PostGis insert Rectangle
Hi all i have a question:
how i can insert a box (rectangle) with Ne_latitude, NE_longitude, SW_latitude, SW_longitude inside a postgis database and build an INDEX on top for retrieving the ...
0
votes
1answer
166 views
PostGIS: Function for Selecting Points in a Polygon
I've been banging on this for a few hours, but since I'm relatively new to PostgreSQL and PostGIS, I can't find the solution. I'm trying to create a stored procedure (function) which will return all ...
0
votes
1answer
41 views
Storing a geo route
I'm planning to build a Rails application that should store data about a geo routes (potentially millions). The route is recorded from an smartphone or manually "drawn" in an web-interface.
A route ...
2
votes
2answers
50 views
points within a particular distance
I have a table conatining a set of points. I would like to make a query that checks the distance between the points and if the distance is small er than the tolerance it would set the points to just ...
2
votes
0answers
171 views
self join query issues with PostGIS
I have a table and I am doing a self join on it with geo-spacial functions fro PostgreSQL. Now I am expecting to build the point of intersections of each intersection except for those that has the ...
1
vote
1answer
53 views
spatial data query
I have the following query which does a self join with a table and outputs all the points of intersections between lines.
insert into road_intersection
select nextval('road_intersection_id_seq'), ...
5
votes
1answer
351 views
PostGIS: Find closest geometry to given point
Say I have a number of geometries in my databases. I would like to create a function within PostgreSQL whereby I can pass in a lat/long and have it return the closest geometries by distance (linear, ...
0
votes
3answers
200 views
Setting single coordinates for RGeo Point
RGeo provides built in methods for POINT features, for example getter methods lat() and lon() to pull latitude and longitude values from a POINT object. Unfortunately, these don't work as setters. For ...
0
votes
0answers
90 views
Extrude 2d polygon into 3d polygon
I am using postgresql and I have a table containing 2d polygons (PostGIS geometry type). Now my question is how can I extrude this polygon into a nice 3d building.?
Can anyone help please? because I ...
0
votes
1answer
544 views
PostGIS: Finding points within certain radius from other points
I have a table in PostgreSQL/PostGIS named 'trip' with two geometry columns: 'source_geom' ('POINT') and 'destination_geom' ('POINT') indicating starting and ending location of a journey.
I have one ...
0
votes
3answers
239 views
Creating PostGIS my first Table
I have about 2 million records in a table in PostgreSQL database with columns such as "source_location", "destination_location", "source_lat","source_long","destination_lat","destination_long" etc.
...
0
votes
1answer
283 views
MySQL-Solr for geospatial search
The site currently does mainly range searches (latitude & longitude) with some filtering like WHERE color = "red" type of clauses. However using MySQL with geospatial index is still quite slow and ...
3
votes
3answers
1k views
Rails + PostGIS errors migrating database
I was following Daniel Azuma's talk on geospatial analysis with rails but I am having difficulty whenever I run rake db:migrate in the second project.
The details of my setup are as follows: I am ...
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
297 views
MongoDB spatial query for Polygons
I will build a GIS system based on polygons, not just points. I wanted to use MongoDB or PostGIS.
How do this in MongoDB?
Query A - get the center of a polygon
Query B - distance between two ...
1
vote
1answer
394 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
596 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
81 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
1answer
485 views
How do I use Doctrine2 to work with GeoSpatial Queries using PostGIS?
I have a public facing app that is based on Postgres and PostGIS.
I have tried Googling for hours but have been unable to find any documentation that can show some basic geospatial stuff like getting ...
1
vote
1answer
112 views
neighborhood classification with postgis
I need to build a web application to explore some survey data, but I am struggeling a bit to find the right tools. PostGIS looks quite interesting, but I am not sure if it fits my needs or is maybe ...
0
votes
2answers
346 views
Length of a border of a POLYGON (or MULTIPOLYGON) in postgis
I have a PostGIS database with some POLYGONs (some are MULTIPOLYGONs). I want to find the length of the border of these polygons. They are shapes of administrative boundaries, and hence I'd like to ...
0
votes
1answer
61 views
How can I get ST_Overlap to return single true or false value?
I want to know if there is any overlap between polygon1.the_geom and polygon2.the_geom. However, I don't want to know for each instance if there is overlap. Rather, if there is just one overlap ...
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
279 views
How to get points in bounding box by degrees for map
I have some concerns about working of BOX3D PostGIS function. I tried to find places in square -158.721365889063 66.09275164148659, 154.608712235937 52.56807548751039(degrees ). But this where ...
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
758 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), ...
2
votes
1answer
167 views
PostGIS SQL to generate separate line segments from a set of points, with varying IDs
All,
I'm probably trying to push the SQL angle too far, but I need to generate simple two vertice line segment from a set of GPS tracking points as a feed from many vehicles(veh_id). The resulting ...
9
votes
2answers
964 views
MySQL Postgresql / PostGIS
I have lat/lon coordinates in a 400 million rows partitioned mysql table.
The table grows @ 2000 records a minute and old data is flushed every few weeks.
I am exploring ways to do spatial analysis of ...
1
vote
3answers
652 views
how to convert many points to a multipoint in postgis
I need to convert a table of points where i have those columns (id,the_geom)
to a multipoints?
Why I need to do this? Because I want to create a buffer around each point, and if I work with point i ...
2
votes
1answer
209 views
Efficient way to match a point against regions
I have a list of circular regions identified by the centre (latitude, longitude) and a radius. And I have a list of points on the earth identified by their latitude and longitude. For each point, I ...
3
votes
2answers
3k views
Distance between 2 POINTs in Postgis in srid 4326 in metres
This is probably a simple question, but I'm not very good at PostGIS and don't fully grok all of this.
Basically I have a table (nodes) with a POINT column (point). I have created an index on this ...
0
votes
2answers
207 views
Technology stack for a location based app
This might sound like a trivial question to a lot of people, but since I'm just beginning my tryst with LBS, this is turning out to be a nightmare.
At the simplest, what I'm trying to do is build ...
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?
1
vote
1answer
309 views
Efficient query to locate centroid of clusters in postgis?
I have a spatially-distributed collection of entities E stored and spatially indexed in a PostGis database.
Each entity has a number of indexed non-spatial attributes, such as TYPE, VALUE etc.
Is ...
4
votes
1answer
423 views
Problem with a column name contains a colon in PostgreSQL
I downloaded the shape data from OSM.
I have imported data from Shapefile into PostgreSQL without any problem but I got an error when I do the select statement.
Select addr:city From location;
...
2
votes
1answer
444 views
How do I clean up self-intersecting polygons in a spatial database?
I have some spatial data (MapInfo files) that contains self-intersecting polygons. These cause problems in my processing, in particular I can't generate geometric unions in PostGIS. Is there an easy ...
2
votes
4answers
2k views
Geospatial support in JPA
How would I map point and polygon to java types. If this is not possible, what is a workaround?
I would like to use geospatial support in mysql or postgres through JPA.
3
votes
2answers
614 views
How do I avoid geometry issues when importing MapInfo data into PostGIS?
I'm facing a problem dealing with Australian census collection shapes provided in MapInfo format by the Australian Bureau of Statistics. I am loading these into a PostGIS database using the ogr2ogr ...
0
votes
2answers
194 views
Thin out many ST_Points
I have many (1.000.000) ST_Points in a postgres-db with postgis
extension. When i show them on a map, browsers are getting very busy.
For that I would like to write an sql-statement which filters the ...
2
votes
2answers
436 views
GeoServer in Tomcat doesn't get update shapefiles from PostGis
I have two GeoServers running in the same machine Ubuntu Server 9.04. GeoServer V2.0.1 is running with Jetty and another GeoServer V2.0.0 is Tomcat. Both of them are using the same PostGis datastore.
...
0
votes
2answers
3k views
PostGIS: register a “geometry” column without AddGeometryColumn
The usual way to create a geometry column is AddGeometryColumn, however I have to work with pre-existing columns, so I can't use that function (as far as I know).
Thanks to the PostGIS docs, I can ...
3
votes
1answer
1k views
Comparison of geospatial support for mongodb and postgis
I am in the process of creating a consumer facing location based mobile app that will heavily need GIS support. I have narrowed down the databases to Postgres (PostGIS) and mongodb.
I was wondering ...
1
vote
2answers
2k views
PostGIS: bounding box of a multipolygon
SELECT id, ST_Box2D(areas) AS bbox FROM mytable;
In this example, the table "mytable" contains two columns: "id" is the unique id number of the row and "areas" is a geometry field containing one ...
0
votes
1answer
569 views
How do I supply a British National Grid reference as WKT to GeoDjango?
I'm trying to insert some National Grid references into a Django PointField defined as follows:
oscode = models.PointField(srid=27700, null=True, blank=True)
However, I don't know how to format ...
0
votes
3answers
852 views
Unions of polygons (ST_UNION for Geography type)
I am looking for a function that will return the intersection of 2 or more polygons (geography type).
I am aware of ST_UNION, ST_COLLECT but it works only for geometry type.
Any tip will be really ...
2
votes
2answers
332 views
Use GIS to get geographic info for a single point
I am not quite sure where to start with this. I only just started looking into this in the past week, but hopefully someone can help point me in the right direction.
The goal of my project is to be ...
3
votes
3answers
2k views
PostGIS and JPA 2.0
I like to map datatypes from PostGIS with JPA 2.0. I googled for solutions or examples, but all I can find is, that JPA does not support mapping of custom data types. Is it still in JPA 2.0? Has ...
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 ...
