Methods

Vpim::Icalendar::Property::Location

Public Instance Methods

geo() click to toggle source

Array of Float, +[ latitude, longitude]+.

North of the equator is positive latitude, east of the meridian is positive longitude.

See RFC2445 for more info... there are lots of special cases.

# File lib/vpim/property/location.rb, line 25
def geo
  prop = @properties.detect { |f| f.name? 'GEO' }
  if prop
    prop = Vpim.decode_list(prop.value_raw, ';') do |item| item.to_f end
  end
  prop
end
location() click to toggle source

Physical location information relevant to the component, or nil if there is no LOCATION property.

# File lib/vpim/property/location.rb, line 15
def location
  proptext 'LOCATION'
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.