I have spatial data from Earth (ice distribution) divided in two files (one for Arctic area and one for the Antarctic area). Time is the same, data variables are the same, only the spatial dim are different (longitude and latitude).
I'm struggling to use merge or concat to group then in on a unique dataset.
I tried different combinations to merge and concrete. For instance
ds = xarray.merge(objects=arrays, join="left", compat="override")
ds = xarray.concat(arrays, dim='time')
I also tried this solution: combining spatial netcdf files using xarray python
But in the end, I'm still not able to get the result I'm looking for: a unique dataset to display it on a globe (I'm using cartopy for this).
What are the best options today to do so ?