home / github

Menu
  • GraphQL API
  • Search all tables

issue_comments

Table actions
  • GraphQL API for issue_comments

1 row where author_association = "NONE" and issue = 1222066968 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: created_at (date), updated_at (date)

user 1

  • jesieleo 1

issue 1

  • processing errror when using xr.dataset[:,::-10,::10] · 1 ✖

author_association 1

  • NONE · 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

isobaricInhPa是一个标量坐标,所以不适合我。如果我删除它,我无法重现结果,我两次都得到正确的结果。sel

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')

correct

a = data3.sel(time='1979-1',isobaricInhPa=200).z[:, ::10,::10]

The latitude should be 73 but 72

wrong (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

test0001.zip

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)? data3.sel(time='1979-1',isobaricInhPa=200).z[:, ::10,::10][: ,::-1,:] #works wrong data3.sel(time='1979-1',isobaricInhPa=200).z[:, ::10,::10][: ,::1,:] #works right I think this is a bug.

{
    "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

CSV options:

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]);
Powered by Datasette · Queries took 11.996ms · About: xarray-datasette