issue_comments
1 row where author_association = "NONE", issue = 1222066968 and user = 90036937 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- processing errror when using xr.dataset[:,::-10,::10] · 1 ✖
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 1114492857 | https://github.com/pydata/xarray/issues/6553#issuecomment-1114492857 | https://api.github.com/repos/pydata/xarray/issues/6553 | IC_kwDOAMm_X85Cbc-5 | jesieleo 90036937 | 2022-05-02T04:42:46Z | 2022-05-02T07:16:05Z | NONE |
First of all thanks for your answer. In fact, this was originally a vector coordinate, but I chose one to send u. This time I upload a version of isobaricInhPa which is a vector coordinate, please select. The latitude should be 73 but 72 ,but,when I try to check latitude by itself, it works fine again, which makes me think it's a bug. ``` import xarray as xr data3 = xr.open_dataset('test0001.nc') correcta = data3.sel(time='1979-1',isobaricInhPa=200).z[:, ::10,::10] The latitude should be 73 but 72wrong (latitude wrong,latituede is 72)b = data3.sel(time='1979-1',isobaricInhPa=200).z[:, ::-10,::10] correct(latitude wrong,latituede is 73)b = data3.sel(time='1979-1',isobaricInhPa=200).z[:, ::-10,::10].latitude ``` latitude should be 73, but this is 72, and the coordinates do not correspond to the data It seem that when use sel() , [: , ::-1 , :] and [: , ::10 , ::10] at the same time will cause the second coord will wrong like this. Why just when use sel and[: , ::-10 , ::10] ,it will goes wrong( the coordinates DO NOT correspond to the data) ,
but use sel and[: , ::10 , ::10] it goes right (the coordinates DO correspond to the data)?
|
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
processing errror when using xr.dataset[:,::-10,::10] 1222066968 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issue_comments] (
[html_url] TEXT,
[issue_url] TEXT,
[id] INTEGER PRIMARY KEY,
[node_id] TEXT,
[user] INTEGER REFERENCES [users]([id]),
[created_at] TEXT,
[updated_at] TEXT,
[author_association] TEXT,
[body] TEXT,
[reactions] TEXT,
[performed_via_github_app] TEXT,
[issue] INTEGER REFERENCES [issues]([id])
);
CREATE INDEX [idx_issue_comments_issue]
ON [issue_comments] ([issue]);
CREATE INDEX [idx_issue_comments_user]
ON [issue_comments] ([user]);
user 1