home / github

Menu
  • Search all tables
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

4 rows where user = 4414299

✎ View and edit SQL

This data as json, CSV (advanced)

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

id ▼ node_id number state locked title user body created_at updated_at closed_at merged_at merge_commit_sha assignee milestone draft head base author_association auto_merge repo url merged_by
142023221 MDExOlB1bGxSZXF1ZXN0MTQyMDIzMjIx 1583 closed 0 Parsing wavelength info from rasterio tags maaleske 4414299 Proof of concept for reading info from rasterio `tags()` in `open_rasterio`. Not quite a solution to #1582, but possibly workable to a more general solution. Currently implements the following: - Reads `tags(band_idx)` for each band and extracts the wavelength values from the result dictionaries as a coordinate for the returned DataArray. - Reads the wavelength_units from `tags(1)` and sets it as an attribute (assumes it's the same for each band, which it is for ENVI format files) - [x] Closes #1582 (Maybe?) - [x] Tests added / passed - [x] Passes ``git diff upstream/master | flake8 --diff`` - [x] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API 2017-09-20T06:57:16Z 2017-12-12T14:38:59Z 2017-12-12T14:38:53Z 2017-12-12T14:38:53Z 89a1a9883c0c8409dad8dbcccf1ab73a3ea2cafc     0 304d7a5c938069cb646f410e0fde6f13eba1ed6b dbf7b01cb4a4d9fb00882e0457523e4bb806820c CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/1583  
150556628 MDExOlB1bGxSZXF1ZXN0MTUwNTU2NjI4 1687 closed 0 Remove netCDF dependency from rasterio backend tests maaleske 4414299 The rasterio backend tests each currently have a netcdf roundtrip test without the appropriate `requires_scipy_or_netCDF4` decorator, which causes them to always fail when ran without either. They also do not seem to be necessary for testing the rasterio backend functionality, and just add an extra dependency to the tests. The netCDF roundtrip also seems to be already better tested by the other tests in the same file. - [x] Tests added / passed - [x] Passes ``git diff upstream/master **/*py | flake8 --diff`` - [x] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API 2017-11-03T15:26:44Z 2017-11-05T22:09:02Z 2017-11-05T19:42:33Z 2017-11-05T19:42:33Z 6b16e6eed3eb4b8e3f5c237315765cf4b94b8a2b     0 22cd140a29d98e0019a7fca6cd5ccd5aeb2f3312 acae757d869af776a4b2bd980fb77a1873f4c510 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/1687  
150577155 MDExOlB1bGxSZXF1ZXN0MTUwNTc3MTU1 1690 closed 0 Add names for test failures maaleske 4414299 This PR adds the coordinate name to the test failure printout in `assert_allclose()` when cycling through the coordinates . Specifying the coordinate makes test failures much easier to diagnose just based on the message. - [ ] Closes #xxxx - [x] Tests added / passed - [x] Passes ``git diff upstream/master **/*py | flake8 --diff`` - [x] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API 2017-11-03T16:48:16Z 2020-06-13T17:53:03Z 2020-06-13T17:53:03Z   4fb5e8494b126a359db4f2bece6bc75aff4ccf76     0 b3e2b6db85504aecf5e186989d4abb4164cd73f8 bb87a9441d22b390e069d0fde58f297a054fd98a CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/1690  
214936727 MDExOlB1bGxSZXF1ZXN0MjE0OTM2NzI3 2413 closed 0 Allow passing of positional arguments in `apply` for Groupby objects maaleske 4414299 - [x] Closes #2412 - [x] Tests added (for all bug fixes or enhancements) - [x] Tests passed (for all non-documentation changes) - [x] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API 2018-09-12T12:06:13Z 2018-12-24T17:50:29Z 2018-12-24T17:50:20Z 2018-12-24T17:50:20Z d8d87d21786a7823b84d8f1f1e14f793fbd5352a     0 12bd71ad6a699205b1eb76f8870940419dc0ed0d 7fcb80f9865a7ade1b9c2f3d48bf0d31d6672bdb CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/2413  

Advanced export

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

CSV options:

CREATE TABLE [pull_requests] (
   [id] INTEGER PRIMARY KEY,
   [node_id] TEXT,
   [number] INTEGER,
   [state] TEXT,
   [locked] INTEGER,
   [title] TEXT,
   [user] INTEGER REFERENCES [users]([id]),
   [body] TEXT,
   [created_at] TEXT,
   [updated_at] TEXT,
   [closed_at] TEXT,
   [merged_at] TEXT,
   [merge_commit_sha] TEXT,
   [assignee] INTEGER REFERENCES [users]([id]),
   [milestone] INTEGER REFERENCES [milestones]([id]),
   [draft] INTEGER,
   [head] TEXT,
   [base] TEXT,
   [author_association] TEXT,
   [auto_merge] TEXT,
   [repo] INTEGER REFERENCES [repos]([id]),
   [url] TEXT,
   [merged_by] INTEGER REFERENCES [users]([id])
);
CREATE INDEX [idx_pull_requests_merged_by]
    ON [pull_requests] ([merged_by]);
CREATE INDEX [idx_pull_requests_repo]
    ON [pull_requests] ([repo]);
CREATE INDEX [idx_pull_requests_milestone]
    ON [pull_requests] ([milestone]);
CREATE INDEX [idx_pull_requests_assignee]
    ON [pull_requests] ([assignee]);
CREATE INDEX [idx_pull_requests_user]
    ON [pull_requests] ([user]);
Powered by Datasette · Queries took 18.844ms · About: xarray-datasette