knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

# Use 'badger' to place badges
library(badger)
# Data sources
ERA5 <- data.frame(Dataset = "ERA5-Land Hourly",
                   Source = "ECMWF",
                   Link = "<a href = 'https://cds.climate.copernicus.eu/cdsapp#!/dataset/10.24381/cds.e2161bac?tab=overview' target='_blank' rel='noopener noreferrer'>ERA5-Land</a>",
                   Citation = "DOI: <a href = 'https://doi.org/10.24381/cds.e2161bac' target='_blank' rel='noopener noreferrer'>10.24381/cds.e2161bac</a>")

SNODAS <- data.frame(Dataset = "SNODAS",
                     Source = "NOAA",
                     Link = "<a href = 'https://nsidc.org/data/g02158' target='_blank' rel='noopener noreferrer'>NSIDC</a>",
                     Citation = "DOI: <a href = 'https://doi.org/10.7265/N5TB14TC' target='_blank' rel='noopener noreferrer'>10.7265/N5TB14TC</a>")

Daymet <- data.frame(Dataset = "Daymet v4",
                     Source = "NASA",
                     Link = "<a href = 'https://daac.ornl.gov/DAYMET/guides/Daymet_Daily_V4.html' target='_blank' rel='noopener noreferrer'>ORNL DAAC</a>",
                     Citation = "<a href = 'https://daymet.ornl.gov/files/Thornton_Daymet_V4_submitted_2021-01-20.pdf' target='_blank' rel='noopener noreferrer'>Thornton et al. 2020</a>")

# Combine
data_sources <- rbind(ERA5, SNODAS, Daymet)

# Sort
data_sources <- data_sources[order(data_sources$Dataset), ]

snowdl

r badge_license("GPL-3") r badge_custom("repo status", "WIP", "yellow", "https://www.repostatus.org/#wip") r badge_devel("bsmity13/snowdl", "blue") R-CMD-check

The goal of snowdl is to make it easy to download snow data (e.g., snow depth, snow density, snow-water equivalent) from various sources (see below).

Installation

Install the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("bsmity13/snowdl")

This package is not yet operational. Check back soon for progress!

Available data sources

Sorted alphabetically by dataset name

r knitr::kable(data_sources, row.names = FALSE, escape = TRUE)

Important Notes

Package Status/To-dos



bsmity13/snowdl documentation built on Feb. 24, 2024, 9:03 p.m.