Read NOAA ISD/ISH local file
Usage
isd_read(
path,
additional = TRUE,
parallel = FALSE,
cores = getOption("cl.cores", 2),
progress = FALSE
)
Arguments
- path
(character) path to the file. required.
- additional
(logical) include additional and remarks data sections in output. Default:
TRUE
. Passed on toisdparser::isd_parse()
- parallel
(logical) do processing in parallel. Default:
FALSE
- cores
(integer) number of cores to use: Default: 2. We look in your option "cl.cores", but use default value if not found.
- progress
(logical) print progress - ignored if
parallel=TRUE
. The default isFALSE
because printing progress adds a small bit of time, so if processing time is important, then keep asFALSE
See also
isd()
, isd_stations()
, isd_stations_search()
Other isd:
isd_stations_search()
,
isd_stations()
,
isd()
Examples
if (FALSE) { # \dontrun{
file <- system.file("examples", "011490-99999-1986.gz", package = "rnoaa")
isd_read(file)
isd_read(file, additional = FALSE)
} # }