Spatial Indexes are data structures used in SQL and other databases to enhance and optimize the execution of queries that use the data.
0
votes
0answers
23 views
JPA have a single MySql myISAM table
i am using JPA with my application (playframework 1.2.4) with MySql so far so good
all worked with InnoDB very well .
until i wanted to add Spatial support to my DB/Application. i noticed that ...
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 ...
1
vote
1answer
87 views
SOLR 4.2 - solr.LatLonType type vs solr.SpatialRecursivePrefixTreeFieldType
I am currently using SOLR 4.2 to index geospatial data (latitude and longitude data). I have configured my geospatial field as below.
<fieldType name="location" class="solr.LatLonType" ...
0
votes
3answers
47 views
Java writing/reading unserializable objects to/from file
I am using JSI (Java Spatial Index, RTree) to implement 2D spatial search. I want to save the tree to file, which triggered java.io.NotSerializableException using code below.
public class ...
4
votes
1answer
109 views
Spatial matching of big datasets
I have a dataset with about 100000 points and another dataset with roughly 3000 polygons. For each of the points I need to find the nearest polygon (spatial match). Points inside a polygon should ...
0
votes
0answers
32 views
Execution of Queries in Parallel: geotagged textual documents in Solr
I have around 100M of textual document geotagged (lat,long). THese documents are indexed with Solr 1.4.
I am testing a retrieval model (written over Terrier). This model requires frequent execution of ...
0
votes
0answers
51 views
How does MongoDB handle range and nearest neighbor queries?
How does MongoDB handle range and nearest neighbor queries? what algorithms used?
I know MongoDB use GeoHash and B-Tree to index spatial data but how it handle the range and nearest neighbor queries ...
0
votes
0answers
59 views
Why not B+-Tree MongoDB
Do anyone know why MongoDB use B-Tree but not B+-Tree?
As I know most DBMS use B+-Tree. Are there any special reason for MongoDB to use B-Tree?
thanks.
-1
votes
2answers
86 views
R* tree implementation in C++ trouble understanding code [closed]
Since the past several days I have been trying to understand disk based R* Trees by debugging the libspatial index library containing R* Trees. However, I have not been much successful at it. Can ...
2
votes
1answer
66 views
RavenDB Spatial index for LineString
How do I create a RavenDB Spatial Index for LineString geo data ?
I am trying to create a spatial index for LINESTRING of geo data, But search query does not return any data.
Please use following ...
1
vote
0answers
183 views
Spatial database for Android with Sqlite
This question has been asked a lot of times but I did not find a relevant solution for my requirement.
I want to build a simple Augmented reality App on Android which uses Spatial data (R-Tree) to ...
0
votes
1answer
51 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
0answers
104 views
Split Spatial Polygon/line into smaller Polygons/line by geohash or another gridded system
Is anyone aware of any logic or algorithm that would allow me to split a single polygon or single line into multiple polygons/lines based on a geohash (32) or possibly another similar type gridding ...
1
vote
2answers
69 views
Using NULL with spatial indexes
I have a big number of photos (~10 millions) in a SQL Server database with geo coordinates column which can be NULL or NOT NULL (not placed or placed on map).
Also I created a spatial index on this ...
0
votes
1answer
87 views
PostGIS query not using gist index when doing a ST_DUMP(ST_UNION
My query:
DROP TABLE IF EXISTS tmp;
CREATE TEMP TABLE tmp AS SELECT *, ST_BUFFER(the_geom::GEOGRAPHY, 3000)::GEOMETRY AS buffer FROM af_modis_master LIMIT 20000;
CREATE INDEX idx_tmp_the_geom ON tmp ...
1
vote
1answer
70 views
Does libspatialindex needs to reserialize for a simple update?
I am looking for a c or c++ library for a desktop application ( no server-client, only need to edit data stored in disk) with the following features
stores the spatial data in the virtual memory so ...
0
votes
1answer
116 views
SQL Server 2008 Spatial Query performance
I have an application where user's store their commute routes in our database.
The routes are stored as polylines (linestrings).
The database also stores incidents, traffic accidents that kind of ...
0
votes
0answers
53 views
Convert a rectangle to ranges of Hilbert numbers
When spatial data is represented using Hilbert numbers, a rectangular range is mapped to multiple ranges of Hilbert numbers. Is there any quick way to find this mapping without going through every ...
38
votes
4answers
1k views
Optimising the drawing of overlapping rectangles
I have a large number of rectangles, and some overlap others; each rectangle has an absolute z-order and a colour. (Each 'rectangle' is actually the axis-aligned bounding box of a particle effect, ...
1
vote
0answers
101 views
RavenDB 2.0: Indexing with SpatialGenerate eats up all memory
Problem: In the code presented I am trying to index ~26000 geo-fences (polygons). I have tried many combinations of 1)inserting the data and 2)indexing the data that some are not presented in the code ...
14
votes
8answers
299 views
Algorithm to quickly find animals away from the herd
I am developing a simulation program. There are herds of animals (wildebeests), and in that herd, I need to be able to find one animal that is away from the herd.
On the picture below, green dots are ...
0
votes
2answers
62 views
MySql performance find all users that are within 1 km
I have mysql table, need to find all users that are within 1 km of each other
Table:
Geo
----------
id(int)
location(geometry) with spatial index
username(string)
could be solved:
iterate by ...
3
votes
1answer
132 views
Insert new leaves in R* Tree
What is the steps of the insertion algorithm of R* Tree?
Note: I want to be able to construct the tree by insertion. IT ALWAYS GIVES ME CRAP TREES with maximum overlap and maximum area cover not ...
0
votes
2answers
165 views
Mysql Spatial Extension. How to check if Linestring CONTAINS a Point?
I'm trying to determine if Linestring have Point.... f.e.
SET ls = geomfromtext('LINESTRING(1 0,3 0)');
SET p = geomfromtext('POINT(2 0)');
if i do CONTAINS(ls,p) i have true. but there is no ...
0
votes
1answer
212 views
SQL Spatial index and clustered index
I am creating a spatial index on a geography column in SQL Server Azure Server like below..
CREATE SPATIAL INDEX sp_idx ON TableA(GeographyAreaCode) USING GEOGRAPHY_GRID WITH (GRIDS = (LEVEL_1 = ...
1
vote
1answer
202 views
Which PostGIS SRID is most efficient for a spatial index?
I have a PostGIS-enabled database with a table called locations that stores latitude-longitude points (SRID 4326) in a column called coordinates. However, all of my lookups on that table convert the ...
4
votes
1answer
104 views
choice of parameters for R* Tree using SpatialIndex library
I am using the spatialindex library from http://libspatialindex.github.com/
I am creating an R* tree in the main memory:
size_t capacity = 10;
bool bWriteThrough = false;
fileInMem = StorageManager
...
1
vote
1answer
201 views
PropelORM with MySQL SPATIAL data type
I'm using PropelORM 1.6 and implementing some kind of GIS service for a project.
In database (MySQL), for coordinates, I'm using field type of POINT to store the coordinates for diverse items.
In ...
0
votes
0answers
66 views
R tree creation
Since R tree is a dynamic index structure, how do we create the tree?
For example, I see this problem from a university paper. We are required to create an R-tree using linear split.
My question ...
2
votes
2answers
83 views
Query on spatial index not responding
I have a database sitting on a SQL Server 2008 with ~12 billion rows that all contain lat, lon and a corresponding geography fields. I recently needed to add the ability to query on the geography ...
4
votes
2answers
268 views
What spatial indexing algorithm should I use?
I want to implement some king of spatial indexing data structure for my MKAnnotations.
Currently it's horribly slow when I try to filter them based on distance criteria ( 3-4k of locations, currently ...
1
vote
1answer
187 views
Do I really need to use MySQL Spatial Functions?
Well I want your opinions about this case:
I need a database that will have... two or three tables at most, one of them will have points (latitude, longitude) and some other info.
It's really simple ...
0
votes
0answers
199 views
Searching lucene index by radius using spatial4n returning results from farthest to closest
I've been searching the net for around 2 hours to no avail so hopefully someone here can figure out what I'm doing wrong. I'm using Lucene .NET 2.9.4g with the latest build of spatial4n off of github ...
0
votes
1answer
526 views
SQL Server Spatial Index Nearest Neighbour
I am trying to query geopoints for nearest neighbour, Whether I use spatial index or not, I always get similar times and it takes about 6 seconds. How can I speed this query up?
Here is my query:
...
0
votes
1answer
177 views
Spatial Index slows down query with STContains
I'm testing if I can use spatial indices on SQL Server 2012.
So, I've got a table
CREATE TABLE [dbo].[Records]
(
[ID] [uniqueidentifier] PRIMARY KEY NOT NULL,
[Value] [nvarchar](256) NOT NULL,
...
0
votes
1answer
108 views
Get Latitude Longitute From Access To MSSQL
I have an Access table with venue information. I'm toying with nearest neighbor stuff to show the website viewer the upcoming event that's nearest to them.
The main, in-house, database is Access but ...
1
vote
1answer
278 views
mongodb: can find on a 2d index return distance?
i see from the mongodb doc, that db.runCommand with geoNear return distance also.
I am using mongoose in node.js and want to know if the same can be achieved with Model.find({'loc': { $near: [lng, ...
1
vote
1answer
111 views
How to find points, sort them based on closeness, and get 1-20, 21-40, etc. Efficiently using Myisam and mysql and spatial index
Say I want to find 20 closest business near me. Latter I want to see the next 20 closest, etc. Yes I have myisam. I have spatial indexes on the point. I am looking for actual SQL command I should ...
4
votes
1answer
275 views
Error when using Spatial Index in SQL Server
I use Spatial Index and when I try to execute WHERE statement:
WHERE T.GEOMETRY.STIntersects(O.GEOMETRY) = 1 AND T.GEOMETRY.STTouches(O.GEOMETRY) = 0
It works fine, but when I try to execute with ...
2
votes
1answer
87 views
In rtree, how can I specify the threshold for float equality testing?
In rtree, how can I specify the threshold for float equality testing?
When checking nearest neighbours, rtree can return more than the specified number of results, as if two points are equidistant, ...
1
vote
1answer
135 views
Using STCrosses() with a Spatial Index in SQL Server
Does The Microsoft StCrosses() function for Geography data support Spatial Index?
When I try to execute this function with Spatial Index I get this error message:
"The query processor could not ...
1
vote
1answer
170 views
Spatial Indexes providing no benefit
I have a large query that attempts to match up centroids with the polygons that they fit inside. While I do constrain by Z values of the blocks and the polygons, it still does a lot of point-in-poly ...
2
votes
2answers
204 views
Find rectangle in 2d space
I have set of rectangles of various sizes in 2D space. Number of rectangles may be changed dynamically from 10 to 100 000, their position, as well as their sizes are often updated.
Which spatial ...
4
votes
1answer
421 views
Need a proper data structure or index for fast user lookup based on 3d points and importance factors
I have a large number of 3d points paired with importance factors.
Each user has a six points. For example: Person Charlie has 6 points: (22,44,55) is his first point with an importance factor of 3, ...
1
vote
1answer
490 views
Using a spatial database to find polygons that contain a point
I'm using MongoDB to store spatial records. Some records are polygons, and others are points. Data is being continually inserted.
I need to be able to access all records whose polygon contains a ...
1
vote
1answer
207 views
Spatial index hints don't work in SQL Server 2008?
Using the following
SELECT *
FROM dbo.GRSM_WETLAND_POLY
CROSS APPLY (SELECT TOP 1 Name, shape
FROM GRSM.dbo.GRSM_Trails --WITH(index(S319_idx))
WHERE ...
1
vote
1answer
98 views
MySQL not using possible index - why?
I have a table containing a sample set of ~40k rows, with each row containing a Point (longitude and latitude). I'm using MySQL's spatial extension to find which Points exist within a boundary.
If I ...
0
votes
1answer
428 views
WiX installing SQLServerSpatial.dll and SQL Server 2008 R2?
We're trying to update our WiX installer to install SQL Server 2008 R2. Regular 2008 seemed to install fine on most machines, but the R2 install seems to fail to install SQLSysClrTypes - so we hit an ...
0
votes
1answer
85 views
Can not delete Metadata entry in Spatial DB
I am trying to a spatial data table in my db using :
CREATE TABLE building (buildid VARCHAR(15) PRIMARY KEY, buildname VARCHAR(50),numpoint NUMBER,points SDO_GEOMETRY);
CREATE INDEX ...
6
votes
1answer
352 views
Spatial index slowing down query
Background
I have a table that contains POLYGONS/MULTIPOLYGONS which represent customer territories:
The table contains roughly 8,000 rows
Approximately 90% of the polygons are circles
The ...
