Module: Geocoder::Store::MongoBase
- Included in:
- MongoMapper, Mongoid
- Defined in:
- lib/geocoder/stores/mongo_base.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#geocode ⇒ Object
Look up coordinates and assign to
latitude
andlongitude
attributes (or other as specified ingeocoded_by
). -
#reverse_geocode ⇒ Object
Look up address and assign to
address
attribute (or other as specified inreverse_geocoded_by
). -
#to_coordinates ⇒ Object
Coordinates [lat,lon] of the object.
Class Method Details
.included_by_model(base) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/geocoder/stores/mongo_base.rb', line 4 def self.included_by_model(base) base.class_eval do scope :geocoded, lambda { where([:coordinates].ne => nil) } scope :not_geocoded, lambda { where([:coordinates] => nil) } scope :near, lambda{ |location, *args| coords = Geocoder::Calculations.extract_coordinates(location) # no results if no lat/lon given return where(:id => false) unless coords.is_a?(Array) radius = args.size > 0 ? args.shift : 20 = args.size > 0 ? args.shift : {} [:units] ||= [:units] # Use BSON::OrderedHash if Ruby's hashes are unordered. # Conditions must be in order required by indexes (see mongo gem). version = RUBY_VERSION.split('.').map { |i| i.to_i } empty = version[0] < 2 && version[1] < 9 ? BSON::OrderedHash.new : {} conds = empty.clone field = [:coordinates] conds[field] = empty.clone conds[field]["$nearSphere"] = coords.reverse if radius conds[field]["$maxDistance"] = \ Geocoder::Calculations.distance_to_radians(radius, [:units]) end if obj = [:exclude] conds[:_id.ne] = obj.id end where(conds) } end end |
Instance Method Details
#geocode ⇒ Object
Look up coordinates and assign to latitude
and longitude
attributes (or other as specified in geocoded_by
). Returns coordinates (array).
62 63 64 65 66 67 68 69 70 71 |
# File 'lib/geocoder/stores/mongo_base.rb', line 62 def geocode do_lookup(false) do |o,rs| if r = rs.first unless r.coordinates.nil? o.__send__ "#{self.class.[:coordinates]}=", r.coordinates.reverse end r.coordinates end end end |
#reverse_geocode ⇒ Object
Look up address and assign to address
attribute (or other as specified in reverse_geocoded_by
). Returns address (string).
77 78 79 80 81 82 83 84 85 86 |
# File 'lib/geocoder/stores/mongo_base.rb', line 77 def reverse_geocode do_lookup(true) do |o,rs| if r = rs.first unless r.address.nil? o.__send__ "#{self.class.[:fetched_address]}=", r.address end r.address end end end |
#to_coordinates ⇒ Object
Coordinates [lat,lon] of the object. This method always returns coordinates in lat,lon order, even though internally they are stored in the opposite order.
53 54 55 56 |
# File 'lib/geocoder/stores/mongo_base.rb', line 53 def to_coordinates coords = send(self.class.[:coordinates]) coords.is_a?(Array) ? coords.reverse : [] end |