Class: Graticule::Location

Inherits:
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 ||= :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

#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

#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



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

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?



45
46
47
# File 'lib/graticule/location.rb', line 45

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

#blank?Boolean

Returns:

  • (Boolean)


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

def blank?
  (attributes.keys - [:precision]).empty?
end

#coordinatesObject

Returns an Array with latitude and longitude.



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

def coordinates
  [latitude, longitude]
end

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

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



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

def distance_to(destination, options = {})
  formula = (options[:formula] || :haversine).to_s.gsub(/^(.)/) { $1.upcase }.gsub(/_(.)/) { $1.upcase }
  Distance.const_get(formula).distance(self, destination, options[:units] || :miles)
end

#to_s(options = {}) ⇒ Object



50
51
52
53
54
55
56
57
58
# File 'lib/graticule/location.rb', line 50

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