File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -352,8 +352,8 @@ def _wrapper(
352
352
353
353
merged_coordinates = merge (
354
354
[arg .coords for arg in args if isinstance (arg , Dataset | DataArray )],
355
- join = "outer " ,
356
- compat = "no_conflicts " ,
355
+ join = "exact " ,
356
+ compat = "override " ,
357
357
).coords
358
358
359
359
# check all dims are present
@@ -442,7 +442,9 @@ def _wrapper(
442
442
xarray_objs = tuple (arg .chunk (arg .chunksizes ) for arg in xarray_objs )
443
443
444
444
merged_coordinates = merge (
445
- [arg .coords for arg in aligned ], join = "outer" , compat = "no_conflicts"
445
+ [arg .coords for arg in aligned ],
446
+ join = "exact" ,
447
+ compat = "override" ,
446
448
).coords
447
449
448
450
_ , npargs = unzip (
@@ -478,7 +480,7 @@ def _wrapper(
478
480
coordinates = merge (
479
481
(preserved_coords , template .coords .to_dataset ()[new_coord_vars ]),
480
482
join = "outer" ,
481
- compat = "no_conflicts " ,
483
+ compat = "override " ,
482
484
).coords
483
485
output_chunks : Mapping [Hashable , tuple [int , ...]] = {
484
486
dim : input_chunks [dim ] for dim in template .dims if dim in input_chunks
Original file line number Diff line number Diff line change @@ -199,10 +199,9 @@ def _prepare_plot1d_data(
199
199
darray = concat (
200
200
[darray , darray_nan ],
201
201
dim = dim ,
202
- data_vars = "all" ,
203
- coords = "different" ,
204
- compat = "equals" ,
205
- join = "outer" ,
202
+ coords = "minimal" ,
203
+ compat = "override" ,
204
+ join = "exact" ,
206
205
)
207
206
dims_T .append (coords_to_plot [v ])
208
207
You can’t perform that action at this time.
0 commit comments