geokit 1.2.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,478 @@
1
+ #require 'forwardable'
2
+
3
+ module Geokit
4
+ # Contains class and instance methods providing distance calcuation services. This
5
+ # module is meant to be mixed into classes containing lat and lng attributes where
6
+ # distance calculation is desired.
7
+ #
8
+ # At present, two forms of distance calculations are provided:
9
+ #
10
+ # * Pythagorean Theory (flat Earth) - which assumes the world is flat and loses accuracy over long distances.
11
+ # * Haversine (sphere) - which is fairly accurate, but at a performance cost.
12
+ #
13
+ # Distance units supported are :miles, :kms, and :nms.
14
+ module Mappable
15
+ PI_DIV_RAD = 0.0174
16
+ KMS_PER_MILE = 1.609
17
+ NMS_PER_MILE = 0.868976242
18
+ EARTH_RADIUS_IN_MILES = 3963.19
19
+ EARTH_RADIUS_IN_KMS = EARTH_RADIUS_IN_MILES * KMS_PER_MILE
20
+ EARTH_RADIUS_IN_NMS = EARTH_RADIUS_IN_MILES * NMS_PER_MILE
21
+ MILES_PER_LATITUDE_DEGREE = 69.1
22
+ KMS_PER_LATITUDE_DEGREE = MILES_PER_LATITUDE_DEGREE * KMS_PER_MILE
23
+ NMS_PER_LATITUDE_DEGREE = MILES_PER_LATITUDE_DEGREE * NMS_PER_MILE
24
+ LATITUDE_DEGREES = EARTH_RADIUS_IN_MILES / MILES_PER_LATITUDE_DEGREE
25
+
26
+ # Mix below class methods into the includer.
27
+ def self.included(receiver) # :nodoc:
28
+ receiver.extend ClassMethods
29
+ end
30
+
31
+ module ClassMethods #:nodoc:
32
+ # Returns the distance between two points. The from and to parameters are
33
+ # required to have lat and lng attributes. Valid options are:
34
+ # :units - valid values are :miles, :kms, :nms (Geokit::default_units is the default)
35
+ # :formula - valid values are :flat or :sphere (Geokit::default_formula is the default)
36
+ def distance_between(from, to, options={})
37
+ from=Geokit::LatLng.normalize(from)
38
+ to=Geokit::LatLng.normalize(to)
39
+ return 0.0 if from == to # fixes a "zero-distance" bug
40
+ units = options[:units] || Geokit::default_units
41
+ formula = options[:formula] || Geokit::default_formula
42
+ case formula
43
+ when :sphere
44
+ begin
45
+ units_sphere_multiplier(units) *
46
+ Math.acos( Math.sin(deg2rad(from.lat)) * Math.sin(deg2rad(to.lat)) +
47
+ Math.cos(deg2rad(from.lat)) * Math.cos(deg2rad(to.lat)) *
48
+ Math.cos(deg2rad(to.lng) - deg2rad(from.lng)))
49
+ rescue Errno::EDOM
50
+ 0.0
51
+ end
52
+ when :flat
53
+ Math.sqrt((units_per_latitude_degree(units)*(from.lat-to.lat))**2 +
54
+ (units_per_longitude_degree(from.lat, units)*(from.lng-to.lng))**2)
55
+ end
56
+ end
57
+
58
+ # Returns heading in degrees (0 is north, 90 is east, 180 is south, etc)
59
+ # from the first point to the second point. Typicaly, the instance methods will be used
60
+ # instead of this method.
61
+ def heading_between(from,to)
62
+ from=Geokit::LatLng.normalize(from)
63
+ to=Geokit::LatLng.normalize(to)
64
+
65
+ d_lng=deg2rad(to.lng-from.lng)
66
+ from_lat=deg2rad(from.lat)
67
+ to_lat=deg2rad(to.lat)
68
+ y=Math.sin(d_lng) * Math.cos(to_lat)
69
+ x=Math.cos(from_lat)*Math.sin(to_lat)-Math.sin(from_lat)*Math.cos(to_lat)*Math.cos(d_lng)
70
+ heading=to_heading(Math.atan2(y,x))
71
+ end
72
+
73
+ # Given a start point, distance, and heading (in degrees), provides
74
+ # an endpoint. Returns a LatLng instance. Typically, the instance method
75
+ # will be used instead of this method.
76
+ def endpoint(start,heading, distance, options={})
77
+ units = options[:units] || Geokit::default_units
78
+ radius = case units
79
+ when :kms; EARTH_RADIUS_IN_KMS
80
+ when :nms; EARTH_RADIUS_IN_NMS
81
+ else EARTH_RADIUS_IN_MILES
82
+ end
83
+ start=Geokit::LatLng.normalize(start)
84
+ lat=deg2rad(start.lat)
85
+ lng=deg2rad(start.lng)
86
+ heading=deg2rad(heading)
87
+ distance=distance.to_f
88
+
89
+ end_lat=Math.asin(Math.sin(lat)*Math.cos(distance/radius) +
90
+ Math.cos(lat)*Math.sin(distance/radius)*Math.cos(heading))
91
+
92
+ end_lng=lng+Math.atan2(Math.sin(heading)*Math.sin(distance/radius)*Math.cos(lat),
93
+ Math.cos(distance/radius)-Math.sin(lat)*Math.sin(end_lat))
94
+
95
+ LatLng.new(rad2deg(end_lat),rad2deg(end_lng))
96
+ end
97
+
98
+ # Returns the midpoint, given two points. Returns a LatLng.
99
+ # Typically, the instance method will be used instead of this method.
100
+ # Valid option:
101
+ # :units - valid values are :miles, :kms, or :nms (:miles is the default)
102
+ def midpoint_between(from,to,options={})
103
+ from=Geokit::LatLng.normalize(from)
104
+
105
+ units = options[:units] || Geokit::default_units
106
+
107
+ heading=from.heading_to(to)
108
+ distance=from.distance_to(to,options)
109
+ midpoint=from.endpoint(heading,distance/2,options)
110
+ end
111
+
112
+ # Geocodes a location using the multi geocoder.
113
+ def geocode(location)
114
+ res = Geocoders::MultiGeocoder.geocode(location)
115
+ return res if res.success
116
+ raise Geokit::Geocoders::GeocodeError
117
+ end
118
+
119
+ protected
120
+
121
+ def deg2rad(degrees)
122
+ degrees.to_f / 180.0 * Math::PI
123
+ end
124
+
125
+ def rad2deg(rad)
126
+ rad.to_f * 180.0 / Math::PI
127
+ end
128
+
129
+ def to_heading(rad)
130
+ (rad2deg(rad)+360)%360
131
+ end
132
+
133
+ # Returns the multiplier used to obtain the correct distance units.
134
+ def units_sphere_multiplier(units)
135
+ case units
136
+ when :kms; EARTH_RADIUS_IN_KMS
137
+ when :nms; EARTH_RADIUS_IN_NMS
138
+ else EARTH_RADIUS_IN_MILES
139
+ end
140
+ end
141
+
142
+ # Returns the number of units per latitude degree.
143
+ def units_per_latitude_degree(units)
144
+ case units
145
+ when :kms; KMS_PER_LATITUDE_DEGREE
146
+ when :nms; NMS_PER_LATITUDE_DEGREE
147
+ else MILES_PER_LATITUDE_DEGREE
148
+ end
149
+ end
150
+
151
+ # Returns the number units per longitude degree.
152
+ def units_per_longitude_degree(lat, units)
153
+ miles_per_longitude_degree = (LATITUDE_DEGREES * Math.cos(lat * PI_DIV_RAD)).abs
154
+ case units
155
+ when :kms; miles_per_longitude_degree * KMS_PER_MILE
156
+ when :nms; miles_per_longitude_degree * NMS_PER_MILE
157
+ else miles_per_longitude_degree
158
+ end
159
+ end
160
+ end
161
+
162
+ # -----------------------------------------------------------------------------------------------
163
+ # Instance methods below here
164
+ # -----------------------------------------------------------------------------------------------
165
+
166
+ # Extracts a LatLng instance. Use with models that are acts_as_mappable
167
+ def to_lat_lng
168
+ return self if instance_of?(Geokit::LatLng) || instance_of?(Geokit::GeoLoc)
169
+ return LatLng.new(send(self.class.lat_column_name),send(self.class.lng_column_name)) if self.class.respond_to?(:acts_as_mappable)
170
+ nil
171
+ end
172
+
173
+ # Returns the distance from another point. The other point parameter is
174
+ # required to have lat and lng attributes. Valid options are:
175
+ # :units - valid values are :miles, :kms, :or :nms (:miles is the default)
176
+ # :formula - valid values are :flat or :sphere (:sphere is the default)
177
+ def distance_to(other, options={})
178
+ self.class.distance_between(self, other, options)
179
+ end
180
+ alias distance_from distance_to
181
+
182
+ # Returns heading in degrees (0 is north, 90 is east, 180 is south, etc)
183
+ # to the given point. The given point can be a LatLng or a string to be Geocoded
184
+ def heading_to(other)
185
+ self.class.heading_between(self,other)
186
+ end
187
+
188
+ # Returns heading in degrees (0 is north, 90 is east, 180 is south, etc)
189
+ # FROM the given point. The given point can be a LatLng or a string to be Geocoded
190
+ def heading_from(other)
191
+ self.class.heading_between(other,self)
192
+ end
193
+
194
+ # Returns the endpoint, given a heading (in degrees) and distance.
195
+ # Valid option:
196
+ # :units - valid values are :miles, :kms, or :nms (:miles is the default)
197
+ def endpoint(heading,distance,options={})
198
+ self.class.endpoint(self,heading,distance,options)
199
+ end
200
+
201
+ # Returns the midpoint, given another point on the map.
202
+ # Valid option:
203
+ # :units - valid values are :miles, :kms, or :nms (:miles is the default)
204
+ def midpoint_to(other, options={})
205
+ self.class.midpoint_between(self,other,options)
206
+ end
207
+
208
+ end
209
+
210
+ class LatLng
211
+ include Mappable
212
+
213
+ attr_accessor :lat, :lng
214
+
215
+ # Accepts latitude and longitude or instantiates an empty instance
216
+ # if lat and lng are not provided. Converted to floats if provided
217
+ def initialize(lat=nil, lng=nil)
218
+ lat = lat.to_f if lat && !lat.is_a?(Numeric)
219
+ lng = lng.to_f if lng && !lng.is_a?(Numeric)
220
+ @lat = lat
221
+ @lng = lng
222
+ end
223
+
224
+ # Latitude attribute setter; stored as a float.
225
+ def lat=(lat)
226
+ @lat = lat.to_f if lat
227
+ end
228
+
229
+ # Longitude attribute setter; stored as a float;
230
+ def lng=(lng)
231
+ @lng=lng.to_f if lng
232
+ end
233
+
234
+ # Returns the lat and lng attributes as a comma-separated string.
235
+ def ll
236
+ "#{lat},#{lng}"
237
+ end
238
+
239
+ #returns a string with comma-separated lat,lng values
240
+ def to_s
241
+ ll
242
+ end
243
+
244
+ #returns a two-element array
245
+ def to_a
246
+ [lat,lng]
247
+ end
248
+ # Returns true if the candidate object is logically equal. Logical equivalence
249
+ # is true if the lat and lng attributes are the same for both objects.
250
+ def ==(other)
251
+ other.is_a?(LatLng) ? self.lat == other.lat && self.lng == other.lng : false
252
+ end
253
+
254
+ # A *class* method to take anything which can be inferred as a point and generate
255
+ # a LatLng from it. You should use this anything you're not sure what the input is,
256
+ # and want to deal with it as a LatLng if at all possible. Can take:
257
+ # 1) two arguments (lat,lng)
258
+ # 2) a string in the format "37.1234,-129.1234" or "37.1234 -129.1234"
259
+ # 3) a string which can be geocoded on the fly
260
+ # 4) an array in the format [37.1234,-129.1234]
261
+ # 5) a LatLng or GeoLoc (which is just passed through as-is)
262
+ # 6) anything which acts_as_mappable -- a LatLng will be extracted from it
263
+ def self.normalize(thing,other=nil)
264
+ # if an 'other' thing is supplied, normalize the input by creating an array of two elements
265
+ thing=[thing,other] if other
266
+
267
+ if thing.is_a?(String)
268
+ thing.strip!
269
+ if match=thing.match(/(\-?\d+\.?\d*)[, ] ?(\-?\d+\.?\d*)$/)
270
+ return Geokit::LatLng.new(match[1],match[2])
271
+ else
272
+ res = Geokit::Geocoders::MultiGeocoder.geocode(thing)
273
+ return res if res.success
274
+ raise Geokit::Geocoders::GeocodeError
275
+ end
276
+ elsif thing.is_a?(Array) && thing.size==2
277
+ return Geokit::LatLng.new(thing[0],thing[1])
278
+ elsif thing.is_a?(LatLng) # will also be true for GeoLocs
279
+ return thing
280
+ elsif thing.class.respond_to?(:acts_as_mappable) && thing.class.respond_to?(:distance_column_name)
281
+ return thing.to_lat_lng
282
+ end
283
+
284
+ raise ArgumentError.new("#{thing} (#{thing.class}) cannot be normalized to a LatLng. We tried interpreting it as an array, string, Mappable, etc., but no dice.")
285
+ end
286
+
287
+ end
288
+
289
+ # This class encapsulates the result of a geocoding call.
290
+ # It's primary purpose is to homogenize the results of multiple
291
+ # geocoding providers. It also provides some additional functionality, such as
292
+ # the "full address" method for geocoders that do not provide a
293
+ # full address in their results (for example, Yahoo), and the "is_us" method.
294
+ #
295
+ # Some geocoders can return multple results. Geoloc can capture multiple results through
296
+ # its "all" method.
297
+ #
298
+ # For the geocoder setting the results, it would look something like this:
299
+ # geo=GeoLoc.new(first_result)
300
+ # geo.all.push(second_result)
301
+ # geo.all.push(third_result)
302
+ #
303
+ # Then, for the user of the result:
304
+ #
305
+ # puts geo.full_address # just like usual
306
+ # puts geo.all.size => 3 # there's three results total
307
+ # puts geo.all.first # all is just an array or additional geolocs,
308
+ # so do what you want with it
309
+ class GeoLoc < LatLng
310
+
311
+ # Location attributes. Full address is a concatenation of all values. For example:
312
+ # 100 Spear St, San Francisco, CA, 94101, US
313
+ attr_accessor :street_address, :city, :state, :zip, :country_code, :full_address, :all
314
+ # Attributes set upon return from geocoding. Success will be true for successful
315
+ # geocode lookups. The provider will be set to the name of the providing geocoder.
316
+ # Finally, precision is an indicator of the accuracy of the geocoding.
317
+ attr_accessor :success, :provider, :precision
318
+ # Street number and street name are extracted from the street address attribute.
319
+ attr_reader :street_number, :street_name
320
+
321
+ # Constructor expects a hash of symbols to correspond with attributes.
322
+ def initialize(h={})
323
+ @all = [self]
324
+
325
+ @street_address=h[:street_address]
326
+ @city=h[:city]
327
+ @state=h[:state]
328
+ @zip=h[:zip]
329
+ @country_code=h[:country_code]
330
+ @success=false
331
+ @precision='unknown'
332
+ @full_address=nil
333
+ super(h[:lat],h[:lng])
334
+ end
335
+
336
+ # Returns true if geocoded to the United States.
337
+ def is_us?
338
+ country_code == 'US'
339
+ end
340
+
341
+ # full_address is provided by google but not by yahoo. It is intended that the google
342
+ # geocoding method will provide the full address, whereas for yahoo it will be derived
343
+ # from the parts of the address we do have.
344
+ def full_address
345
+ @full_address ? @full_address : to_geocodeable_s
346
+ end
347
+
348
+ # Extracts the street number from the street address if the street address
349
+ # has a value.
350
+ def street_number
351
+ street_address[/(\d*)/] if street_address
352
+ end
353
+
354
+ # Returns the street name portion of the street address.
355
+ def street_name
356
+ street_address[street_number.length, street_address.length].strip if street_address
357
+ end
358
+
359
+ # gives you all the important fields as key-value pairs
360
+ def hash
361
+ res={}
362
+ [:success,:lat,:lng,:country_code,:city,:state,:zip,:street_address,:provider,:full_address,:is_us?,:ll,:precision].each { |s| res[s] = self.send(s.to_s) }
363
+ res
364
+ end
365
+ alias to_hash hash
366
+
367
+ # Sets the city after capitalizing each word within the city name.
368
+ def city=(city)
369
+ @city = Geokit::Inflector::titleize(city) if city
370
+ end
371
+
372
+ # Sets the street address after capitalizing each word within the street address.
373
+ def street_address=(address)
374
+ @street_address = Geokit::Inflector::titleize(address) if address
375
+ end
376
+
377
+ # Returns a comma-delimited string consisting of the street address, city, state,
378
+ # zip, and country code. Only includes those attributes that are non-blank.
379
+ def to_geocodeable_s
380
+ a=[street_address, city, state, zip, country_code].compact
381
+ a.delete_if { |e| !e || e == '' }
382
+ a.join(', ')
383
+ end
384
+
385
+ def to_yaml_properties
386
+ (instance_variables - ['@all']).sort
387
+ end
388
+
389
+ # Returns a string representation of the instance.
390
+ def to_s
391
+ "Provider: #{provider}\n Street: #{street_address}\nCity: #{city}\nState: #{state}\nZip: #{zip}\nLatitude: #{lat}\nLongitude: #{lng}\nCountry: #{country_code}\nSuccess: #{success}"
392
+ end
393
+ end
394
+
395
+ # Bounds represents a rectangular bounds, defined by the SW and NE corners
396
+ class Bounds
397
+ # sw and ne are LatLng objects
398
+ attr_accessor :sw, :ne
399
+
400
+ # provide sw and ne to instantiate a new Bounds instance
401
+ def initialize(sw,ne)
402
+ raise ArgumentError if !(sw.is_a?(Geokit::LatLng) && ne.is_a?(Geokit::LatLng))
403
+ @sw,@ne=sw,ne
404
+ end
405
+
406
+ #returns the a single point which is the center of the rectangular bounds
407
+ def center
408
+ @sw.midpoint_to(@ne)
409
+ end
410
+
411
+ # a simple string representation:sw,ne
412
+ def to_s
413
+ "#{@sw.to_s},#{@ne.to_s}"
414
+ end
415
+
416
+ # a two-element array of two-element arrays: sw,ne
417
+ def to_a
418
+ [@sw.to_a, @ne.to_a]
419
+ end
420
+
421
+ # Returns true if the bounds contain the passed point.
422
+ # allows for bounds which cross the meridian
423
+ def contains?(point)
424
+ point=Geokit::LatLng.normalize(point)
425
+ res = point.lat > @sw.lat && point.lat < @ne.lat
426
+ if crosses_meridian?
427
+ res &= point.lng < @ne.lng || point.lng > @sw.lng
428
+ else
429
+ res &= point.lng < @ne.lng && point.lng > @sw.lng
430
+ end
431
+ res
432
+ end
433
+
434
+ # returns true if the bounds crosses the international dateline
435
+ def crosses_meridian?
436
+ @sw.lng > @ne.lng
437
+ end
438
+
439
+ # Returns true if the candidate object is logically equal. Logical equivalence
440
+ # is true if the lat and lng attributes are the same for both objects.
441
+ def ==(other)
442
+ other.is_a?(Bounds) ? self.sw == other.sw && self.ne == other.ne : false
443
+ end
444
+
445
+ class <<self
446
+
447
+ # returns an instance of bounds which completely encompases the given circle
448
+ def from_point_and_radius(point,radius,options={})
449
+ point=LatLng.normalize(point)
450
+ p0=point.endpoint(0,radius,options)
451
+ p90=point.endpoint(90,radius,options)
452
+ p180=point.endpoint(180,radius,options)
453
+ p270=point.endpoint(270,radius,options)
454
+ sw=Geokit::LatLng.new(p180.lat,p270.lng)
455
+ ne=Geokit::LatLng.new(p0.lat,p90.lng)
456
+ Geokit::Bounds.new(sw,ne)
457
+ end
458
+
459
+ # Takes two main combinations of arguments to create a bounds:
460
+ # point,point (this is the only one which takes two arguments
461
+ # [point,point]
462
+ # . . . where a point is anything LatLng#normalize can handle (which is quite a lot)
463
+ #
464
+ # NOTE: everything combination is assumed to pass points in the order sw, ne
465
+ def normalize (thing,other=nil)
466
+ # maybe this will be simple -- an actual bounds object is passed, and we can all go home
467
+ return thing if thing.is_a? Bounds
468
+
469
+ # no? OK, if there's no "other," the thing better be a two-element array
470
+ thing,other=thing if !other && thing.is_a?(Array) && thing.size==2
471
+
472
+ # Now that we're set with a thing and another thing, let LatLng do the heavy lifting.
473
+ # Exceptions may be thrown
474
+ Bounds.new(Geokit::LatLng.normalize(thing),Geokit::LatLng.normalize(other))
475
+ end
476
+ end
477
+ end
478
+ end