NOMADSRealTimeList {rNOMADS} | R Documentation |
Models available for download through rNOMADS
Description
Scans the NOMADS Real Time web site to generate a list of available model products. Users can refer to this list to find out more information about the available models, and rNOMADS uses the abbreviations to determine which URLs to scan and download.
Usage
NOMADSRealTimeList(url.type, abbrev = NULL)
Arguments
url.type |
Determine whether to return a URL for extracting GRIB files ( |
abbrev |
Return information about the model that this abbreviation refers to.
Defaults to |
Value
abbrevs |
An abbreviation for each model |
names |
A full name for each model |
urls |
The web address of the download page for each model |
Note
A big thanks to user hrbrmstr at Stack Overflow for helping with the NCEP web site parsing code.
Author(s)
Daniel C. Bowman danny.c.bowman@gmail.com
See Also
WebCrawler
, ParseModelPage
, NOMADSArchiveList
, GribGrab
, DODSGrab
Examples
## Not run:
#Grib filter
model.list <- NOMADSRealTimeList("grib")
#DODS interface
model.list <- NOMADSRealTimeList("dods")
## End(Not run)