I have two netCDF files. One file elevation.nc contains just the 'elevation' of an area. Other file climate.nc has ('lat', 'lon','prcp', 'temp'). I have used the following:
cdo merge elevation.nc climate.nc merged.nc
The merge.nc
file only has on single prcp
and temp
from the date that the elevation had been recorded.
How to get time varying prcp
and temp
in merged.nc similar to climate.nc but also with the static variable elevation
?