Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
1answer
4k views

Formulas to Calculate Geo Proximity

I need to implement a Geo proximity search in my application but I'm very confused regarding the correct formula to use. After some searches in the Web and in StackOverflow I found that the solutions ...
10
votes
4answers
4k views

How can i calculate the distance between two gps points in Java?

I used this code but it doesnt work: Need the distance between two gps coordinates like 41.1212, 11.2323 in kilometers (Java) double d2r = (180 / Math.PI); double distance = 0; try{ double ...
8
votes
2answers
381 views

Find all coordinates within a circle in geographic data in python

I've got millions of geographic points. For each one of these, I want to find all "neighboring points," i.e., all other points within some radius, say a few hundred meters. There is a naive O(N^2) ...
7
votes
5answers
184 views

Missing results due to geo proximity formula (store locator)

OK - I've been wrestling with this for about 3 months on and off and since I've exhausted every geo proximity formula out there that I've come across and I'm no closer to getting the right results I ...
6
votes
4answers
182 views

How to perform bilinear interpolation in Python

I would like to perform blinear interpolation using python. Example gps point for which I want to interpolate height is: B = 54.4786674627 L = 17.0470721369 using four adjacent points with known ...
5
votes
4answers
103 views

Is there any free/paid geo data service available?

I need to create two dropdowns for an app. One shows all countries the the world, the other is filled with all cities of a selected country in the first dropdown. Is there any web service or database ...
5
votes
3answers
5k views

Google Geolocation API library

Is there a library out there that will get you your approximate location using the google service (https://www.google.com/loc/json)? Google Gears has support for it as described here ...
4
votes
2answers
79 views

Algorithm to find clusters (min x pts. within y distance of cluster center) of geographical points

Given a database of geographical locations (long/lat), what would be the best approach to determining/detecting clusters of locations that are within x miles of the cluster center AND total at least y ...
4
votes
1answer
1k views

Best Javascript Geo chart/map library

What is the best JavaScript Geo map/chart available (high quality solution) ? It should work on the ipad/android tablets/ie8++/firefox... and ideally with a professional support. Google ...
3
votes
4answers
87 views

What's the best way to lookup the US county a US city resides in?

I'm looking for the best/easiest way to programmatically grab the name of the US county a given US city resides in. It doesn't seem there's a straightforward API available for such a (seemingly ...
3
votes
3answers
627 views

Given the lat/long coordinates, how can we find out the city/country?

For example if we have these set of coordinates "latitude": 48.858844300000001, "longitude": 2.2943506, How can we find out the city/country?
3
votes
5answers
515 views

Find County name for a Lat/Long

I'm trying to find a webservice that will allow me to get a County name (not Country) for a specific Lat/Long. I would be performing the lookup within a server application (likely a Java ...
3
votes
3answers
2k views

Get Nearest Places Google Maps (MySQL Spatial Data)

I have a database with a list of stores with latitudes and longitudes of each. So based on the current lat,lng location that I input, I would like to get a list of items from those within some radius ...
3
votes
3answers
856 views

Distance by sea calculator, intermediate coordinates?

How do I calculate distance between 2 coordinates by sea? I also want to be able to draw a route between the two coordinates. Only solution I found so far is to split a map into pixels, identify each ...
3
votes
4answers
2k views

Maximum length of a decimal latitude/longitude Degree?

What is the maximum length (in kilometers or miles - but please specify) that one degree of latitude and longitude can have in the Earth surface? I'm not sure if I'm being clear enough, let me ...
2
votes
2answers
101 views

Algorithm to Get Directions

I have a consisting of points along a gpx route by distance. I want to use this to generate directions based upon the underlying trail data I have. It works great except that the inaccuracies of the ...
2
votes
2answers
95 views

No activity found to handle geo intent in emulator

I have following simple method in my main activity. private void showMap(String name ) { String thePlace = name.replaceAll(" ", "+"); Intent intent= new ...
2
votes
1answer
152 views

Android WebView : disable geo: for addresses

In my Android application, I am using a WebView to render a list of locations. For some reason, when I click on a list item, it interprets it as a "geo:" address and opens the default browser to show ...
2
votes
1answer
54 views

GeoIP Routing with Windows Azure

I'm working on a somewhat large project that will eventually be loaded on Azure. The idea is we will have multiple compute nodes all over the world as our customer base is potentially that large. ...
2
votes
3answers
706 views

Calculate the center point of multiple latitude/longitude coordinate pairs

Given a set of latitude and longitude points, how can I calculate the latitude and longitude of the center point of that set (aka a point that would center a view on all points)? EDIT: Solution I ...
2
votes
1answer
104 views

sperical law of cosines formula

I'm tring to calculate a point's longitude from the other point's longitude. They have the same latitude and the distance between them is known. I try to use the sperical law of cosines formula. # ...
2
votes
2answers
1k views

MKMapKit and the IOS4

Hey all, I'm trying to get the MKMapView up and running however I can't seem to get past what seems to be a reference error. I've spent a few hours googling this as well as last night. Header: ...
2
votes
7answers
3k views

How to calculate distances between coordinates EFFICIENTLY in Oracle

I have a large Oracle database ( 720,000 records aprox) where each record has its own geographic coordinates (lat & lng) and i need to select just the records that are in a specific distance ...
2
votes
2answers
994 views

UIImagePickerController does not deliver geo tag data

When I use UIImagePickerController to select a photo, either from the Camera Roll or the Photo Library, the image that gets returned to me in the method 'didFinishPickingImage' does not contain the ...
1
vote
0answers
7 views

Oracle spatial search within distance

I have the following table Cities: ID(int),City(char),latitude(float),longitude(float). Now based on a user`s longitude(ex:44.8) and latitude(ex:46.3) I want to search for all the cities near him ...
1
vote
1answer
55 views

Relative position of latlon points

I'm currently involved in a project where it'd be useful to display geographical points as overlays on top of a VIDEO element (size 512x288). The VIDEO element contains a live broadcast, and I also ...
1
vote
1answer
80 views

Android GEO Location Tutorial

Does anyone know a good GEO Location tutorial for Android. I don’t want to have to get a Google maps API key I just want an Activity that gets the location of a phone and sticks it in a variable that ...
1
vote
0answers
58 views

How to best do server-side geo clustering?

I want to do pre-clustering for a set of approx. 500,000 points. I haven't started yet but this is what I had thought I would do: store all points in a localSOLR index determine "natural cluster ...
1
vote
1answer
37 views

Is there a way to pass current speed data along with latitude and longitude using the Android emulator and 'geo fix'?

I'm currently building an Android app that uses the Android emulator to pass GPS location data, specifically the latitude, longitude, and speed. I have used a real device and everything is okay, but I ...
1
vote
1answer
83 views

HTML5; finding what is near me with geolocation

Disclaimer: I am slow learner; I have a list of 300 businesses with address and grid coordinates. I know how to request a users location with HTML5 Geolocation. How do I use that information to ...
1
vote
0answers
106 views

Geo-fencing…is location within fence?

I'm writing a server side java application that takes location updates from an android device. The device is traveling along a route and I want to be able to determine if it had arrived at its ...
1
vote
1answer
59 views

Multiple Points Along Line between two known Geo Coords?

I have a Java project to plot properties to geo co-ords. It does not need to be super accurate, within 10+ metres is fine. I have searched Haversine formulas, and midpoint formulas, but I can't see ...
1
vote
1answer
66 views

What measurement unit is used to determine GPS accuracy with the HTML5 geo API?

I use HTML5's geolocation API and the position object has a "accuracy" property which is a number that may vary depending on the accuracy of the positioning. So far so good. But the value is an ...
1
vote
0answers
32 views

href geo: fallback for non-mobile browsers?

I want to use to open clients possible mobile navigation software, but how can i fallback to a normal URL if geo isn't assoicated with any program on the device? E.g. in firefox on PC i get this ...
1
vote
1answer
68 views

Problems building geocommons geocoder

I've downloaded the geocommons/geocoder source and have one small sample TigerLine zip file from the census site saved into /opt/tiger/tl_2010_01_state10.zip I've tried to run the tiger_import tool ...
1
vote
1answer
75 views

Geo mapping - how to?

I need to develop an application where I will display statistics on a map at county / town level. I had a look at the Google API, but the Geo Mapping is only at the country level. Has anyone seen a ...
1
vote
1answer
97 views

Simple map interface to create geo bounding boxes?

Hoping someone can point me to an existing resource so I don't have to create it myself. Basically I need to get a series of lat/long coordinates that represent geo bounding boxes for Japan. The API ...
1
vote
1answer
65 views

Geo-Coding to Region and Provider

I'm working on a product which heavily relies on Geo-Data to map locations of 'places' matching a certain criteria. Right now when a user add's a 'place' to our inventory, using google's geo-data ...
1
vote
2answers
96 views

How to choose closest/fastest mirror in Python?

I've been thinking about how to implement mirror picking in Python. When I call on service API I get response with IP address. Now I want to take that address and check if it's close to me or not. If ...
1
vote
2answers
231 views

How to center a google map around a country if you just have the country name

I have a page about hiking in various countries. I am trying to make a page like that for each country, but not sure how to automatically center the google map around a country and also have it ...
1
vote
2answers
412 views

Postal code (ZIP) worldwide (not just US) optimized data structure (not SQL, CSV or Google API) for long and lat retrieval

Does any one know of database structure such as this http://www.maxmind.com/app/geolitecity that is optimized for super fast retrieval of long and lat based on either ZIP or (City, State, Country) ...
1
vote
1answer
449 views

Implementing Geofence - C#

I need to implement Geofence in C#. Geofence area can be round, rectangle, polygon etc. Does anyone have Geofence implementation in C#? I found Geo Fencing - point inside/outside polygon. But, it ...
1
vote
5answers
374 views

calculate the area of a polygon in ruby

I have an array of latitude/longitude coordinate pairs that represent a polygon. I'm trying to determine the total area within that polygon. How would I go about doing that in Ruby? Here's an ...
1
vote
2answers
604 views

Querying within longitude and latitude in MySQL

Before asking for specific code examples, I just wanted to ask whether it is possible to make a query something like this pseudo code: select items from table where lat/lon = -within x miles of a ...
1
vote
2answers
207 views

Determine the country iso code from GEO Coordinates

I have a mysql table with cities and for each city I have the geo coordinates. I want to build a query what should determinate the nearst city by given random coordinates of any position. Can anyone ...
1
vote
1answer
213 views

Geo Location with javascript

I am trying to geolocate a user then present him a driving path to my location using django and javascript. The js i am using is over here: ...
1
vote
2answers
542 views

java api for simple gis computations

I am trying to develop some simple location logic in the server-side portion of a java servlet-based webapp. There are really just two operations that I'm interested in: Given a start point ...
1
vote
3answers
779 views

SQL Server rand() aggregate

Problem: a table of coordinate lat/lngs. Two rows can potentially have the same coordinate. We want a query that returns a set of rows with unique coordinates (within the returned set). Note that ...
0
votes
0answers
27 views

Is there a way to build a ushahidi like website using WordPress or Drupal?

I would like to know if there is some Drupal module or a WordPress plugin that enables the creation of a ushahidi type website (Ushahidi is a non-profit software company that develops free and open ...
0
votes
0answers
15 views

“Places” to “Point” (Latitude, Longtitude) database

Does anyone know where I can find a database(.csv,etc.) for offline use, that has perhaps all known "Places"(Businesses ,residential,road,etc..) to Point(Latitude, Longitude)? Thanks.

1 2 3