Wind Speed Probabilities
Usage
gis_wsp(datetime, res = c(5, 0.5, 0.1))
Arguments
- datetime
Datetime in %Y%m%d%H format. %m, %d and %H are optional but will return more datasets.
- res
Resolution as a numeric vector; 5, 0.5, 0.1.
Details
Probability winds affecting an area within a forecast period. Datasets contain windfields for 34kt, 50kt and 64kt. Resolution is at 5km, 0.5 degrees and 0.1 degrees. Not all resolutions may be available for all storms. Not all windfields will be available for all advisories.
Examples
if (FALSE) {
# Return datasets for January 1, 2016 with resolution of 0.5 degrees
gis_wsp("20160101", res = 0.5)
# Return wsp of 0.1 and 0.5 degree resolution, July, 2015
gis_wsp("201507", res = c(0.5, 0.1))
}