knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) library(hereR) if (requireNamespace("mapview", quietly = TRUE)) { mapview::mapviewOptions( fgb = FALSE, vector.palette = colorRampPalette( c("#0571B0", "#92C5DE", "#F7F7F7", "#F4A582", "#CA0020") ) ) } observation <- hereR:::example$weather_observation forecast <- hereR:::example$weather_forecast_hourly astronomy <- hereR:::example$weather_forecast_astronomy alerts <- hereR:::example$weather_alerts
Weather forecasts, reports on current weather conditions, astronomical information and alerts at a specific location based on the 'HERE Destination Weather' API.
In order to request information about the current weather situation points of interest (POIs) have to be provided. The POIs must be an sf
object containing geometries of type POINT
or a character
vector containing place names (e.g. cities).
These POIs are passed to the weather()
function, whereby the product
parameter is set to "observation"
:
observation <- weather( poi = poi, product = "observation" )
The return value is an sf
object, which contains the POINT
geometries of the provided POIs and the most recent record on the observed weather. The measurements are taken from the nearest weather observation stations with respect to the POIs. The distance of the stations to the provided POIs is an indicator for the reliabilty of the weather information at each POI. A table of the observed weather near the example POIs:
cols <- c( "id", "city", "distance", "daylight", "description", "sky_info", "sky_desc", "temperature", "temperature_desc", "comfort", "high_temperature", "low_temperature", "humidity", "dew_point", "precipitation_probability", "rain_fall", "wind_speed", "wind_direction", "wind_descr", "wind_descr_short", "uv_index", "uv_descr", "barometer_pressure", "barometer_trend" ) knitr::kable(as.data.frame(observation)[, cols], format = "html")
Print the weather observation information on an interactive leaflet map:
if (requireNamespace("mapview", quietly = TRUE)) { m <- mapview::mapview(observation, zcol = "temperature", cex = observation$humidity / 10, layer.name = "Observation", map.types = c("Esri.WorldTopoMap"), homebutton = FALSE ) + mapview::mapview(poi, zcol = "city", cex = 1, col.region = "black", legend = FALSE, homebutton = FALSE ) m }
An hourly forecast of the predicted weather for the following seven days can be obtained by setting the product
parameter to "forecast_hourly"
:
forecast <- weather( poi = poi, product = "forecast_hourly" )
Print the weather observation information on an interactive leaflet map with popup graphs for temperature and humidity:
if (requireNamespace("ggplot2", quietly = TRUE)) { g <- lapply(seq_len(nrow(forecast)), function(x) { df <- forecast$forecasts[[x]] ggplot2::ggplot(df, ggplot2::aes(x = time)) + ggplot2::geom_line(ggplot2::aes(y = temperature, color = "Temperature")) + ggplot2::geom_line(ggplot2::aes(y = humidity / 5, color = "Humidity")) + ggplot2::scale_y_continuous(sec.axis = ggplot2::sec_axis(~ . * 5, name = "Relative humidity [%]")) + ggplot2::scale_color_manual(values = c("blue", "red")) + ggplot2::labs(y = "Air temperature [°C]", x = "", colour = "") + ggplot2::ggtitle(forecast$city[x]) + ggplot2::theme_minimal() + ggplot2::theme(legend.position = "bottom", panel.background = ggplot2::element_rect(color = NA)) }) }
popup
parameter:if (requireNamespace(c("ggplot2", "mapview", "leafpop"), quietly = TRUE)) { m <- mapview::mapview(forecast, color = "black", col.region = "yellow", layer.name = "Weather station", zcol = "city", map.types = c("Esri.WorldTopoMap"), homebutton = FALSE, legend = FALSE, popup = leafpop::popupGraph(g) ) + mapview::mapview(poi, zcol = "city", cex = 1, col.region = "black", layer.name = "POI", legend = FALSE, homebutton = FALSE ) m }
An astronomical forecast is requested by setting the product
parameter to "forecast_astronomy"
:
astronomy <- weather( poi = poi, product = "forecast_astronomy" )
Print a table for the sun and moon times of the first example POI, where the nearest station is 'Emmenbrücke':
knitr::kable(astronomy$forecasts[[1]], format = "html")
Current weather alerts, near provided POIs, are obtain by the product alerts
:
alerts <- weather( poi = poi, product = "alerts" )
This returns an sf
object with the POIs and the attribute "alerts"
, which contains the current weather alerts.
If no alerts are recorded near a POI the attribute "alerts"
is NULL
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.