Destination Weather API

Weather forecasts, reports on current weather conditions, astronomical information and alerts at a specific location based on the ‘HERE Destination Weather’ API.

Observations

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:

station distance description temperature humidity windSpeed windDirection
Rönnimoos 450 Fog. Chilly. 3 93 0.00 0
Lugano 670 Clear. Chilly. 4 75 3.71 0
Chailly 340 Fog. Chilly. 3 93 5.56 110
Kleinhüningen 430 Clear. Chilly. 2 93 12.97 140
Kehrsatz 620 Fog. Chilly. 2 100 1.85 0
Zürich (Kreis 6) / Oberstrass 820 Fog. Chilly. 2 93 5.56 0
Geneva 490 Low clouds. Chilly. 4 93 3.71 350
Vaduz 940 Fog. Chilly. 2 100 9.27 100

Print the weather observation information on an interactive leaflet map:

m <-
  mapview(observation,
          zcol = "temperature",
          cex = observation$humidity/4,
          layer.name = "Observation",
          map.types = c("Esri.WorldTopoMap"),
          homebutton = FALSE
  ) + 
  mapview(poi,
          zcol = "city",
          cex = 1,
          col.region = "black",
          legend = FALSE,
          homebutton = FALSE
  )
m

Forecast

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:

  1. Create a list containing the temperature and humidity graphs for every POI:
g <- lapply(1:nrow(forecast), function(x) {
  fc <- data.frame(
    dt = as.POSIXct(forecast$forecast[[x]]$utcTime, format = "%Y-%m-%dT%H:%M:%OS", tz = "UTC"),
    te = as.numeric(forecast$forecast[[x]]$temperature),
    rh = as.numeric(forecast$forecast[[x]]$humidity)
  )
  ggplot(fc, aes(x = dt)) + 
    geom_line(aes(y = te, colour = "Temperature")) +
    geom_line(aes(y = rh/5, colour = "Humidity")) +
    scale_y_continuous(sec.axis = sec_axis(~.*5, name = "Relative humidity [%]")) + 
    scale_colour_manual(values = c("blue", "red")) +
    labs(y = "Air temperature [°C]", x = "", colour = "") +
    ggtitle(forecast$station[x]) +
    theme_minimal() +
    theme(legend.position="bottom", panel.background = element_rect(color = NA))
})
  1. Then add list of graphs to the leaflet map using the the popup parameter:
m <-
  mapview(forecast,
          color = "black",
          col.region = "yellow",
          layer.name = "Forecast",
          zcol = "station",
          map.types = c("Esri.WorldTopoMap"),
          homebutton = FALSE,
          legend = FALSE,
          popup = leafpop::popupGraph(g)
  ) + 
  mapview(poi,
          zcol = "city",
          cex = 1,
          col.region = "black",
          legend = FALSE,
          homebutton = FALSE
  )
m

Astronomy

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’:
date sunrise sunset moonrise moonset phase
2020-11-26 7:46AM 4:41PM 3:15PM 3:27AM Waxing gibbous
2020-11-27 7:47AM 4:41PM 3:35PM 4:30AM Waxing gibbous
2020-11-28 7:49AM 4:40PM 3:55PM 5:34AM Waxing gibbous
2020-11-29 7:50AM 4:40PM 4:20PM 6:39AM Full moon
2020-11-30 7:51AM 4:39PM 4:49PM 7:45AM Full moon
2020-12-01 7:52AM 4:39PM 5:27PM 8:48AM Full moon
2020-12-02 7:54AM 4:38PM 6:12PM 9:49AM Waning gibbous
2020-12-03 7:55AM 4:38PM 7:07PM 10:43AM Waning gibbous

Alerts

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 is a data.table, which contains the current weather alerts. If no alerts are recorded near a POI the attribute "alerts" is NULL.

API Reference