home / github

Menu
  • GraphQL API
  • Search all tables

issue_comments

Table actions
  • GraphQL API for issue_comments

2 rows where author_association = "NONE" and issue = 1206496679 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

  • javedali99 2

issue 1

  • NotImplementedError: Don't yet support nd fancy indexing · 2 ✖

author_association 1

  • NONE · 2 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
1101518164 https://github.com/pydata/xarray/issues/6490#issuecomment-1101518164 https://api.github.com/repos/pydata/xarray/issues/6490 IC_kwDOAMm_X85Bp9VU javedali99 15319503 2022-04-18T15:54:30Z 2022-04-18T15:54:30Z NONE

Thanks @dcherian @max-sixty.

I solved the issue with re-installing xarray and cfgrib individually and re-starting the kernel.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  NotImplementedError: Don't yet support nd fancy indexing 1206496679
1101061409 https://github.com/pydata/xarray/issues/6490#issuecomment-1101061409 https://api.github.com/repos/pydata/xarray/issues/6490 IC_kwDOAMm_X85BoN0h javedali99 15319503 2022-04-18T03:38:43Z 2022-04-18T03:38:43Z NONE

@javedali99 please could you supply an MVCE?

```python

download data

for yr in range(2011,2015): url = f'https://downloads.psl.noaa.gov/Datasets/cpc_us_precip/RT/precip.V1.0.{yr}.nc' savename = url.split('/')[-1] urllib.request.urlretrieve(url,savename)

combine netcdf files

ds2011_2014 = xr.open_mfdataset('precip.V1.0.*.nc', concat_dim='time', combine='nested')

coordinates

top = 40 bottom = 37 left = 258 right = 265.4

subsetting the data based on boundary coordinates

ds_sel = ds2011_2014.isel(lon=(ds2011_2014.lon >= left) & (ds2011_2014.lon <= right), lat=(ds2011_2014.lat >= bottom) & (ds2011_2014.lat <= top), ) ```

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  NotImplementedError: Don't yet support nd fancy indexing 1206496679

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 169.671ms · About: xarray-datasette