issues
2 rows where repo = 13221727, state = "closed" and user = 10595679 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
428374352 | MDExOlB1bGxSZXF1ZXN0MjY2NzU2OTEw | 2865 | BUG: Fix #2864 by adding the missing vrt parameters | jmichel-otb 10595679 | closed | 0 | 5 | 2019-04-02T18:22:07Z | 2019-04-11T16:24:17Z | 2019-04-11T16:24:13Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/2865 |
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/2865/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull | |||||
428300345 | MDU6SXNzdWU0MjgzMDAzNDU= | 2864 | Bug in WarpedVRT support of open_rasterio() | jmichel-otb 10595679 | closed | 0 | 3 | 2019-04-02T15:37:08Z | 2019-04-11T16:24:13Z | 2019-04-11T16:24:13Z | CONTRIBUTOR | Code Sample, a copy-pastable example if possibleUsing the following data: https://gitlab.orfeo-toolbox.org/orfeotoolbox/otb/blob/develop/Data/Input/QB_Toulouse_Ortho_XS.tif ```python import rasterio as rio from rasterio.crs import CRS from rasterio.warp import calculate_default_transform,aligned_target from rasterio.enums import Resampling from rasterio.vrt import WarpedVRT import xarray as xr path = 'QB_Toulouse_Ortho_XS.tif' Read input metadata with rasteriowith rio.open(path) as src:
print('Input file CRS is {}'.format(src.crs))
print('Input file shape is {}'.format(src.shape))
print('Input file transform is {}'.format(src.transform))
# Create a different CRS Problem descriptionIn the above example, Expected OutputCorrect output should be:
Which is fairly easy to obtain by modifying the following lines in With the following:
Output of
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/2864/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]);