home / github

Menu
  • GraphQL API
  • Search all tables

issue_comments

Table actions
  • GraphQL API for issue_comments

2 rows where issue = 636449225 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: created_at (date), updated_at (date)

user 2

  • andersy005 1
  • stale[bot] 1

author_association 2

  • MEMBER 1
  • NONE 1

issue 1

  • [Feature request] Support file-like objects in open_rasterio · 2 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
1102895190 https://github.com/pydata/xarray/issues/4139#issuecomment-1102895190 https://api.github.com/repos/pydata/xarray/issues/4139 IC_kwDOAMm_X85BvNhW andersy005 13301940 2022-04-19T17:15:20Z 2022-04-19T17:15:20Z MEMBER

this appears to have been fixed in the latest alpha release of rasterio v1.3a3 (which isn't available on conda-forge but is available on PyPI) via fsspec

  • https://github.com/rasterio/rasterio/issues/2360
  • https://github.com/corteva/rioxarray/issues/440

```python In [13]: import xarray as xr

In [14]: import fsspec

In [15]: import rasterio

In [16]: rasterio.version Out[16]: '1.3a3'

In [17]: with fsspec.open('2d_test.tiff') as f: ...: ds = xr.open_dataset(f, engine='rasterio') ...:

In [18]: ds Out[18]: <xarray.Dataset> Dimensions: (band: 1, y: 10, x: 10) Coordinates: * band (band) int64 1 xc (y, x) float64 ... yc (y, x) float64 ... spatial_ref int64 ... Dimensions without coordinates: y, x Data variables: band_data (band, y, x) float64 ... ```

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  [Feature request] Support file-like objects in open_rasterio 636449225
1102108716 https://github.com/pydata/xarray/issues/4139#issuecomment-1102108716 https://api.github.com/repos/pydata/xarray/issues/4139 IC_kwDOAMm_X85BsNgs stale[bot] 26384082 2022-04-19T05:43:49Z 2022-04-19T05:43:49Z NONE

In order to maintain a list of currently relevant issues, we mark issues as stale after a period of inactivity

If this issue remains relevant, please comment here or remove the stale label; otherwise it will be marked as closed automatically

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  [Feature request] Support file-like objects in open_rasterio 636449225

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [issue_comments] (
   [html_url] TEXT,
   [issue_url] TEXT,
   [id] INTEGER PRIMARY KEY,
   [node_id] TEXT,
   [user] INTEGER REFERENCES [users]([id]),
   [created_at] TEXT,
   [updated_at] TEXT,
   [author_association] TEXT,
   [body] TEXT,
   [reactions] TEXT,
   [performed_via_github_app] TEXT,
   [issue] INTEGER REFERENCES [issues]([id])
);
CREATE INDEX [idx_issue_comments_issue]
    ON [issue_comments] ([issue]);
CREATE INDEX [idx_issue_comments_user]
    ON [issue_comments] ([user]);
Powered by Datasette · Queries took 4401.619ms · About: xarray-datasette