storm_shp(basin = NULL, storm = NULL, year = NULL, type = "points",
path = "~/.rnoaa/storms", overwrite = TRUE)storm_shp_read(x)
storm_data(basin = NULL, storm = NULL, year = NULL,
path = "~/.rnoaa/storms", overwrite = TRUE, ...)
storm_meta(what = "storm_columns")
~/.rnoaa/storms
storm_shp
, a path to shp file to read in.GET
(optional)1970143N19091
is a storm in the North Atlantic which started on
May 23, 1970 near 19N 91E See http://www.ncdc.noaa.gov/ibtracs/index.php?name=numbering for more. The datasets included in the package storm_names
, and
storm_columns
may help in using these storm functions.## Not run: ------------------------------------
# # Metadata
# head( storm_meta() )
# head( storm_meta("storm_columns") )
# head( storm_meta("storm_names") )
#
# # Tabular data
# ## Get tabular data for basins, storms, or years
# storm_data(basin='WP')
# storm_data(storm='1970143N19091')
# storm_data(year=1940)
# storm_data(year=1941)
# storm_data(year=2010)
#
# # shp files
# ## storm_shp downloads data and gives a path back
# ## to read in, use storm_shp_read
# res <- storm_shp(basin='EP')
# storm_shp_read(res)
#
# ## Get shp file for a storm
# (res2 <- storm_shp(storm='1970143N19091'))
#
# ## Plot shp file data, we'll need sp library
# library('sp')
#
# ### for year 1940, points
# (res3 <- storm_shp(year=1940))
# res3shp <- storm_shp_read(res3)
# plot(res3shp)
#
# ### for year 1940, lines
# (res3_lines <- storm_shp(year=1940, type="lines"))
# res3_linesshp <- storm_shp_read(x=res3_lines)
# plot(res3_linesshp)
#
# ### for year 2010, points
# (res4 <- storm_shp(year=2010))
# res4shp <- storm_shp_read(res4)
# plot(res4shp)
## ---------------------------------------------
Run the code above in your browser using DataLab