issue_comments: 1326823221
This data as json
html_url | issue_url | id | node_id | user | created_at | updated_at | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
https://github.com/pydata/xarray/issues/7294#issuecomment-1326823221 | https://api.github.com/repos/pydata/xarray/issues/7294 | 1326823221 | IC_kwDOAMm_X85PFbc1 | 14808389 | 2022-11-24T20:39:03Z | 2022-11-24T20:40:32Z | MEMBER |
In [2]: ds.Tair.transpose("x", "y", ..., transpose_coords=False) Out[2]: <xarray.DataArray 'Tair' (x: 275, y: 205, time: 36)> [2029500 values with dtype=float64] Coordinates: * time (time) object 1980-09-16 12:00:00 ... 1983-08-17 00:00:00 xc (y, x) float64 ... yc (y, x) float64 ... Dimensions without coordinates: x, y In [3]: ds.Tair.transpose("x", "y", ..., transpose_coords=True)
Out[3]:
<xarray.DataArray 'Tair' (x: 275, y: 205, time: 36)>
[2029500 values with dtype=float64]
Coordinates:
* time (time) object 1980-09-16 12:00:00 ... 1983-08-17 00:00:00
xc (x, y) float64 ...
yc (x, y) float64 ...
Dimensions without coordinates: x, y
As such, I'm -0.5 on changing the order in which the coordinates are stored, since the only time that order is used is the |
{ "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
1452123685 |