The purpose of this package is to implement the HURRECON model described in Boose et al. 2001. The model uses observations of hurricane location, maximum wind speeds, and radius at which particular wind speeds occur from the NOAA HURDAT2 database. The model provides functions to gap fill between 6-hour observations, fit wind profiles from HURDAT observations, and generate rasters of maximum wind speed and direction of maximum wind speed continuously along the hurricane track.
hurrecon
If you haven't installed packages from Github before or used the devtools
package, you'll need to first ensure that Rtools is properly installed. It is installed separately from typical packages.
PATH="${RTOOLS40_HOME}\usr\bin;${PATH}"
and restart R.Next, you should be able to get the latest released version of hurrecon
from github
install.packages('devtools')
devtools::install_github('jbcannon/hurrecon')
hurrecon
can be used both to download data from the NOAA best tracks database, and process a hurricane track. Below is example usage.
library(terra)
library(hurrecon)
data("geographic")
# Download recent data from HURDAT2 (NOAA)
path = 'hurdat_data.csv'
fetch_best_tracks_data(path)
# load data for trackID AL142018 (Hurricane Michael)
track = load_hurdat_track(path, trackID = 'AL142018')
# Quick one for example
output = hurrecon_run(track, land=land, max_rad_km = 100, res_m = 500, max_interp_dist_km = 50)
plot(land)
plot(output, add = TRUE)
plot(land)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.