1
vote
3answers
90 views
Calculating distance from latitude, longitude and height using a geocentric co-ordinate system
I've implemented this method in Javascript and I'm roughly 2.5% out and I'd like to understand why.
My input data is an array of points represented as latitude, longitude and the …
1
vote
4answers
145 views
Given a latitude and longitude, find users interested in that position
Given a table,
+-----+---------+---------+---------+---------+---------+
| user| min_lat | max_lat | min_lng | max_lng |
+-----+---------+---------+---------+---------+---------+
…
0
votes
1answer
19 views
SQL Server Spatial Datatypes
I have exported an ESRI shapefile to SQL Server 2008 using Manifold, which gives me a column "Shape" of type Geometry. The Manifold .prj file looks like this
GEOGCS["GCS_WGS_1984" …
9
votes
2answers
652 views
NHibernate.Spatial and Sql 2008 Geography type
hi there,
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 …
1
vote
0answers
18 views
What spatial SRID is this? (trying to convert a .shp file to WSG84)
Hi folks,
I'm trying to import some Shapefile mapping data into Sql2008. Before I do that, I need to convert it to WGS84 / SRID 4326, because all my existing data is in this forma …
5
votes
6answers
1k 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 …
1
vote
2answers
45 views
Google maps spatial reference system
What is Google map's spatial reference system using when you enter a lat, long into the maps search bar?
I've found hints that it might be WGS84 but after converting to that coord …
1
vote
1answer
53 views
Coordinate transform
Do any open source or 'free' libraries exist for Java where i can perform coordinate transforms from one spatial system to another?
I found Opengeo http://opengeo.org/ but it's a …
0
votes
1answer
33 views
MySQL query for geographic midpoint
I need a MySQL query (or function) to calculate the geographic midpoint of an arbitrary number of latitude/longitude coordinates. I want to use Method C (Average latitude/longitude …
3
votes
5answers
181 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-c …
1
vote
2answers
105 views
Mapping Calculated Fields in Hibernate
I'm not sure if this is possible in Hibernate but it would be really great if it was :) I've not actually got past the conceptual stage with this but I'll explain as best as I can. …
7
votes
7answers
744 views
Calculate the Hilbert value of a point for use in a Hilbert R-Tree?
I have an application where a Hilbert R-Tree (wikipedia) (citeseer) would seem to be an appropriate data structure. Specifically, it requires reasonably fast spatial queries over …
2
votes
1answer
64 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.
W …
1
vote
2answers
66 views
Speed up text comparisons (feature vectors) with spatial MySQL features
I have a function which takes two arrays containing the tokens/words of two texts and gives out the cosine similarity value which shows the relationship between both texts.
The fu …
2
votes
6answers
193 views
which data structure is appropriate to query “all points within distance d from point p”
hey there!
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) …
