issues
2 rows where type = "issue" and user = 806256 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 270430189 | MDU6SXNzdWUyNzA0MzAxODk= | 1680 | Coordinates get transformed to variables | olgabot 806256 | closed | 0 | 7 | 2017-11-01T19:51:34Z | 2017-11-08T21:37:04Z | 2017-11-08T21:37:04Z | NONE | Code Sample, a copy-pastable example if possibleTo get the data to reproduce the example: Problem descriptionWhen I create a dataset, I set a bunch of metadata as
But when I reload that exact same dataset with
Interestingly, I think this is happening upon dataset creation because
Expected OutputI expected the coordinates and variables to be consistent between opening and closing the file Output of
|
{
"url": "https://api.github.com/repos/pydata/xarray/issues/1680/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
completed | xarray 13221727 | issue | ||||||
| 266320445 | MDU6SXNzdWUyNjYzMjA0NDU= | 1638 | Unicode strings unexpectedly transformed to byte strings upon `open_dataset` | olgabot 806256 | closed | 0 | 7 | 2017-10-18T00:16:38Z | 2017-11-01T19:51:55Z | 2017-10-27T23:36:07Z | NONE | When I first create the dataset, all the metadata is stored as unicode strings (yay!):
but then when I save using
So then things I expect like selecting on gene, e.g. Do you know why this may be happening? |
{
"url": "https://api.github.com/repos/pydata/xarray/issues/1638/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]);


