-
I have datasets with variables that have the same dimension along axis 0 and 1. Something like this:
I am trying to concat multiple ds but it fails with
Example:
But if I rename the second x to x1 it works. Might this be a bug or is it intended? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
that's expected, arrays with repeated dimensions are difficult to support (see #1378) and essentially broken right now. We could improve the error message, though, either by rejecting repeated dimension names in the constructors or where this breaks something (option A would be easier but a breaking change). |
Beta Was this translation helpful? Give feedback.
that's expected, arrays with repeated dimensions are difficult to support (see #1378) and essentially broken right now. We could improve the error message, though, either by rejecting repeated dimension names in the constructors or where this breaks something (option A would be easier but a breaking change).