issues
2 rows where comments = 27, type = "issue" and user = 35968931 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2054280736 | I_kwDOAMm_X856cdYg | 8572 | Track merging datatree into xarray | TomNicholas 35968931 | open | 0 | 27 | 2023-12-22T17:37:20Z | 2024-05-02T19:44:29Z | MEMBER | What is your issue?Master issue to track progress of merging xarray-datatree into xarray Also see the project board for DataTree integration. On calls in the last few dev meetings, we decided to forget about a temporary cross-repo Weekly meetingSee https://github.com/pydata/xarray/issues/8747 Task list:To happen in order:
Can happen basically at any time or maybe in parallel with other efforts:
Anyone is welcome to help with any of this, including but not limited to @owenlittlejohns , @eni-awowale, @flamingbear (@etienneschalk maybe?). cc also @shoyer @keewis for any thoughts as to the process. |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/8572/reactions", "total_count": 7, "+1": 6, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 1 } |
xarray 13221727 | issue | ||||||||
324350248 | MDU6SXNzdWUzMjQzNTAyNDg= | 2159 | Concatenate across multiple dimensions with open_mfdataset | TomNicholas 35968931 | closed | 0 | 27 | 2018-05-18T10:10:49Z | 2019-09-16T18:54:39Z | 2019-06-25T15:50:33Z | MEMBER | Code Sample```python Create 4 datasets containing sections of contiguous (x,y) datafor i, x in enumerate([1, 3]): for j, y in enumerate([10, 40]): ds = xr.Dataset({'foo': (('x', 'y'), np.ones((2, 3)))}, coords={'x': [x, x+1], 'y': [y, y+10, y+20]})
Try to open them all in one gods_read = xr.open_mfdataset('ds.*.nc') print(ds_read) ``` Problem descriptionCurrently Expected Output
Current output of
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/2159/reactions", "total_count": 4, "+1": 4, "-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]);