Tagged Questions
The spatial-query tag has no wiki summary.
6
votes
4answers
613 views
What is the best way to query a database for records within n miles of a zip code?
I have a list of records in my database and each record is associated with a zip code.
What is the "best-practice" for querying all the records in my database to find all entries that are within n ...
4
votes
3answers
187 views
What is a good data structure for storing and searching 2d spatial coordinates in Java
I am currently writing a plugin for a game where one feature includes the ability to set areas defined by 2 two dimensional coordinates ( The upper left and lower right areas of a rectangle). These ...
4
votes
2answers
2k views
Selecting a good SQL Server 2008 spatial index with large polygons
I'm having some fun trying to pick a decent SQL Server 2008 spatial index setup for a data set I am dealing with.
The dataset is polygons, representing contours over the whole globe. There are ...
4
votes
2answers
2k views
Linq & unsupported data types (Geography)
So, Linq does not support the Geography data type, which throws a major spanner in the works in the lovely 'drag table onto the Linq design surface' developemnt model.
Is there any way that I can ...
4
votes
5answers
1k views
Best Performance-Critical Algorithm for Solving Nearest Neighbor
We have a list of x,y pairs. Every pair represents a point on a 2D space. I want to find the closest point from this list, to a specific point xq,yq. What is the best performance-critical algorithm ...
3
votes
2answers
65 views
Calculating the outer boundary of several Geometry objects in SQL Server 2008
I have lots of Polygons of datatype Geometry in SQL Server 2008. The image below shows how a select of all these Geometrys looks visualized.
What I need to do is create a Polygon which represents ...
3
votes
1answer
236 views
MySQL Spatial Data Type Indexing Performance Comparison
Would a MBR function query against an indexed column with geometry type containing points and polygons (GeomCollection type) be slower than a MBR function against an indexed column with a polygon ...
3
votes
1answer
462 views
How does SqlGeography.Reduce method works?
How does this API works?
I am using some complex geography with ~2000 points (geometry of a river). While reducing with tolerance 2048, it works fine. But while reducing with tolerance factor 4096, ...
3
votes
10answers
2k views
Possible to calculate closest locations via lat/long in better than O(n) time?
I'm wondering if there is an algorithm for calculating the nearest locations (represented by lat/long) in better than O(n) time.
I know I could use the Haversine formula to get the distance from the ...
2
votes
2answers
125 views
Data structure to query points which lie inside a triangle
I have some 2D data which contains edges which were rasterized into pixels. I want to implement an efficient data structure which returns all edge pixels which lie in a non-axis-aligned 2D triangle.
...
2
votes
1answer
86 views
Do I need specific configuration for Spatialite with GeoDjango?
According to https://docs.djangoproject.com/en/1.3/ref/contrib/gis/db-api/, Spatialite supports GeoQuerySet.distance(). However, having imported an area list (MultiPolygon as mpoly attribute), I'm ...
2
votes
1answer
191 views
Most efficient way to get points within radius of a point with sql server spatial
I am trying to work out the most efficient query to get points within a radius of a given point. The results do not have to be very accurate so I would favor speed over accuracy.
We have tried using ...
2
votes
1answer
924 views
How to implement Spatial(Geo-Location) searching in Grails?
I am working on Grails 1.3.2 with MySql. I need to store the latitude and longitude of certain locations in the database and then on the basis of the user's current location, I need to return the ...
2
votes
1answer
566 views
Unable to retrieve computed distance in Spatial Solr queries
I'm using this plugin to allow spatial queries in Solr. I have followed the steps included in the documentation and I've got the spatial queries working fine.
Now I want to retrieve the computed ...
1
vote
3answers
69 views
Return records in chronological order, given a separation factor
I have a massive table in SQLServer 2008, it contains the position reported by technicians every minute. I need to report on this table but in order to control the amount of records that are displayed ...
1
vote
3answers
601 views
Spatial index/query (finding k nearest points)
I have +10k points (latitude, longitude) and I'm building an app that shows you the k nearest points to a user's location.
I think this is a very common problem and I don't want to reinvent the ...
1
vote
2answers
660 views
What ADO type is the Geography spatial type from SQL Server 2008?
I am looking to refactor this method (from Massive.cs by Rob Conery):
public static void AddParam(this DbCommand cmd, object item) {
var p = cmd.CreateParameter();
p.ParameterName = ...
1
vote
2answers
892 views
How do you use MySQL spatial queries to find all records in X radius?
I have a table in a MySQL database with a spatial geometry column of type POINT. I'd like to be able to take a point at the center of a map and find all records within X miles (or whatever distance) ...
1
vote
2answers
162 views
Spatial querying, converting metres to radians?
I have geographic data that was loaded into the geography datatype. For very specific purposes, I now need to have store this as a geometry. However, I need to perform a query like this.
DECLARE ...
1
vote
1answer
224 views
Data structure in python for 2d range counting queries
I need a data structure for doing 2d range counting queries (i.e. how many points are in a given rectangle).
I think my best bet is range tree (it can count in log^2, or even log after some ...
1
vote
1answer
196 views
Query to find shortest route in Oracle
I'm starting studies in Oracle 11g Spatial Databases and I want to know if is there a query that returns the shortest route (or path) between two points, or between a point and a linestring.
I have a ...
1
vote
1answer
76 views
IBM Informix Spatial datablade LIneFromText function
I am using IBM-Informix for my school project as part of "Informix on-campus" ativity conduted by IBM.
however it is giving me error as "(USE31) - Too few points for geometry type in ...
1
vote
1answer
98 views
your favorite database for spatial temporal?
what is your favorite database for supporting of spatial temporal issues ?
sql server 2008 has data types for spatial temporal data.
please post your experience with sql server 2008, oracle spatial, ...
0
votes
1answer
66 views
How to get autocomplete and spatial search in one query with Solr?
Current Features:
Autocomplete using solr terms component, parameter terms.prefix.
bounding box for geo location searches.
Things Tried:
I have tried to combine both queries into one. However I ...
0
votes
0answers
42 views
SQL Geometry STIntersection and Reduce Performance
I am using the Reduce() function of SQLGeometry with the combination of STIntersection() function thus basically retrieving the shape inside a given bounding box and then running the Douglas Peucker ...
0
votes
0answers
18 views
querying entities based on location
I am trying to add location based search on a product i am working on. What i want to do is be able to search for other people in the x miles radius of a particular post code (or lat/long). I ...
0
votes
0answers
79 views
Error from nested query with GeoDjango
I'm having trouble constructing nested queries using in field lookup in GeoDjango. The following code demonstrates the problem:
inner_qs = Footprint.objects.filter(geom__bboverlaps=bounding_box)
...
0
votes
1answer
137 views
SQL Server 2008 Geometry.STBuffer(…) really slow
I’ve got a basic SQL query that looks like:
SELECT TOP 1
[geom].STBuffer(500)
FROM [db].[dbo].[boundaries]
Which essential takes a map boundary from the database and buffers it by 500m. The problem ...
0
votes
0answers
31 views
NHibernate hql - OracleSpatial
I have a NHibernate criteria for IGeomety object:
Session.CreateCriteria<MyIGeometryObject>().Add(
Expression.Not(SpatialRestrictions.Disjoint("ExtentProp", IgemoteryObjectToFindBy)));
I ...
0
votes
1answer
38 views
Need some advice on reading material regarding spatial databases [closed]
I am interested to know about some reading materials(books) regarding
1)Spatial Database Systems
2)Spatial Query optimization
3)Spatial Indexing
4)Distributed Databases
Can anyone help me on this ...
0
votes
1answer
177 views
Uniform Grid Subdivision of Points in C#
I have a set P of 2D points that I could like to cluster in a 2D uniformly spaced grid, where each cell is length X.
I want to do this because I am trying to create a heat map, and I have way to much ...
0
votes
2answers
233 views
Database procedure for locations
I'm trying to store a database of GPS locations and run queries which find the points within a given radius and also the closest points. I'm using mysql and have been looking at the spatial ...
0
votes
1answer
106 views
ibm informix spatial datablade select statement error
I am using IBM informix spatial datablade module for some geo specific data.
I am trying to find points in table xmlData lying in a specified region.
But i am getting this error for select statement.
...
0
votes
3answers
2k views
how to get nearest point on a SqlGeometry object from another SqlGeometry object?
I have a set of line and polygon object (SqlGeometry type) and a point object (SqlGeometry type). How can we find the the nearest point on each line from the given point object? Are there any API for ...
0
votes
1answer
105 views
MySQL Spatial search for HSV (color) values?
Is it possible to use MySQL's spacial search to find points inside of a 3D polygon?
Or better still, is it possible to use MySQL to find the values on the surface of an HSV cylinder?
0
votes
2answers
593 views
Spatial Index Query in php
I'm trying to write a query in PHP for a spatial index. But I'm having trouble writing the query for the following line of code...
SET @p = ...