-
Hi All, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @shcrela, You could first convert the coordinates to data variables: da.reset_coords(["Time", "X", "Z"]).groupby("Y").median() Then use |
Beta Was this translation helpful? Give feedback.
Hi @shcrela,
You could first convert the coordinates to data variables:
Then use
set_coords()
if you want it promoted as coordinates again.