add_topo {meteoland} | R Documentation |
Add topography data to meteo object
Description
Add topography data to meteo object
Usage
add_topo(meteo, topo, verbose = getOption("meteoland_verbosity", TRUE))
Arguments
meteo |
meteo object |
topo |
topo object |
verbose |
Logical indicating if the function must show messages and info.
Default value checks |
Details
When using meteo data without topography info to create an interpolator, topography must be added
Value
meteo with the topography info added
See Also
Other interpolator functions:
create_meteo_interpolator()
,
get_interpolation_params()
, read_interpolator()
,
set_interpolation_params()
, with_meteo()
,
write_interpolator()
Examples
# example meteo
data(meteoland_meteo_no_topo_example)
# example topo
data(meteoland_topo_example)
# add topo
with_meteo(meteoland_meteo_no_topo_example) |>
add_topo(meteoland_topo_example)
[Package meteoland version 2.2.1 Index]