climate_world {clidatajp} | R Documentation |
Climate data in the world
Description
Climate data downloaded from Japan Meteorological Agency web pages. URLs of each station are listed in data(station_links). https://www.data.jma.go.jp/gmd/cpd/monitor/nrmlist/
Usage
climate_world
world_climate
Format
A data frame with 41328 (3444 stations * 12 months) rows and 12 variable:
- no
Station no
- continent
Continent. Escaped by stringi::stri_escape_unicode().
- country
Country name. Escaped by stringi::stri_escape_unicode().
- station
Station name. To avoid duplication, including country name after station name. Can split by "_". Escaped by stringi::stri_escape_unicode().
- month
Month
- temperature
Mean temperature
- precipitation
Mean precipitation
- latitude
Latitude. (degree)
- NS
North or South.
- longitude
Longitude. (degree)
- WE
West or East.
- altitude
Altitude (m)
An object of class tbl_df
(inherits from tbl
, data.frame
) with 41328 rows and 12 columns.
Examples
library(magrittr)
library(stringi)
library(dplyr)
data(world_climate)
world_climate %>%
dplyr::mutate_all(stringi::stri_unescape_unicode)
[Package clidatajp version 0.5.2 Index]