issue_comments
3 rows where author_association = "CONTRIBUTOR" and issue = 223891484 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- open_mfdataset not finding coordinates · 3 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
296805113 | https://github.com/pydata/xarray/issues/1383#issuecomment-296805113 | https://api.github.com/repos/pydata/xarray/issues/1383 | MDEyOklzc3VlQ29tbWVudDI5NjgwNTExMw== | snowman2 8699967 | 2017-04-24T19:58:12Z | 2017-04-24T19:58:12Z | CONTRIBUTOR | That's what I was looking for. Perfect. Thanks! |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
open_mfdataset not finding coordinates 223891484 | |
296779762 | https://github.com/pydata/xarray/issues/1383#issuecomment-296779762 | https://api.github.com/repos/pydata/xarray/issues/1383 | MDEyOklzc3VlQ29tbWVudDI5Njc3OTc2Mg== | spencerahill 6200806 | 2017-04-24T18:22:14Z | 2017-04-24T18:22:14Z | CONTRIBUTOR | See also Dataset.set_coords |
{ "total_count": 1, "+1": 0, "-1": 0, "laugh": 0, "hooray": 1, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
open_mfdataset not finding coordinates 223891484 | |
296756057 | https://github.com/pydata/xarray/issues/1383#issuecomment-296756057 | https://api.github.com/repos/pydata/xarray/issues/1383 | MDEyOklzc3VlQ29tbWVudDI5Njc1NjA1Nw== | snowman2 8699967 | 2017-04-24T17:22:46Z | 2017-04-24T17:24:40Z | CONTRIBUTOR | Found a solution: ```python import xarray as xr lsm_input_folder_path = '/path/to/files*.nc' def define_coords(ds): if 'lat' not in ds.coords: ds.coords['lat'] = ds['lat'] if 'lon' not in ds.coords: ds.coords['lon'] = ds['lon'] return ds with xr.open_mfdataset(lsm_input_folder_path, preprocess=define_coords, concat_dim='time') as xd: print(xd) ``` |
{ "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
open_mfdataset not finding coordinates 223891484 |
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 2