Geocoding is a method to assign spacial coordinates - like longitude and latitude on the Earth's surface - to a data record or object which represents an address or other geographic data.
62
votes
8answers
24k views
What datatype to use when storing latitude and longitude data in SQL databases?
When storing latitude or longitude data in an ANSI SQL compliant database, what datatype would be most appropriate? Should float be used, or decimal, or ...?
I'm aware that Oracle, MySql, and SQL ...
51
votes
2answers
18k views
How, exactly does HTML5's GeoLocation work?
I know the browser shares my IP address and details of nearby wireless networks to determine my location, but what sort of info does it know about nearby wifi networks?
For example, where I live are ...
50
votes
6answers
32k views
How do I Geocode 20 addresses without receiving an OVER_QUERY_LIMIT response?
Using the Google Geocoder v3, if I try to geocode 20 addresses, I get an OVER_QUERY_LIMIT unless I time them to be ~1 second apart, but then it takes 20 seconds before my markers are all placed.
Is ...
44
votes
10answers
43k views
Working with latitude/longitude values in Java
Does anyone know of any free utility jars for java that assist with longitude/latitude manipulation in Java?
I am wanting to find the distance between two different points. This I know can be ...
39
votes
14answers
46k views
How to convert an address to a latitude/longitude?
How would I go about converting an address or city to a latitude/longitude? Are there commercial outfits I can "rent" this service from? This would be used in a commercial desktop application on a ...
38
votes
10answers
18k views
How to obtain longitude and latitude for a street address programmatically (and legally)
Supposedly, it is possible to get this from Google Maps or some such service. (US addresses only is not good enough.)
31
votes
5answers
2k views
Batch Geocoding with Garmin Mapsource
Please Note:
I AM NOT LOOKING FOR AN ALTERNATIVE SOLUTION
I lost track of this effort years ago but have need to geocode thousands of addresses nightly. I must use the very accurate database sitting ...
30
votes
4answers
19k views
How to determine a zip code and city from an IP address?
I am looking for advice for open API or 3d party products which will help to convert an IP address to a zip code and city, to make geo-specific web site content.
28
votes
6answers
23k views
How to calculate the bounding box for a given lat/lng location?
I have given a location defined by latitude and longitude.
Now i want to calculate a bounding box within e.g. 10 kilometers of that point.
The bounding box should be defined as latmin, lngmin and ...
28
votes
2answers
12k views
Why use the SQL Server 2008 geography data type?
I am redesigning a customer database and one of the new pieces of information I would like to store along with the standard address fields (Street, City, etc.) is the geographic location of the ...
23
votes
4answers
12k views
GIS: PostGIS/PostgreSQL vs. MySql vs. SQL Server?
EDIT: I have been using Postgres with PostGIS for a few months now, and I am satisfied.
I need to analyze a few million geocoded records, each of which will have latitude and longitude. These records ...
22
votes
7answers
1k views
Should I use a struct or a class to represent a Lat/Lng coordinate?
I am working a with a geo-coding API and need to represent the coordinate of a returned point as a Latitude / Longitude pair. However, I am unsure whether to use a struct or a class for this. My ...
22
votes
5answers
16k views
Get street address at lat/long pair
I've seen that it's possible to get the latitude and longitude (geocoding, like in Google Maps API) from a street address, but is it possible to do the reverse and get the street address when you know ...
22
votes
3answers
29k views
Google Maps: how to get country, state/province/region, city given a lat/long value?
I need a list of countries, states & cities based on a collection of lat/long values I have. I need to store this information in a manner that hierarchy is preserve and without duplicates (e.g. ...
18
votes
5answers
11k views
IP address in rails
I have Rails 2.3.8, Ruby 1.8.7, Mongrel Web Server and MySQL database.
I need to find the IP address but I am facing problems. I am in the development mode.
I googled and found code, that its simple ...
16
votes
4answers
5k views
Geocoding in R with Google Maps
I've tried running the code to geocode locations in R via Google Maps and the XML package from this blog post:
http://www.r-chart.com/2010/07/maps-geocoding-and-r-user-conference.html
Here are his ...
15
votes
4answers
10k views
Calculating Distance between two Latitude and Longitude GeoCoordinates
I'm calculating the distance between two GeoCoordinates. I'm testing my app against 3-4 other apps. When I'm calculating distance, I tend to get an average of 3.3 miles for my calculation whereas ...
15
votes
5answers
26k views
Google geocoding API (City => long, lat)
Does Google offer a RESTful API where I can pass it a city name (or zip) and it returns the longitude & latitude.
I know how to do this with using the Google Maps API, but I really don't want to ...
14
votes
7answers
20k views
Forward geocoding from the iPhone
Given that the mapkit doesn't provide forward geocoding functionality today, can anyone provide help on how I can i use a search bar to return a latitude and longitude coordinate from a user inputted ...
14
votes
7answers
6k views
Calculate distance between Zip Codes… AND users
This is more of a challenge question than something I urgently need, so don't spend all day on it guys.
I built a dating site (long gone) back in 2000 or so, and one of the challenges was calculating ...
14
votes
4answers
15k views
Android; Geocoder, why do I get “the service is not available”?
I want to use the Geocoder in an android application, I've got the following piece of code to sample it :
public class LocatorGeo extends Activity {
/** Called when the activity is first ...
14
votes
12answers
2k views
random geographic coordinates
Any clever ideas on how to generate random coordinates (latitude / longitude) of places on Earth? Latitude / Longitude. Precision to 5 points and avoid bodies of water.
double minLat = ...
14
votes
1answer
546 views
Why is the `sll` query parameter for a Maps URL being (sort of) ignored?
According to various references, Google Maps has a query param called sll which does the following:
Latitude,longitude of the point from which the business search
should be performed. You could ...
13
votes
6answers
15k views
Get latitude/longitude from address
How can I get latitude and longitude from a full address (street, city, etc.) input by the user, using the iPhone SDK 3.x?
13
votes
1answer
239 views
Scalable international geocoding solutions
We want out website to support international geocoding. We are wary of using APIs that throttle and/or cap requests, which could leave us with our pants down as the service gains volume. How do ...
12
votes
9answers
5k views
Geocoding libraries [closed]
I'm using python and I need to map locations like "Bloomington, IN" to GPS coordinates so I can measure distances between them.
What Geocoding libraries/APIs do you recommend? Solutions in other ...
11
votes
6answers
953 views
Storable Geocoding/reverse Geocoding services
Im currently looking into an easy way to query and store Latitude/Longitude for a given address. There are a plentitude of services out there, but none actually allows me to store the data I retieve ...
10
votes
4answers
5k views
Trilateration using 3 latitude and longitude points, and 3 distances
There exists an unknown target location (latitude and longitude co-ordinates). I have 3 latitude and longitude co-ordinate pairs and for each pair a distance in kilometers to the target location. How ...
10
votes
3answers
745 views
Obtain latitude and longitude from address without the use of Google API
I am currently working on a large population-based database where it is required that I compute the distance between two addresses for each individual. My first train of thought was to obtain the ...
9
votes
4answers
11k views
Converting latitude/longitude into city name? (reverse geolocating)
I'm working on a job board in Codeigniter PHP + jQuery where employers enter their location and we use Google Maps API to plot it. While this has had awesome usability results, the problem is when we ...
9
votes
3answers
9k views
retrieving lat/long of location using google.maps.geocoder
i have been trying to use some ajax to save venue location in my application and stumbled across the following code on stack overflow
function getLatLong(address)
{
var geocoder = new ...
9
votes
8answers
6k views
Google App Engine Geohashing
I am writing a web application using GWT and App Engine. My application will need to post and query items based on their latitude, longitude.
As a result of google's distributed database design you ...
9
votes
8answers
172 views
+100
How can I find the center of a cluster of data points?
Let's say I plotted the position of a helicopter every day for the past year and came up with the following map:
Any human looking at this would be able to tell me that this helicopter is based out ...
9
votes
3answers
9k views
Geocode an IP address?
Does anyone know of any open RESTful API that I can call to geocode a user's IP to the latitude and longitude?
Ideally, it would be something like: http://google.com/geocode_api/?IP=1.2.3.4 and it ...
9
votes
4answers
1k views
Improve centering county names ggplot & maps
Early I posted a question about plotting county names on a map using ggplot and maps found HERE. My first approach was to take the means of all the lat and long coordinates per county as seen here:
...
8
votes
3answers
4k 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 ...
8
votes
3answers
8k 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?
8
votes
5answers
9k views
How to detect that a point is inside a Polygon using Google Maps?
I would like to detect that a google.maps.LatLng is inside a google.maps.Polygon.
How can I do that ?
Cheers,
8
votes
7answers
21k views
Geocode multiple addresses
I need to geocode around 200 addresses per request and do around 3,000 request per day. I will be doing this server side using PHP. I have looked at ...
8
votes
4answers
14k views
using jquery.getJson with Google's GeoCoding HTTP Service [closed]
Google offers a wonderful REST interface for geocoding and reverse geocoding an address. My API key is valid, and if I enter the request directly into the browser address it works great. However, the ...
8
votes
3answers
2k views
Calculate longitude/latitude
Given the following input:
known longitudes/latitudes of 1..n locations
known distance between locations 1..n and another location "m"
How can I calculate the longitude/latitude of the location ...
8
votes
4answers
9k views
Geocoding Services - limits - Google vs Yahoo vs others?
Is Yahoo the best option?
http://developer.yahoo.com/geo/placefinder/
It says 50,000 requests per day. Does this mean you can geocode 50k addresses a day?
compared to Google at only 2,500?
...
8
votes
5answers
5k views
Best Geocoding Service for iPhone Developers
I have made an app that gets an array of addresses from a web service and I want to map them. I know Apple left this out in MapKit, including only a reverse Geocoder. I was wondering what the best way ...
8
votes
3answers
6k views
iPhone - access location information from a photo
Is it possible, in an iPhone app, to extract location information (geocode, I suppose it's called) from a photo taken with the iPhone camera?
If there is no API call to do it, is there any known way ...
8
votes
4answers
943 views
Implementing a geographic coordinate class: equality comparison
I 'm integrating a geographic coordinate class from CodePlex to my personal "toolbox" library. This class uses float fields to store latitude and longitude.
Since the class GeoCoordinate implements ...
8
votes
4answers
5k views
Measuring the distance between two coordinates in PHP
Hi I have the need to calculate the distance between two points having the lat and long.
I would like to avoid any call to external API.
I tried to implement the Haversine Formula in PHP:
Here is ...
8
votes
5answers
12k views
Is there a way to access the Bing Maps geocoding API via REST?
Is there a way to access the Bing Maps API via REST to obtain geocoding information from an address? This is something that's trivial to do with Google and Yahoo; what I'm looking for is ...
8
votes
1answer
3k views
Plotting google map with ggplot in R
I am trying to plot Google map that is queried using RgoogleMaps package and combine it with ggplot. Ultimately, I want to show total population using geom_point, somewhat similar to the picture below ...
8
votes
4answers
919 views
Retrieving population density data
I need to figure out whether not a given location is considered urban or rural. I take it that the best way to do this is by looking at the population density of the city/state or province/country ...
8
votes
1answer
1k views
Address Standardization/Correction/Geocoding
My place of employment is looking into buying a third party tool, for batch based US and Canadian Address correction, with Geocoding.
What Products have you used?
What do you Like about them?
What ...

