issues
4 rows where state = "closed", type = "issue" and user = 16919188 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 185709414 | MDU6SXNzdWUxODU3MDk0MTQ= | 1064 | Differences on datetime values appears after writing reindexed variable on netCDF file | Scheibs 16919188 | closed | 0 | 12 | 2016-10-27T15:54:34Z | 2023-09-24T15:05:27Z | 2023-09-24T15:05:27Z | NONE | In my Dataset i've got a time serie coordinate who begins like this
And all is ok when I write and re-open the netdcdf file Then i try to add to this dataset a reindexed variable like this
Everything is still good for the writing, but when I reopen the netcdf file, the time values are modified for the minutes part.
Thanks! |
{
"url": "https://api.github.com/repos/pydata/xarray/issues/1064/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
completed | xarray 13221727 | issue | ||||||
| 339909651 | MDU6SXNzdWUzMzk5MDk2NTE= | 2275 | IPython crash after xarray.opendataset : free():invalid next size (fast) | Scheibs 16919188 | closed | 0 | 9 | 2018-07-10T16:06:01Z | 2018-09-18T16:25:32Z | 2018-07-11T08:55:41Z | NONE | I tried to open a 40 Mo netcdf file with This is some informations about my configuration :
|
{
"url": "https://api.github.com/repos/pydata/xarray/issues/2275/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
completed | xarray 13221727 | issue | ||||||
| 349493856 | MDU6SXNzdWUzNDk0OTM4NTY= | 2361 | Indexing dataset with dimension name stored in python variable | Scheibs 16919188 | closed | 0 | 1 | 2018-08-10T12:17:48Z | 2018-08-10T15:57:16Z | 2018-08-10T15:57:16Z | NONE | I try to work with some netCDF file who can have various dimensions names like NTime0, NTime1 ... Is there a way to indexing dataset with dimension name stored in python variable ?
|
{
"url": "https://api.github.com/repos/pydata/xarray/issues/2361/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
completed | xarray 13221727 | issue | ||||||
| 129150619 | MDU6SXNzdWUxMjkxNTA2MTk= | 729 | Cannot write dask Dataset to NetCDF file | Scheibs 16919188 | closed | 0 | 18 | 2016-01-27T13:55:56Z | 2016-10-28T07:25:29Z | 2016-10-28T07:25:29Z | NONE | I have a xarray Dataset created using dask, which i would like to write on my disk. The size of this dataset is 12GB, and my computer has 64GB of memory, but when I run the 'to_netcdf' command, my memory crashes. ``` python type(nc) Out[5]: xray.core.dataset.Dataset nc.chunks Out[6]: Frozen(SortedKeysDict({'Denree': (19,), u'NIsoSource': (10, 10, 10, 10, 10, 6), 'Pop': (6,), u'DimJ0': (20, 17), u'DimK0': (1,), u'time': (50, 50, 50, 50, 3), u'DimI0': (15,), 'TypeDose': (2,)})) nc.nbytes * (2 ** -30) Out[7]: 12.4569926 ``` I don't understand what i'm doing wrong, so thanks for your help. |
{
"url": "https://api.github.com/repos/pydata/xarray/issues/729/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]);