Raw HURDAT

library(HURDAT)

Introduction

HURDAT is a re-analysis project of all tropical cyclones by the National Hurricane Center (NHC) Hurricane Research Division(NRD). Known as HURDAT2, the text files are typically updated in late winter, early spring to include the previous season's activity. These text files will not contain data on current tropical systems. For that I would recommend my rrricanes package (not yet available in CRAN).

As of this vignette data up to and including 2016 has been added.

There are two core datasets available: one for the Atlantic ("AL") basin (northern hemisphere) and Pacific basin (northwestern hemisphere). The Pacific basin is divided into two sections: east Pacific and central Pacific. However, both sections are included in the "EP" dataset.

str(EP)
str(AL)

Usage

The datasets are extracted from online with the function get_hurdat. The basin parameter takes either "AL" for Atlantic or "EP" for northeastern and central Pacific.

AL <- get_hurdat(basin = "AL")

get_basin does not require basin be provided; by default it will access both datasets and return a dataframe approximately 80,000 x 21.

Most of the early storms will have missing data.

The Atlantic HURDAT codebook contains the definitions of the various fields. A codebook also exists for the northeast and central Pacific.

There are significantly more storms for the Atlantic than in the eastern Pacific. There are only a few storms for the central Pacific.

Warnings

Perform QA on the dataset; particularly latitude and longitude. I have found some errors in previous datasets that do not appear to be resolved. They have been reported. Additionally, there may be some other bad data I'm not aware of.

Regardless, if you find anything that is incorrect (either on my end or in the original dataset), please submit an issue and I will review it.



Try the HURDAT package in your browser

Any scripts or data that you put into this service are public.

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