class Superfeedr::Point

Public Instance Methods

latitude() click to toggle source
# File lib/superfeedr/superfeedr.rb, line 195
def latitude
  point.last
end
longtitude() click to toggle source
# File lib/superfeedr/superfeedr.rb, line 191
def longtitude
  point.first
end
point() click to toggle source
# File lib/superfeedr/superfeedr.rb, line 199
def point
  @point ||= (raw || []) && raw.split(",")
end
raw() click to toggle source
# File lib/superfeedr/superfeedr.rb, line 187
def raw
  content_from(".")
end