Questions tagged [geocoding]

Geocoding is a method to find the coordinates (e.g. latitude and longitude) of a data record (e.g. an address or zip code) or of an object which represents some other geographic data (e.g. country name, landmark, etc).

Geocoding is the process of finding associated geographic coordinates (often expressed as latitude and longitude) from other geographic data, such as street addresses, or ZIP codes (postal codes). With geographic coordinates the features can be mapped and entered into Geographic Information Systems, or the coordinates can be embedded into media such as digital photographs via geotagging.

The opposite, , is finding a textual location (such as a street address), from geographic coordinates.

A common use case is to find a record based on given address data - like city name, zip code, street name and house number or special points of interest - in a geo database which holds information about longitude, latitude or nodes in a road network for each address record.

Geocoding in software programs is often either supported as an interactive dialog based process, as an automatic batch process for geocoding mass data or a combination of both methods. Geocoding can be a highly sophisticated task as it often has to deal with unstructured or poorly structured address data and ambiguous or localized representations of addresses. The quality of geocoding results depends not only on the underlying geo database but also on the quality of string parsing and search algorithms which try to find a matching record as unambiguously as possible.

Geocoding is an important feature in - for example - Geographic Information Systems (GIS), Navigation Systems, Route Planning or Transport Management Systems.

The process of adding geographical identification metadata to various media such as photographs or videos, websites, SMS messages, QR codes, or RSS feeds. This data usually consists of latitude and longitude coordinates, though they can also include altitude, bearing, distance, accuracy data, and place names.


Useful links


Related tags

3226 questions
1
vote
1 answer

Google Geocoding - custom marker does not appear

I am trying to use the Google Maps API with Geo-coding. The marker's appear in the needed location but only red icon appear, as if the function ignores the icon parameter. Note, I have the same code without Geo-coding and the marker icon's appear as…
David Faizulaev
  • 4,651
  • 21
  • 74
  • 124
1
vote
1 answer

JavaScript HTML Google Maps API geocoding service Issue

I am attempting to plot multiple addresses using google maps api. I am having an issue returning the location value from the geocoding service for anything more that 11 test addresses. The test addresses return valid latlng values individually. My…
1
vote
1 answer

Free Shape Files for districts of the world

I am looking for shape files(polygons data) of all the districts in the world. I can find few files from different sources for districts of one country but I need one (updated) file that have all the districts in the world OR one reliable source…
Asim Saeed
  • 29
  • 4
1
vote
1 answer

Find coordinates for my database's address column

I have my own database that includes: address, lat, long, name. I have all the addresses that I want without their coordinates. Is there a way to find the coordinates in order to use them as markers on my active map? In other words I want something…
ThinkFast
  • 23
  • 6
1
vote
2 answers

Current location from latitude and longitude

I am using two methods for it getAddress() and address()..One to get latitude and and other one to get address from latitude and longitude.. public String getAddress(){ location =…
1
vote
0 answers

Google geocode returning in Cyrillic

Is there any way to get informations from geocode in latin. I have tried with language parameter but with no success. Link is: http://maps.google.com/maps/api/geocode/json?latlng=44.836009,20.5078136&sensor=false&oe=utf-8&language=en link
Vuk Vasić
  • 1,398
  • 10
  • 27
1
vote
1 answer

Appending an empty folder to an existing folder in a KML file using Python

I've been trying to figure this out on my own but I'm stuck. I want to add an empty folder to an existing folder in an existing KML file. This is what I have so far, when I open the file, there's no new folder named "test". import pykml from…
Schack
  • 833
  • 2
  • 7
  • 18
1
vote
1 answer

Is Google Maps smart enough to refrain from adding markers at positions that are not currently being displayed?

In my app/site, I start off showing the contiguous USA but allow the user to select a state (or go back to USA48, or select USA50+) from a dropdown list (selection widget):