The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
1answer
276 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.
21
votes
9answers
17k views

What's the best way to store co-ordinates (longitude/latitude, from Google Maps) in SQL Server?

I'm designing a table in SQL Server 2008 that will store a list of users and a Google Maps co-ordinate (longitude & latitude). Will I need two fields, or can it be done with 1? What's the best ...
18
votes
4answers
4k views

NoSQL and spatial data

Has any of you had any experience with using NoSQL (non-relational) databases to store spatial data? Are there any potential benefits (speed, space, ...) of using such databases to hold data for, say, ...
14
votes
3answers
3k views

Spatial data types support in Linq2Sql or EF4

Does anyone know (ideally, with a reference), whether the VS2010 release of LinqToSQL or EntityFramework v4 will support queries over the SQL 2008 spatial data types?
13
votes
7answers
1k views

Efficient represention for growing circles in 2D space?

Imagines there's a 2D space and in this space there are circles that grow at different constant rates. What's an efficient data structure for storing theses circles, such that I can query "Which ...
13
votes
6answers
2k views

Storing objects for locating by x,y coordinates

I'm trying to determine a fast way of storing a set of objects, each of which have an x and y coordinate value, such that I can quickly retrieve all objects within a certain rectangle or circle. For ...
12
votes
2answers
2k views

NHibernate.Spatial and Sql 2008 Geography type

i'm currently working on a project where i have to deal with sql server 2008 geography types. As big parts of the projects uses NHibernate as ORM i wonder how much work it will be to use/extend ...
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.
10
votes
2answers
4k views

Inverse Distance Weighted (IDW) Interpolation with Python

The Question: What is the best way to calculate inverse distance weighted (IDW) interpolation in Python, for point locations? Some Background: Currently I'm using RPy2 to interface with R and it's ...
9
votes
3answers
4k views

Broad phase collision detection - Quadtrees, BSP, etc

Collision detection is naturally an O(n^2) problem. You have a bunch of objects and you need to check if that object is colliding with every other object. Right now that is my naive approach and ...
8
votes
5answers
874 views

2D Game: Fast(est) way to find x closest entities for another entity - huge amount of entities, highly dynamic

I'm working on a 2D game that has a huge amount of dynamic entities. For fun's sake, let's call them soldiers, and let's say there are 50000 of them (which I just randomly thought up, it might be much ...
8
votes
5answers
1k views

Spatial Data Structures for moving objects?

I was wondering what is the best data structure to deal with a lot of moving objects(spheres, triangles, boxes, points, etc)? I'm trying to answer two questions, Nearest Neighbor and Collsion ...
7
votes
5answers
197 views

Effective data structure for overlapping spatial areas

I'm writing a game where a large number of objects will have "area effects" over a region of a tiled 2D map. Required features: Several of these area effects may overlap and affect the same tile ...
6
votes
2answers
454 views

Drawing a surface plot in Matlab similar to one obtained using Gnuplot?

Update: Link to my test dataset I have some data like this: 10.0 11.0 0.5 10.0 12.0 0.5 10.0 14.5 0.5 10.0 16.0 0.5 10.0 18.5 0.5 10.0 19.0 0.5 10.0 19.5 0.5 10.0 20.0 0.5 Using Gnuplot, I could ...
6
votes
1answer
2k views

Solr vs. Sphinx for spatial search

I'm tasked with choosing the fulltext search engine we're going to be using on an upcoming projects. Based on what I've read, I'm leaning toward Solr, but I'm a little concerned about spatial search. ...
6
votes
3answers
1k 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 ...
6
votes
4answers
940 views

Are SQL Server 2008 Spatial Data features useful for mapping queries?

I have an app where basically I have a huge table (100 million records) of information, with each row containing a lat/long value. I'm constantly querying this table to get all the records that fit ...
6
votes
5answers
558 views

Storing Large 2D Game Worlds

I've been experimenting with different ideas of how to store a 2D game world. I'm interested in hearing techniques of storing large quantities of objects while managing the set that's visible ( lets ...
6
votes
3answers
654 views

Pre RTree step: Divide a set of points into rectangular regions each containing one point

given my current position (lat,long) I want to quickly find the nearest neighbor in a points of interest problem. Thus I intend to use an R-Tree database, which allows for quick lookup. However, first ...
5
votes
6answers
224 views
+150

Looking for library/tool to visualise multi-dimensional data

I'm using Python in an attempt to analyse a large chunk of empiric measurements. In essence, I've two functions transforming the empiric data which also takes 3 'count' parameters - and returns a ...
5
votes
1answer
431 views

Poor Performance when using Spatial Indexes in MySQL

I'm trying a little experiment at pushing a data set which is not geo-spatial but fits it quite well and am finding the results somewhat unsettling. The data set is genomic data e.g. the Human Genome ...
5
votes
2answers
264 views

Spatial Data Structure for Games

I need to implement a spatial data structure to store rectangles then be able to find all rectangles that intersect a given rectangle. This will be implemented in JavaScript. So far I am developing a ...
5
votes
6answers
695 views

Plotting GPS info with Ruby

I'm looking for ways to programmatically convert my GPS logs to images and would like to do this in Ruby... if that's an acceptable tool. I have no GIS background whatsoever but as a programmer i ...
5
votes
2answers
728 views

PHP, MySQL, spatial data and design

Im building an application where vehicles coordinates are being logged by GPS. I want to implement a couple of features to start with, such as: realtime tracking of vehicles history tracking of ...
5
votes
1answer
964 views

Why can't I insert into MySQL?

+---------+---------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +---------+---------+------+-----+---------+----------------+ | id | ...
5
votes
1answer
677 views

Is NHibernate.Spatial compatible with NHibernate 3.0?

I want to use NHibernate.Spatial. I also want to use new NHibernate 3.0 features such as the improved LINQ provider and the QueryOver functionality, which are only available in NHibernate's source ...
5
votes
1answer
2k views

Spatial data/Geography in SQL Server 2008, OR mappers and C#

I'm developing an application in C# that will use and store geographic locations using the data type "Geography" in SQL Server 2008. I was planning to use the Entity Framework but soon discovered it ...
5
votes
6answers
914 views

which data structure is appropriate to query “all points within distance d from point p”

i have a 3D pointcloud and i'd like to efficiently query all points within distance d from an arbitrary point p (which is not necessarily part of the stored pointcloud) the querry would look ...
5
votes
3answers
411 views

Spatial SQL: Most suitable datatype for a square?

I have a spatially enabled database (DB2, in this case). I need to store a large number of squares in a table. Which standard spatial SQL datatype is most suitable? I guess I could use an ST_polygon, ...
5
votes
1answer
2k views

Spatial Data in PostgreSQL

PostgreSQL supports a variety of geometric types out of the box, along with lots of geometric operators and GiST indexes which seem to offer spatial indexing of data. And then there's also PostGIS, ...
4
votes
2answers
128 views

How do I estimate a variogram for data on a globe?

I have data with associated longitudes and latitudes. How do I get a variogram for this data based on the great-circle distances between the points? This simple example has all the data on the ...
4
votes
1answer
311 views

SQL Server spatial and linked servers

I have a SQL Server 2008 instance that I've added a linked server to another 2008 instance. The table I'm accessing on the linked server contains spatial types. When I try to query the table I receive ...
4
votes
3answers
408 views

How to attach a simple data.frame to a spatialpolygondataframe in R?

I have (again) a problem with combining data frames in R. But this time, one is a spatial.polygon.data.frame(SPDF) and the other one is usual data.frame (DF). The SPDF has around 1000 rows the DF ...
4
votes
3answers
613 views

3D clustering Algorithm

Problem Statement: I have the following problem: There are more than a billion points in 3D space. The goal is to find the top N points which has largest number of neighbors within given distance R. ...
4
votes
1answer
839 views

distance between two points across land using sql server

I am looking to calculate the shortest distance between two points inside SQL Server 2008 taking into account land mass only. I have used the geography data type along with STDistance() to work out ...
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 ...
4
votes
7answers
712 views

What are some recommended frameworks for manipulating spatial data in C++?

What are some recommended frameworks for manipulating spatial data in C++? I'm looking for a polygon object, point object, and some operations like union, intersection, distance, and area. I need ...
4
votes
6answers
2k 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 ...
4
votes
1answer
536 views

How to persist a calculated GEOMETRY or GEOGRAPHY column

I'm trying to create a table under SQL Server 2008 containing a GEOMETRY column and a calculated variation thereof. Considering the following table where the calculated column returns a buffered ...
3
votes
2answers
105 views

R: getting a slot's value of S4 objects?

So I have a spatialpolygons object in R; but I am not sure why I am unable to retrieve the "area" slot from it. Here's my R session: > spatialpolygons An object of class "SpatialPolygons" Slot ...
3
votes
2answers
66 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
2answers
63 views

pseudo-random pattern with fixed density and exclusion zone

I wish to create a 2D set of N points (typically 1e2 - 1e4) in a square with the following constraints: there should be a minimal distance between all points (hard core exclusion zone) the number of ...
3
votes
1answer
185 views

How to combine multiple LineString rows into a single row collection

I'm using SQL Server 2008 and the Geometry datatype to store a list of UK a roads, which I've imported from the Ordanance Survey STRATEGI data set. Each road is split into multiple rows, which each ...
3
votes
1answer
56 views

Querying database using geographical areas/points

I'm new to the concept of GIS in databases and am looking for a solution that allows me to do the following: - store polygon areas in a record field - Store geographical points. These points will ...
3
votes
2answers
307 views

How to improve a spatial raster map using ggplot when compared to spplot?

How can I improve the legend of spatial raster map plot using ggplot when compared to a spplot() legend? I would like plot spatial maps using ggplot() instead of ssplot() however there are a few ...
3
votes
3answers
101 views

Is SQL Azure suitable for adhoc intensive SQL processing?

I'm looking for some guidance on whether SQL Azure is a suitable platform for one-off, short-term intensive processing of a batch of SQL data. (i.e. "crunching" of data) My scenario is as follows: I ...
3
votes
1answer
156 views

Using Dapper with SQL Spatial Types as a parameter

I've got a system which basically has to do a query like this: SELECT * FROM MyTable WHERE @parameter.STIntersects(MyGeometryColumn) This is quite simple to do when using vanilla SQL parameters, ...
3
votes
4answers
579 views

Different legends and fill colours for facetted ggplot?

Sorry for not included any example data for my problem. I couldn’t find a way to easily produce an example shape file. Hopefully, experienced users of ggplot can see what I’d like to do from the ...
3
votes
5answers
200 views

How to find “nearby” results?

Assuming you have the latitude and longitude of your user, and you want to find nearby... let's say restaurants, how do you query your relational DB? For something like "restaurants within a 25 mile ...

1 2 3 4 5 6