Sha256: abab9a2119ae6f974ff1121b6257e985d8a344833798997d9757b8ad29c5f034
Contents?: true
Size: 1.35 KB
Versions: 4
Compression:
Stored size: 1.35 KB
Contents
# Geocoder CA geocoder implementation. Requires the Geokit::Geocoders::GEOCODER_CA variable to # contain true or false based upon whether authentication is to occur. Conforms to the # interface set by the Geocoder class. # # Returns a response like: # <?xml version="1.0" encoding="UTF-8" ?> # <geodata> # <latt>49.243086</latt> # <longt>-123.153684</longt> # </geodata> module Geokit module Geocoders class CaGeocoder < Geocoder config :key private # Template method which does the geocode lookup. def self.do_geocode(loc, _=nil) process :xml, submit_url(loc), GeoLoc.new end def self.parse_xml(xml, loc) loc.lat = xml.elements['//latt'].text loc.lng = xml.elements['//longt'].text loc.city = xml.elements['//city'].text loc.street_number = xml.elements['//stnumber'].text loc.street_address = xml.elements['//staddress'].text loc.state = xml.elements['//prov'].text loc.zip = xml.elements['//postal'].text loc.success = true loc end # Formats the request in the format acceptable by the CA geocoder. def self.submit_url(loc) args = ["locate=#{Geokit::Inflector.url_escape(loc)}"] args << "auth=#{key}" if key args << 'geoit=xml' 'http://geocoder.ca/?' + args.join('&') end end end end
Version data entries
4 entries across 4 versions & 1 rubygems