Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion xarray/core/variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,10 @@ def data(self):
def data(self, data):
data = as_compatible_data(data)
if data.shape != self.shape:
raise ValueError("replacement data must match the Variable's shape")
raise ValueError(
f"replacement data must match the Variable's shape. "
f"replacement data has shape {data.shape}; Variable has shape {self.shape}"
)
self._data = data

def load(self, **kwargs):
Expand Down