stop_message <- "Not supported anymore, removed from owm api!"
#' Find stations by geo point.
#'
#' Get weather data from a number of stations
#' around given geo point.
#'
#' @inheritParams find_cities_by_geo_point
## @param lat latitude of geo point
## @param lon longitude of geo point
#' @param cnt number of stations
# @param ... see owm api documentation
#'
#' @return data frame
#' @export
#'
#' @examples \dontrun{
#' # get weather data from 7 stations
#' find_stations_by_geo_point(lat = 51.31667, lon = 9.5, cnt = 7)
#' }
find_stations_by_geo_point <- function(lat, lon, cnt = 10, ...) {
stop(stop_message)
get <- owmr_wrap_get("station/find")
get(lat = lat, lon = lon, cnt = cnt, ...) %>% owmr_parse()
}
#' Get current weather data from given station.
#'
#' @param station_id station id
#' @param ... see owm api documentation
#'
#' @return list
#' @export
#'
# TODO: document it, example id: 4926
get_current_from_station <- function(station_id, ...) {
stop(stop_message)
get <- owmr_wrap_get("station")
get(station_id, ...) %>% owmr_parse()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.