Variable: calendar-latitude
calendar-latitude is a customizable variable defined in solar.el.gz.
Value
nil
Documentation
Latitude of calendar-location-name in degrees.
The value can be either a decimal fraction (one place of accuracy is sufficient), + north, - south, such as 40.7 for New York City, or the value can be a vector [degrees minutes north/south] such as [40 50 north] for New York City.
This variable should be set in site-start.el.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/solar.el.gz
(defcustom calendar-latitude nil
"Latitude of `calendar-location-name' in degrees.
The value can be either a decimal fraction (one place of accuracy is
sufficient), + north, - south, such as 40.7 for New York City, or the value
can be a vector [degrees minutes north/south] such as [40 50 north] for New
York City.
This variable should be set in `site-start'.el."
:type '(choice (const nil)
(number :tag "Exact")
(vector :value [0 0 north]
(integer :tag "Degrees")
(integer :tag "Minutes")
(choice :tag "Position"
(const north)
(const south))))
:group 'calendar)