issues
2 rows where comments = 1, state = "closed" and user = 8268008 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date), closed_at (date)
id | node_id | number | title | user | state | locked | assignee | milestone | comments | created_at | updated_at ▲ | closed_at | author_association | active_lock_reason | draft | pull_request | body | reactions | performed_via_github_app | state_reason | repo | type |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
176399665 | MDU6SXNzdWUxNzYzOTk2NjU= | 1001 | "RuntimeError: NetCDF: Not a valid ID" error when trying to operate on a netCDF file using netCDF4 | ceridwen 8268008 | closed | 0 | 1 | 2016-09-12T15:03:54Z | 2016-09-13T02:33:28Z | 2016-09-13T02:33:28Z | NONE | I have some code that writes out a netCDF file, https://gist.github.com/ceridwen/21f86231e86b72bf18fcc16fcee01548 When I try to do math on this dataset after loading it, though, I get an error: ``` python
Note that if I generate the dataset without writing it to a file and loading it, the same operation doesn't cause an error: ``` python
This is with xarray (0.8.2) and netCDF4 (1.2.4). It may be a bug in netCDF rather than xarray itself. See also the crash in #1002, which may or may not be related. |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/1001/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | xarray 13221727 | issue | ||||||
176403875 | MDU6SXNzdWUxNzY0MDM4NzU= | 1002 | KeyError when trying to operate on a netCDF file created and read with scipy | ceridwen 8268008 | closed | 0 | 1 | 2016-09-12T15:19:52Z | 2016-09-13T02:33:14Z | 2016-09-13T02:33:14Z | NONE | This is possibly related to #1001. With the same code and test data, using engine='scipy' in the to_netcdf() and open_dataset() calls, ``` python
As in #1001, the same .mean() call doesn't crash if I'm not trying to load it from a file. This is with xarray (0.8.2) and scipy (0.18.0). |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/1002/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | xarray 13221727 | issue |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issues] ( [id] INTEGER PRIMARY KEY, [node_id] TEXT, [number] INTEGER, [title] TEXT, [user] INTEGER REFERENCES [users]([id]), [state] TEXT, [locked] INTEGER, [assignee] INTEGER REFERENCES [users]([id]), [milestone] INTEGER REFERENCES [milestones]([id]), [comments] INTEGER, [created_at] TEXT, [updated_at] TEXT, [closed_at] TEXT, [author_association] TEXT, [active_lock_reason] TEXT, [draft] INTEGER, [pull_request] TEXT, [body] TEXT, [reactions] TEXT, [performed_via_github_app] TEXT, [state_reason] TEXT, [repo] INTEGER REFERENCES [repos]([id]), [type] TEXT ); CREATE INDEX [idx_issues_repo] ON [issues] ([repo]); CREATE INDEX [idx_issues_milestone] ON [issues] ([milestone]); CREATE INDEX [idx_issues_assignee] ON [issues] ([assignee]); CREATE INDEX [idx_issues_user] ON [issues] ([user]);