Questions tagged [geocode]

Geocoding is a method to assign spatial coordinates - like longitude and latitude on the Earth's surface - to a data record or object which represents an address or other geographic data.

Geocoding is a method to assign spatial coordinates - like longitude and latitude on the Earth's surface - to a data record or object which represents an address or other geographic data.


Useful links


Related tags

756 questions
0
votes
2 answers

0 Value instead of NULL in column MySQL

I have a script that geocodes physical addresses and puts it into a MySQL database with two columns: coord_lat and coord_long. These are float type columns but unfortunately some addresses don't get geocoded correctly and the script tries to push…
chronotrigga
  • 589
  • 1
  • 10
  • 33
0
votes
1 answer

Getting a HTTP 403 Forbidden Error - Google Geocode API Request with PHP

I'm trying to do a Google Geocode Request with PHP, but I get a 403 Forbidden answer: Warning: file_get_contents(http://maps.google.com/maps/api/geocode/json?address=Bahnhofstrasse+1,+Zurich&sensor=false): failed to open stream: HTTP request failed!…
ccbit
  • 3
  • 1
  • 2
0
votes
1 answer

Geocode Radius results multiple values in row

I am having a little difficulty trying to solve an issue with google GEOcode radius search. I have everything setup fine and working :- $this->db->select('*, ( 3959 * acos( cos( radians('.$lat.') ) * cos( radians( lat ) ) * cos( radians( lng ) -…
0
votes
1 answer

Flash and Google Maps - Only Last Icon showing

I have a simple Map and geocoding sample in Flash using CS4 The problem is simple - I can retrieve a short list from the google search api, but when I try to generate the icons on the map using a loop, only the last icon is displayed. (ignore the…
Peter
  • 21
  • 6
0
votes
1 answer

I'm having memory issues reading and closing multiple JPG images

I'm having memory issues reading and closing multiple JPG images. I'm loading JPG files into an image object, reading the file information (size, dimensions, date, etc.), and reading their EXIF data to get the geocode for Lat/Long. Then I'm…
0
votes
2 answers

Is it possible to get travel distance (not crow files) between two lat & lng in sql

I have been using crow file distance function in sql to get the distance in KM. I am wondering if it is possible to get the travel distance not crow file distance in sql server 2008 r2?
user1263981
  • 2,953
  • 8
  • 57
  • 98
0
votes
0 answers

Geocoder gem not displaying proper distance users are away from address

I am using the geocoder gem to implement geolocation in my rails app. I am geolocating by address. The users are displayed properly according to location on the map but the distance away is incorrect. When the user index is displayed following…
0
votes
1 answer

Google maps API checking is element exists

I'm calling google maps geocode and looping over the address_components struct and tring to output the city name. I'd like to store the postal_town as the city name but if it does not exist then use the administrative_area_level_2 instead. The…
James Privett
  • 1,079
  • 3
  • 15
  • 23
0
votes
1 answer

jQuery Geocode - Markers don't move on smaller devices / windows

I'm using jQuery Geocode to handle mapping user input, including draggable markers with callbacks. Everything works great in a browser, full sized, but when I shrink the browser down to tablet or smartphone width, everything still works except the…
John Trichereau
  • 626
  • 9
  • 22
0
votes
1 answer

Geocode Factory with Sobipro

I installed joomla 2.5, and Geocode Factory 3 with Sobipro,I set any parameters and installed madules and pluggings but i cant see map in search page! is there any body to help me?
samira
  • 1
0
votes
1 answer

Specifiying benchmark and vintage when batch geocoding with geocoding.geo.census.gov

I have looked at the REST API documentation (which only provides one example with a value of benchmark=9) and am not clear on how to make a batch request. In particular, the rest of the documentation does not mention a benchmark of "9," so I have no…
0
votes
1 answer

R: Identifying specific duplicate entries and geocoding with an output to new column

Here's what I am trying to do (I would like an opinion whether it is possible to do it or not) I have 8000 entries with addresses (many of which are repeated because the data contains crime data) I would like to use geocode say '800 Beatty st' which…
zazu
  • 344
  • 3
  • 9
0
votes
1 answer

How to use the JavaScript API V3 Client Geocoder to geocode postal codes

I have the following code below that geocodes address from a google spreadsheet. I have research this but I can't find a good example of how to just geocode postal codes in the US. Does anyone know a good example. Thanks function…
user30832
  • 71
  • 1
  • 3
0
votes
0 answers

R - Simple City State Plot on a Map for large numbers of records currently without geoencoding every record individually?

I am fairly new to R and the multiple R mapping packages I haven't completely flushed out their capabilities yet nor necessarily discovered all of the efficient ways to do things; so I apologize if there is an obvious answer but any help is…
CRSouser
  • 658
  • 9
  • 25
0
votes
1 answer

Google reverse Geocode return null

I'm currently using this function to reverse geocode latlng from instagram pictures: function getGeoCountry($geoAddress) { $url = 'http://maps.google.com/maps/api/geocode/json?address=' . $geoAddress .'&sensor=false'; //$get =…