Open
Description
Is your feature request related to a problem? Please describe.
With the explicit index refactor, two Dataset or DataArray objects a
and b
may have the same variables / coordinates and attributes but different indexes.
Describe the solution you'd like
I'd suggest that a.identical(b)
by default also checks for equality betweena.xindexes
and b.xindexes
.
One drawback is when we want to check either the attributes or the indexes but not both. Should we add options like suggested in #5733 then?