issues
2 rows where user = 7933853 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
438694589 | MDU6SXNzdWU0Mzg2OTQ1ODk= | 2932 | Facetgrid: colors beyond range (extend) not saturated | lvankampenhout 7933853 | closed | 0 | 5 | 2019-04-30T09:56:46Z | 2020-03-29T13:26:43Z | 2020-03-29T13:26:42Z | NONE | Code Sample, a copy-pastable example if possibleMinimal example here: https://github.com/lvankampenhout/bug-reports/blob/master/Facetgrid_cmap_extend.ipynb Problem descriptionThe extreme colors of neither the pcolormesh or colorbar (using extend='both') are not saturated as they should when faceting. Output of
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/2932/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | xarray 13221727 | issue | ||||||
548029687 | MDU6SXNzdWU1NDgwMjk2ODc= | 3681 | concat result not correct for particular dataset | lvankampenhout 7933853 | closed | 0 | 7 | 2020-01-10T11:34:06Z | 2020-03-13T13:25:13Z | 2020-03-13T13:25:13Z | NONE | MCVE Code Sampledata here: https://www.dropbox.com/sh/8eist9mmlf41mpc/AAB8yp6ERz-b4VYozL8tsj-ma?dl=0 ``` import xarray as xr import numpy as np print(xr.version) # ds1 = xr.open_dataset('tas_Amon_NorESM1-ME_rcp26_r1i1p1_200601-206012.nc') ds2 = xr.open_dataset('tas_Amon_NorESM1-ME_rcp26_r1i1p1_206101-210112.nc') print(np.allclose(ds1.lat , ds2.lat), np.allclose(ds1.lat_bnds , ds2.lat_bnds)) # True, True ds3 = xr.concat((ds1,ds2), dim='time') print(ds3.lat.shape == ds1.lat.shape) # False ``` Expected Output
since ds3.lat should be identical to ds1.lat Problem DescriptionI've encountered a particular NetCDF dataset which is not handled correctly by the Xarray As a workaround, I've tried to reindex the result ( but that yields an incomplete field after the year 2061. This can be seen by issuing:
Output of
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/3681/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]);