Home

Awesome

<!-- README.md is generated from README.Rmd. Please edit that file -->

hockeystick <img src='man/figures/logo.png' align="right" height="139" />

<!-- badges: start -->

Lifecycle:
stable R-CMD-check CRAN
status

<!-- badges: end -->

The goal of hockeystick is to make essential Global Heating datasets easily available in R to non-climate experts. hockeystick users can download the latest raw data from authoritative sources as well as view it via pre-defined ggplot2 charts. Datasets include atmospheric CO<sub>2</sub> and CH<sub>4</sub>, carbon emissions, instrumental, reconstructed, and paleo ice-core temperature records, sea levels, hurricanes, and Arctic/Antarctic sea-ice.

The choice of data was originally based on Professor Stefan Rahmstorf’s presentation on The 5 Most Important Data Sets of Climate Science. I came across this on a post on the Open Mind blog. I wrote my own post on obtaining and visualizing this data (now out of date), which is the basis for this package. Additional datasets and visualizations have been added over The name of the package stems from the well known hockeystick temperature chart.

hockeystick was highlighted on the RStudio RViews blog by Joseph Rickert as one of the “Top 40” new packages on CRAN in February 2021.

New in version 0.8.0: Daily temperature data from ClimateReanalyzer.com (see below).

New in version 0.7.0: Globally averaged methane (CH<sub>4</sub>) concentration from NOAA.

New in version 0.7.0: Cumulative emissions by country visualization.

New in version 0.6.0: Global CO<sub>2</sub> emissions by region and country from GCP.

Installation

To install the latest hockeystick release from CRAN type:

install.packages("hockeystick")

You may alternatively install the development version from https://github.com/cortinah/hockeystick with:

remotes::install_github("cortinah/hockeystick")

Downloading and viewing global heating data

New: Plot daily global temperatures since 1940 and current anomaly:

library(hockeystick)
globaldaily <- get_dailytemp()
plot_dailytemp(globaldaily)
<img src="man/figures/README-dailytemp-1.png" width="60%" />

Retrieve NOAA/ESRL Mauna Loa CO<sub>2</sub> Observatory concentration data and plot:

ml_co2 <- get_carbon()
plot_carbon(ml_co2)
<img src="man/figures/README-carbon-1.png" width="60%" />

Retrieve GCP global CO<sub>2</sub> emissions and plot:

emissions <- get_emissions()
plot_emissions(emissions)
<img src="man/figures/README-emissions-1.png" width="60%" />
plot_emissions_with_land(emissions)
<img src="man/figures/README-emissions-2.png" width="60%" />

Visualize cumulative emissions by country:

emissions_map()
<img src="man/figures/README-emissionsmap-1.png" width="60%" />

Retrieve NASA/GISS global surface temperature anomaly data and plot:

anomaly <- get_temp()
plot_temp(anomaly)
<img src="man/figures/README-temp-1.png" width="60%" />

Visualize warming using Ed Hawkins styled “warming stripes”:

warming_stripes()
<img src="man/figures/README-stripes-1.png" width="60%" />
warming_stripes(stripe_only = TRUE, col_strip = viridisLite::viridis(11))
<img src="man/figures/README-stripes2-1.png" width="53%" />

Retrieve tide gauge and satellite sea level data and plot:

gmsl <- get_sealevel()
plot_sealevel(gmsl)
<img src="man/figures/README-sl-1.png" width="60%" />

Retrieve July annual Arctic Sea Ice Index and plot:

seaice <- get_seaice()
plot_seaice(seaice)
<img src="man/figures/README-si-1.png" width="60%" />

get_seaice() arguments can be modified to download Antarctic sea ice, and allow any month.

You can also visualize sea ice by month and year:

arcticice <- get_icecurves()
plot_icecurves(arcticice)
<img src="man/figures/README-icecurves-1.png" width="60%" />

Retrieve Common Era temperature reconstruction and plot it with instrumental record:

anomaly2k <- get_temp2k()
plot_temp2k(anomaly2k)
<img src="man/figures/README-2ktemp-1.png" width="60%" />

Retrieve NOAA HURDAT2 hurricane data and plot:

hurricanes <- get_hurricanes()
plot_hurricanes(hurricanes)
<img src="man/figures/README-hurricanes-1.png" width="60%" />
plot_hurricane_nrg(hurricanes)
<img src="man/figures/README-hurricanes-2.png" width="60%" />

Retrieve NOAA/ESRL CH<sub>4</sub> Globally averaged mean data and plot:

ch4 <- get_methane()
plot_methane(ch4)
<img src="man/figures/README-methane-1.png" width="60%" />

Retrieve Vostok paleo ice core data and plot:

vostok <- get_paleo()
plot_paleo(vostok)
<img src="man/figures/README-paleo-1.png" width="60%" />

Managing the cache

By default, no climate data is cached, and all data is downloaded every time any of the get_ functions is called. To cache data for future use, use the write_cache = TRUE option, available in all of the get_ functions. To download and cache all data use hockeystick_update_all(). To view the files, date, and size of cached data use hockeystick_cache_details(). To re-download data from the source use the use_cache = FALSE argument in any of the get_ functions, for example: get_carbon(use_cache = FALSE, write_cache = TRUE). To delete all cached data use hockeystick_cache_delete_all().

Users may also cache data by default by adding options(hs_write_cache = TRUE)to their script or .Rprofile file.

All together now: climate data grid

climate_grid()
<img src="man/figures/README-grid-1.png" width="80%" />

Acknowledgments

Notes and resources