Skip to content

Commit

Permalink
options for combine_by_coords (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronspring committed Jan 13, 2021
1 parent a6eeeed commit 954e455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intake_thredds/source.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def _open_dataset(self):
data = [ds.to_dask() for ds in tqdm(_match(cat, path), desc='Dataset(s)', ncols=79)]
else:
data = [ds.to_dask() for ds in _match(cat, path)]
self._ds = xr.combine_by_coords(data)
self._ds = xr.combine_by_coords(data, combine_attrs='override')


def _match(cat, patterns):
Expand Down

0 comments on commit 954e455

Please sign in to comment.