class WeatherGov::RelativeLocation

Public Instance Methods

bearing() click to toggle source
# File lib/weather_gov/relative_location.rb, line 19
def bearing
  properties.fetch("bearing")
end
city() click to toggle source
# File lib/weather_gov/relative_location.rb, line 7
def city
  properties.fetch("city")
end
distance() click to toggle source
# File lib/weather_gov/relative_location.rb, line 15
def distance
  properties.fetch("distance")
end
state() click to toggle source
# File lib/weather_gov/relative_location.rb, line 11
def state
  properties.fetch("state")
end