Tagged Questions
11
votes
2answers
786 views
Is there any documented free R-Tree implementation for .NET?
I found some open source R-Tree implementations in C#, but none with documentation nor signs of being used by someone else than the developer.
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
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
3answers
2k views
Know of any C# spatial data libraries?
I'm looking at implementing spatial queries in .NET without using SQL2008. The first requirement is to be able to create a (BTree styled) spatial index and be able to query it.
Although SQL 2008 ...
3
votes
1answer
320 views
Can I create a “Covering, Spatial” index in SQL Server 2008?
I currently have a site with a table that has Lat/Long float columns, and an index over those 2 columns plus another one I need to retrieve.
I'm constantly querying this table to get the rows that ...
2
votes
2answers
83 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.
...
1
vote
1answer
88 views
Using spatial index in mssql gets “Failed to open malformed assembly 'mscorlib'”
I'm having a bit of an issue with setting up a db in MSSQL where when I try to set up an index on a geography data typed column and it keeps spiting out an error of
Msg 6507, Level 16, State 2, Line ...
1
vote
0answers
62 views
How do I make my spatial index use a Level greater than HIGH?
My spatial geography index in SQL Server has the following level definitions.
HIGH LOW LOW LOW
The problem is that all of my points are in a city and thus all of my points are in a single cell at ...
1
vote
3answers
604 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
1answer
102 views
Are SPATIAL Geometry indices performannce dependant on the size and density of geometry shapes?
Spatial Indexes
Given a spatial index, is the index utility, that is to say the overall performance of the index, only as good as the overall geometrys.
For example, if I were to take a million ...
1
vote
2answers
669 views
How can I speed up this Sql Server Spatial query?
I have (what I think) is a simple Sql Server spatial query:
Grab all the USA States that exist inside some 4 sided polygon (ie. the viewport/bounding box of a web page's google/bing map)
SELECT ...
0
votes
1answer
180 views
Spatial database, strange index behavior
So, my database has a Table with a Id of type BigInt and a Geometry of type Geometry. The Geometry field has a spatial index called idx_Geometry
The following query works as expected using the index:
...
0
votes
2answers
512 views
How can I specify this SQL Index Hint on my SQL Server 2008 query?
I'm not sure where/how I specify this SQL Spatial Index hint on my query :-
SELECT Whatever
FROM Table1 a
INNER JOIN Table2 b ON a.Id = b.Id
WHERE ...