get_hurdat: Get HURDAT and parse to dataframe

Description Usage Arguments Details See Also Examples

View source: R/hurdat.R

Description

Retrieve Raw HURDAT files for Atlantic (AL), northeast and central Pacific (EP) basins (northwestern hemisphere)

Usage

1
get_hurdat(basin = c("AL", "EP"))

Arguments

basin

AL or EP. Default is both.

Details

Raw text files should be found at https://www.nhc.noaa.gov/data/hurdat/ as of this writing. The codebooks are listed below.

See Also

Atlantic codebook: https://www.nhc.noaa.gov/data/hurdat/hurdat2-format-atlantic.pdf

NE/NC Pacific codebook: https://www.nhc.noaa.gov/data/hurdat/hurdat2-format-atlantic.pdf

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Not run: 
# Get Atlantic storms
al <- get_hurdat(basin = "AL")

# Get northeast and north-central Pacific storms.
ep <- get_hurdat(basin = "EP")

# Get all storms
df <- get_hurdat()

## End(Not run)

HURDAT documentation built on Jan. 13, 2021, 5 a.m.