View source: R/calculate_covariates.R
calculate_geos | R Documentation |
Extract atmospheric composition values at point locations. Returns a
data.frame
object containing locs_id
, date and hour, vertical
pressure level, and atmospheric composition variable. Atmospheric
composition variable column name reflects variable and circular buffer
radius.
calculate_geos(
from,
locs,
locs_id = NULL,
radius = 0,
fun = "mean",
geom = FALSE,
...
)
from |
SpatRaster(1). Output of |
locs |
data.frame, characater to file path, SpatVector, or sf object. |
locs_id |
character(1). Column within |
radius |
integer(1). Circular buffer distance around site locations. (Default = 0). |
fun |
character(1). Function used to summarize multiple raster cells
within sites location buffer (Default = |
geom |
FALSE/"sf"/"terra".. Should the function return with geometry?
Default is |
... |
Placeholders. |
a data.frame or SpatVector object
Mitchell Manware
process_geos()
## NOTE: Example is wrapped in `\dontrun{}` as function requires a large
## amount of data which is not included in the package.
## Not run:
loc <- data.frame(id = "001", lon = -78.90, lat = 35.97)
calculate_geos(
from = geos, # derived from process_geos() example
locs = loc,
locs_id = "id",
radius = 0,
fun = "mean",
geom = FALSE
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.