Learn R Programming

amadeus (version 1.2.3)

process_hms: Process wildfire smoke data

Description

The process_hms() function imports and cleans raw wildfire smoke plume coverage data, returning a single SpatVector object.

Usage

process_hms(date = "2018-01-01", path = NULL, extent = NULL, ...)

Value

a SpatVector or character object

Arguments

date

character(1 or 2). Date (1) or start and end dates (2). Format YYYY-MM-DD (ex. September 1, 2023 = "2023-09-01").

path

character(1). Directory with downloaded NOAA HMS data files.

extent

numeric(4) or SpatExtent giving the extent of the output if NULL (default), the entire data is returned

...

Placeholders.

Author

Mitchell Manware

Examples

Run this code
hms <- process_hms(
  date = c("2018-12-30", "2019-01-01"),
  path = "../tests/testdata/hms/"
)

Run the code above in your browser using DataLab