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

Return string from javascript to c#

I am curently working with google maps and I have a method that creates markers on google maps. The method gives the info for the markers. one part of this info is the longtitude and lattitude for the marker. The longtitude and lattitude are…
Arnout
  • 157
  • 1
  • 13
1
vote
0 answers

Remove Country and just show Town?City in Google Geocoding API

I've managed to get the users location into an input field but having difficulty editing the address string that shows up. At the moment you'll see HERE Thant it shows Town and Country when I just want it to show Town. This is the section of script…
1
vote
0 answers

get address corresponding to lattitude and longitude in google map api v2

Hi in my application i am getting the lattitude and longitude of a location.I want to convert that points into address, when i try to do so iam getting error java.io.IOException: Service not Available at…
1
vote
1 answer

Geocoding a list of addresses from a CSV file

I am trying to geocode a list of addresses in a CSV file. The column with the information is named "full" and it looks like this: full 100 Ross St,15219 1014 Blackadore Ave.,15208 1026 Winterton St.,15206 ... This is the code that I am…
asado23
  • 366
  • 1
  • 7
  • 20
1
vote
1 answer

Geocoding custom user meta in WordPress

I'm using User Front End Pro to provide a front end registration form. One line of that is for an address, and I want to use that to display a map of all users with Geo Mashup. I have a custom field that saves to user meta called geocode_address, I…
Paul Aston
  • 135
  • 12
1
vote
3 answers

How to get city districts to places via Overpass API?

I use the Overpass API to get the streets and public places of Budapest. I used the following query to get it:
Kiss László
  • 265
  • 4
  • 16
1
vote
1 answer

Iphone SDK: adding israel roads and streets to MapKit

MKMapview, class of the mapkit framework for the iphone doesn't display israel streets, cities or any other details by default, how can i add it? is there something i have to buy and put in my program? I Just can't find where to start..
Alon Amir
  • 4,913
  • 9
  • 47
  • 86
1
vote
2 answers

is it possible to track user position from his phone number in ios?

I am working on map based iphone application. Where i need to find user position of week days from morning 9:00 AM to 5:00 PM either by using Device IDs or his mobile number. I know that Apple has instructed third-party developers to cease tracking…
Anand Gautam
  • 2,541
  • 3
  • 34
  • 70
1
vote
5 answers

Large volume geocoding and distance checking

I am trying to write an app for a company that maintains a registry that is updated everyday. The app will have to take the user's location and display all the nearest locations that are in that registry. Thus far I have gotten the app to call out…
Makinitez21
  • 89
  • 3
  • 11
1
vote
2 answers

Reverse Geocoding for Israel

Where can i find a free service for reverse geocoding a coordinate in israel to get a street address? the google api web service doesnt give me a street address in israely coordinates... Thanks.
Alon Amir
  • 4,913
  • 9
  • 47
  • 86
1
vote
1 answer

geocoder address works on tablet but not on mobile

I am using this code : String address = ""; Geocoder geoCoder = new Geocoder( getBaseContext(), Locale.getDefault()); try { List
addresses = geoCoder.getFromLocation(latitude ,longitude , 1); if…
jason
  • 3,932
  • 11
  • 52
  • 123
1
vote
1 answer

Draw google road maps : Fixing the error in route

Now I am working on mobile application Which fetches the gps location in certain intervals send location data to server. The server draw Google route map based in this information. Please help me solve the following scenario Sometime the gps…
Stack User 5674
  • 1,548
  • 1
  • 20
  • 44
1
vote
1 answer

How to calculate geospatial distances from a collection with lat+long info?

I have a collection of lat+long values. In a given moment a new point (lat+long) is passed to application. At this moment, application should return the distances from this point to those values stored in the collection. Application should also be…
blackjack
  • 1,081
  • 2
  • 13
  • 30
1
vote
1 answer

PostGIS TIGER Geocoder data source

I am configuring PostGIS TIGER Geocoder and looking for alternative source of TIGER files, at least for one or more state (at the moment all government census resources are down). Namely, these are the files needed by PostGIS Geocoder: TIGER2012:…
Luma
  • 55
  • 1
  • 6
1
vote
1 answer

Mapped array to relation

I have the following model associations: A concert has_one location. Location is a polymorphic association (concerts are not the only locatables). The location is geocoded through its address attribute by the geocoder gem. The goal is to find a…
Dennis Hackethal
  • 13,662
  • 12
  • 66
  • 115
1 2 3
99
100