I am downloading temperature, dew point and downward solar radiation. In the previous CDS - all these three parameters came as one .nc file. We have set up a processing streams based on that format.
With the new CDS these 3 parameters produce 2 .nc files: data_stream-oper_stepType-instant.nc for temperature and dew point and data_stream-oper_stepType-accum.nc for solar radiation.
Is there an easy way we can combine these 2 files into one .nc as in the previous CDS?
Bruno
Hi, Bruno. Are you using any programming language in particular?
If you are using Python, take a look on merge
, o concatenate
from xarray
Python module.
Hi,
If you use CDO, you can use ‘cdo merge infile1.nc infile2.nc out.nc’.