home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

2 rows where issue = 186169975 and user = 29051639 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

  • AyrtonB · 2 ✖

issue 1

  • Use xarray.open_dataset() for password-protected Opendap files · 2 ✖

author_association 1

  • CONTRIBUTOR 2
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
966198058 https://github.com/pydata/xarray/issues/1068#issuecomment-966198058 https://api.github.com/repos/pydata/xarray/issues/1068 IC_kwDOAMm_X845lwMq AyrtonB 29051639 2021-11-11T10:46:16Z 2021-11-11T10:46:16Z CONTRIBUTOR

Unfortunately not @zjans

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Use xarray.open_dataset() for password-protected Opendap files 186169975
864477138 https://github.com/pydata/xarray/issues/1068#issuecomment-864477138 https://api.github.com/repos/pydata/xarray/issues/1068 MDEyOklzc3VlQ29tbWVudDg2NDQ3NzEzOA== AyrtonB 29051639 2021-06-19T23:51:09Z 2021-06-19T23:51:09Z CONTRIBUTOR

I'm also getting the same error when running xr.open_dataset(store) even though I have accepted the EULA. Has anyone had success solving this?

I'm using pydap==3.2.2 and xarray==0.18.0, any help would be much appreciated!

```python import xarray as xr from pydap.client import open_url from pydap.cas.urs import setup_session

username = "my_username" password= "my_password"

url = 'https://goldsmr4.gesdisc.eosdis.nasa.gov/opendap/MERRA2/M2T1NXSLV.5.12.4/2016/06/MERRA2_400.tavg1_2d_slv_Nx.20160601.nc4'

session = setup_session(username, password, check_url=url) pydap_ds = open_url(url, session=session)

store = xr.backends.PydapDataStore(pydap_ds) ds = xr.open_dataset(store) ```

```html HTTPError: 302 Found

<html><head> <title>302 Found</title> </head><body>

Found

The document has moved here.

</body></html>

```

{
    "total_count": 1,
    "+1": 1,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Use xarray.open_dataset() for password-protected Opendap files 186169975

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