Class: Graticule::Location

Inherits:
Object
  • Object
show all
Defined in:
lib/graticule/location.rb

Overview

A geographic location

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attrs = {}) ⇒ Location

Returns a new instance of Location.



10
11
12
13
14
15
# File 'lib/graticule/location.rb', line 10

def initialize(attrs = {})
  attrs.each do |key,value|
    instance_variable_set "@#{key}", value
  end
  self.precision ||= Precision.unknown
end

Instance Attribute Details

#countryObject

Returns the value of attribute country.



5
6
7
# File 'lib/graticule/location.rb', line 5

def country
  @country
end

#geocoderObject

Returns the value of attribute geocoder.



5
6
7
# File 'lib/graticule/location.rb', line 5

def geocoder
  @geocoder
end

#latitudeObject

Returns the value of attribute latitude.



5
6
7
# File 'lib/graticule/location.rb', line 5

def latitude
  @latitude
end

#localityObject Also known as: city

Returns the value of attribute locality.



5
6
7
# File 'lib/graticule/location.rb', line 5

def locality
  @locality
end

#longitudeObject

Returns the value of attribute longitude.



5
6
7
# File 'lib/graticule/location.rb', line 5

def longitude
  @longitude
end

#postal_codeObject Also known as: zip

Returns the value of attribute postal_code.



5
6
7
# File 'lib/graticule/location.rb', line 5

def postal_code
  @postal_code
end

#precisionObject

Returns the value of attribute precision.



5
6
7
# File 'lib/graticule/location.rb', line 5

def precision
  @precision
end

#premiseObject

Returns the value of attribute premise.



5
6
7
# File 'lib/graticule/location.rb', line 5

def premise
  @premise
end

#regionObject Also known as: state

Returns the value of attribute region.



5
6
7
# File 'lib/graticule/location.rb', line 5

def region
  @region
end

#streetObject

Returns the value of attribute street.



5
6
7
# File 'lib/graticule/location.rb', line 5

def street
  @street
end

#warningObject

Returns the value of attribute warning.



5
6
7
# File 'lib/graticule/location.rb', line 5

def warning
  @warning
end

Instance Method Details

#==(other) ⇒ Object



62
63
64
# File 'lib/graticule/location.rb', line 62

def ==(other)
  other.respond_to?(:attributes) ? attributes == other.attributes : false
end

#antipodeObject Also known as: antipodal_location

Where would I be if I dug through the center of the earth?



82
83
84
# File 'lib/graticule/location.rb', line 82

def antipode
  Location.new :latitude => -latitude, :longitude => longitude + (longitude >= 0 ? -180 : 180)
end

#attributesObject



17
18
19
20
21
22
# File 'lib/graticule/location.rb', line 17

def attributes
  [:latitude, :longitude, :street, :locality, :region, :postal_code, :country, :precision].inject({}) do |result,attr|
    result[attr] = self.send(attr) unless self.send(attr).blank?
    result
  end
end

#coordinatesObject

Returns an Array with latitude and longitude.



58
59
60
# File 'lib/graticule/location.rb', line 58

def coordinates
  [latitude, longitude]
end

#distance_to(destination, options = {}) ⇒ Object

Calculate the distance to another location. See the various Distance formulas for more information



76
77
78
79
# File 'lib/graticule/location.rb', line 76

def distance_to(destination, options = {})
  options = {:formula => :haversine, :units => :miles}.merge(options)
  "Graticule::Distance::#{options[:formula].to_s.titleize}".constantize.distance(self, destination, options[:units])
end

#eql?(other) ⇒ Boolean

Returns:

  • (Boolean)


66
67
68
# File 'lib/graticule/location.rb', line 66

def eql?(other)
    self == other
end

#hashObject



70
71
72
# File 'lib/graticule/location.rb', line 70

def hash
    attributes.to_s.hash
end

#normalized_countryObject



24
25
26
# File 'lib/graticule/location.rb', line 24

def normalized_country
  normalize_string(country)
end

#normalized_localityObject



32
33
34
# File 'lib/graticule/location.rb', line 32

def normalized_locality
  normalize_string(normalize_abbreviations(locality))
end

#normalized_premiseObject



40
41
42
# File 'lib/graticule/location.rb', line 40

def normalized_premise
  normalize_string(normalize_abbreviations(premise))
end

#normalized_regionObject



28
29
30
# File 'lib/graticule/location.rb', line 28

def normalized_region
  normalize_string(region)
end

#normalized_streetObject



36
37
38
# File 'lib/graticule/location.rb', line 36

def normalized_street
  normalize_string(normalize_abbreviations(street))
end

#postal_code_baseObject



44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/graticule/location.rb', line 44

def postal_code_base
  base = case country
  when "CA"
      postal_code.to_s[0..2]
  else
      postal_code.to_s[0..4]
  end

  base.strip!

  base
end

#to_s(options = {}) ⇒ Object



87
88
89
90
91
92
93
94
95
# File 'lib/graticule/location.rb', line 87

def to_s(options = {})
  options = {:coordinates => false, :country => true}.merge(options)
  result = ""
  result << "#{street}\n" if street
  result << [locality, [region, postal_code].compact.join(" ")].compact.join(", ")
  result << " #{country}" if options[:country] && country
  result << "\nlatitude: #{latitude}, longitude: #{longitude}" if options[:coordinates] && [latitude, longitude].any?
  result
end