Geocoder (Ruby)
Geocoder (Ruby) is a geocoding library for Ruby. Geocoding helps to enhance webpages by presenting location relevant information to the user. When used with Rails, Geocoder adds geocoding functionality such as finding coordinates with street addresses or vice versa in addition to distance calculations for ActiveRecord objects.[1] Since the functionality does not rely on proprietary database functions, finding different geocoded objects in an area works out-of-the-box for databases like MySQL, PostgreSQL and SQLite.[1] CompatibilityGeocoder has been fully tested with Ruby 1.8.7, 1.9.2, and JRuby 1.5.3.[1] Geocoder is compatible with Rails 3, but there is only limited functionality with Rails 2.[1] InstallationThe Prerequisites to installing Geocoder are Ruby and RubyGems. Geocoder gem can be installed with the following command: gem install geocoder Or, if you're using Bundler for Rails, you may add this to your Gemfile:[1] gem 'geocoder' and run at the command prompt:[2] bundle install It can be used as a plugin with rails too:[1] rails plugin install git://github.com/alexreisner/geocoder.git ConfigurationIn order to use Geocoder with objects, the project must be set up as follows: Required attributesActiveRecordIn order to use Geocoding with ActiveRecord objects, they must have two additional attributes, latitude and longitude coordinates.[1] When stored in the table they should be called latitude and longitude but they may be changed as explained below. When using reverse geocoding (translating a user's location coordinates into a physical address), the model must implement a method that returns an address.[3] The address may be a single attribute; however, it can also be a method which returns a string assembled from different attributes such as city, state, and country.[1] MongoidWhen using Mongoid, the model only needs to add the address, latitude and longitudes as fields. The model must also include Geocoder::Model::Mongoid before making any calls to the geocoded_by: method. [1] Model behaviorIn the rails model, Geocoder must be told which method returns the object's full address:[1] geocoded_by :full_street_address # can also be an IP address
after_validation :geocode # auto-fetch coordinates
For reverse geocoding, Geocoder must know which method returns latitude and longitude coordinates. If :address option is not provided, it fetches the address automatically in the address attribute. Else, it fetches the address into the location attribute like the example given below.[1] reverse_geocoded_by :latitude, :longitude,
:address => :location
after_validation: reverse_geocode # auto-fetch address
Forward and Reverse Geocoding on the same model is possible.[1] geocoded_by :address
reverse_geocoded_by :latitude, :longitude
after_validation :geocode, :reverse_geocode
In order to use different names for latitude and longitude in the model, the following change may be done when implementing geocoded_by:[1] geocoded_by :address, :latitude => :lat, :longitude => :lon
Additionally, the address method may return any string that would be used to search Google Maps.[1] Any of the following examples will work:
ServicesBy default, Geocoder makes use of Google's geocoding API to retrieve addresses and coordinates. Currently, these address geocoding services are supported: ExamplesHere are some examples[5] to demonstrate Geocoder functionality: Hotel.near("Raleigh, North Carolina")
Finds hotels near Raleigh. @restaurant.distance_to("Empire State Building")
Finds the distance from @restaurant to the Empire State Building. Applications
References
|