Description Usage Arguments Details Value Examples
View source: R/climacell_celestial.R
This function will make a call to the Climacell API and retrieve sunrise, sunset times and moon phase variables.
1 2 3 4 5 6 7 8 | climacell_celestial(
api_key,
lat,
long,
timestep = "1d",
start_time = NULL,
end_time = NULL
)
|
api_key |
character string representing the private API key. Provided by user or loaded automatically from environment variable (environment variable must be called "CLIMACELL_API"). |
lat |
a numeric value (or a string that can be coerced to numeric) representing the latitude of the location. |
long |
a numeric value (or a string that can be coerced to numeric) representing the longitude of the location. |
timestep |
a 'step' value for the time. For the |
start_time |
the start time of the query. This input must be a character string that can be parsed into a data/time or a date/time value. If the input does not contain a timezone, the value will be assumed to be in UTC. It is recommended that the |
end_time |
the end time of the query. This input must be a character string that can be parsed into a data/time or a date/time value. If the input does not contain a timezone, the value will be assumed to be in UTC. For this function, the end_time cannot be greater than 15 days from the current date/time. |
climacell_celestial
returns a tibble that consists of sunrise/sunset times along with the moon phase (code & description).
a tibble
1 2 3 4 5 6 7 8 9 10 | ## Not run:
climacell_celestial(
api_key = Sys.getenv('CLIMACELL_API'),
lat = 0,
long = 0,
timestep = '1d',
start_time = lubridate::now(),
end_time = lubridate::now() + lubridate::days(5))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.