powered by
Creates a SpatRaster (terra R-package) object from a variable from wrf file (or another compatible NetCDF)
wrf_rast( file = file.choose(), name = NA, map, level = 1, times, latlon = FALSE, method = "bilinear", as_polygons = FALSE, flip_h = FALSE, flip_v = FALSE, verbose = FALSE, ... )
SpatRaster object (terra package)
wrf file
variable name
(optional) file with lat-lon variables and grid information
only for 4d data, numeric, default is 1 for surface (include all times)
only for 4d data, numeric, set to select time instead of levels (include all levels)
logical (default is FALSE), set TRUE project the output to "+proj=longlat +datum=WGS84 +no_defs"
method passed to terra::projection, default is bilinear
logical, true to return a SpatVector instead of SpatRaster
horizontal flip (by rows)
vertical flip (by cols)
display additional information
extra arguments passed to ncdf4::ncvar_get
{ wrf <- paste(system.file("extdata", package = "eva3dm"), "/wrfinput_d01", sep="") r <- wrf_rast(file=wrf, name='XLAT') plot_rast(r) }
Run the code above in your browser using DataLab