issues
3 rows where state = "open" and user = 57914115 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1947869312 | PR_kwDOAMm_X85dCo6P | 8324 | Implement cftime vectorization as discussed in PR #8322 | antscloud 57914115 | open | 0 | 0 | 2023-10-17T17:01:25Z | 2023-10-23T05:11:11Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/8324 | As discussed in #8322, here is the test for implementing the vectorization Only this test seems to fail in I don't really understand why though if you have an idea |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/8324/reactions", "total_count": 2, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 2, "eyes": 0 } |
xarray 13221727 | pull | ||||||
1941775048 | I_kwDOAMm_X85zvSLI | 8302 | Rust-based cftime Implementation for Python | antscloud 57914115 | open | 0 | 2 | 2023-10-13T11:33:20Z | 2023-10-22T16:35:50Z | CONTRIBUTOR | Is your feature request related to a problem?I developped a rust based project with python bindings code to parse the CF time conventions and deal with datetime operations. You can find the project on GitHub at https://github.com/antscloud/cftime-rs. It was something missing in the rust ecosystem to deal with NetCDF files, As the project in Rust hits its first working version, I wanted to explore the There are surely missing features compared to Please, let me know if xarray team could be interested. If you are, I can open a pull request to see it is possible, where it breaks the unit tests and if it's worth it Describe the solution you'd likeNo response Describe alternatives you've consideredNo response Additional contextNo response |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/8302/reactions", "total_count": 2, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 1, "rocket": 0, "eyes": 0 } |
xarray 13221727 | issue | ||||||||
1947508727 | PR_kwDOAMm_X85dBaso | 8322 | Implementation of rust based cftime | antscloud 57914115 | open | 0 | 1 | 2023-10-17T14:00:45Z | 2023-10-17T22:20:31Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/8322 | As discussed in #8302, here is a first attempt to implement There are a lot of tests and I struggle to understand all the processing in Also there are some key differences betwwen Finally, and regardless of this PR, I guess there could be a speed improvement by vectorizing operations by replacing this : https://github.com/pydata/xarray/blob/df0ddaf2e68a6b033b4e39990d7006dc346fcc8c/xarray/coding/times.py#L622-L649 by something like this : We can use numpy instead of list comprehensions. It takes a bit more of memory though. |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/8322/reactions", "total_count": 1, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 1, "eyes": 0 } |
xarray 13221727 | pull |
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]);