Functions for calculating the timing of solar positions, given geographical coordinates and dates. They can be also used to find the time for an arbitrary solar elevation between 90 and -90 degrees by supplying "twilight" angle(s) as argument.
day_night(
date = lubridate::now(tzone = "UTC"),
tz = lubridate::tz(date),
geocode = tibble::tibble(lon = 0, lat = 51.5, address = "Greenwich"),
twilight = "none",
unit.out = "hours"
)day_night_fast(date, tz, geocode, twilight, unit.out)
noon_time(
date = lubridate::today(),
tz = lubridate::tz(date),
geocode = tibble::tibble(lon = 0, lat = 51.5, address = "Greenwich"),
twilight = "none",
unit.out = "datetime"
)
sunrise_time(
date = lubridate::today(),
tz = lubridate::tz(date),
geocode = tibble::tibble(lon = 0, lat = 51.5, address = "Greenwich"),
twilight = "sunlight",
unit.out = "datetime"
)
sunset_time(
date = lubridate::today(),
tz = lubridate::tz(date),
geocode = tibble::tibble(lon = 0, lat = 51.5, address = "Greenwich"),
twilight = "sunlight",
unit.out = "datetime"
)
day_length(
date = lubridate::now(),
tz = "UTC",
geocode = tibble::tibble(lon = 0, lat = 51.5, address = "Greenwich"),
twilight = "sunlight",
unit.out = "hours"
)
night_length(
date = lubridate::now(),
tz = "UTC",
geocode = tibble::tibble(lon = 0, lat = 51.5, address = "Greenwich"),
twilight = "sunlight",
unit.out = "hours"
)
"vector" of POSIXct times or Date objects, any valid TZ is allowed, default is current date at Greenwich.
character vector indicating time zone to be used in output.
data frame with one or more rows and variables lon and lat as numeric values (degrees). If present, address will be copied to the output.
character string, one of "none", "rim", "refraction",
"sunlight", "civil", "nautical", "astronomical", or a numeric
vector
of length one, or two, giving solar elevation angle(s) in degrees (negative
if below the horizon).
character string, One of "datetime", "day", "hour", "minute", or "second".
A tibble with variables day, tz, twilight.rise, twilight.set, longitude, latitude, address, sunrise, noon, sunset, daylength, nightlength or the corresponding individual vectors.
noon_time
, sunrise_time
and sunset_time
return a
vector of POSIXct times
day_length
and night_length
return numeric a vector
giving the length in hours
Be aware that R's Date
class does not save time zone
metadata. This can lead to ambiguities in the current implementation
based on time instants. The argument passed to date
should be
of class POSIXct
, in other words an instant in time, from which
the correct date will be computed based on the tz
argument.
Twilight names are interpreted as follows. "none": solar elevation =
0 degrees. "rim": upper rim of solar disk at the horizon or solar elevation
= -0.53 / 2. "refraction": solar elevation = 0 degrees + refraction
correction. "sunlight": upper rim of solar disk corrected for refraction,
which is close to the value used by the online NOAA Solar Calculator.
"civil": -6 degrees, "naval": -12 degrees, and "astronomical": -18 degrees.
Unit names for output are as follows: "day", "hours", "minutes" and
"seconds" times for sunrise and sunset are returned as times-of-day since
midnight expressed in the chosen unit. "date" or "datetime" return the same
times as datetime objects with TZ set (this is much slower than "hours").
Day length and night length are returned as numeric values expressed in
hours when `"datetime"' is passed as argument to unit.out
. If
twilight is a numeric vector of length two, the element with index 1 is
used for sunrise and that with index 2 for sunset.
The primary source for the algorithm used is the book: Meeus, J. (1998) Astronomical Algorithms, 2 ed., Willmann-Bell, Richmond, VA, USA. ISBN 978-0943396613.
A different implementation is available at https://apps-nefsc.fisheries.noaa.gov/AstroCalc4R/ and in R paclage 'fishmethods'. In 'fishmethods' (= 1.11-0) there is a bug in function astrocalc4r() that affects sunrise and sunset times.
An interactive web page using the same algorithms is available at https://www.esrl.noaa.gov/gmd/grad/solcalc/. There are small differences in the returned times compared to our function that seem to be related to the estimation of atmospheric refraction (about 0.1 degrees).
Other astronomy related functions:
format.solar_time()
,
format.tod_time()
,
is.solar_time()
,
print.solar_time()
,
print.tod_time()
,
solar_time()
,
sun_angles()
# NOT RUN {
library(lubridate)
my.geocode <- data.frame(lat = 60, lon = 25)
day_night(ymd("2015-05-30"), geocode = my.geocode)
day_night(ymd("2015-05-30") + days(1:10), geocode = my.geocode, twilight = "civil")
sunrise_time(ymd("2015-05-30"), geocode = my.geocode)
noon_time(ymd("2015-05-30"), geocode = my.geocode)
sunset_time(ymd("2015-05-30"), geocode = my.geocode)
day_length(ymd("2015-05-30"), geocode = my.geocode)
day_length(ymd("2015-05-30"), geocode = my.geocode, unit.out = "day")
# }
Run the code above in your browser using DataLab