Function: icalendar-geo-property-p

icalendar-geo-property-p is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-geo-property-p NODE)

Documentation

Return non-nil if NODE represents a GEO property.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-property ical:geo "GEO"
  "Global position of a component as a pair LATITUDE;LONGITUDE.

Both values are floats representing a number of degrees.  The
latitude value is north of the equator if positive, and south of
the equator if negative.  The longitude value is east of the prime
meridian if positive, and west of it if negative."
  ical:geo-coordinates
  :child-spec (:zero-or-more (ical:otherparam))
  :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.8.1.6")