home / github

Menu
  • GraphQL API
  • Search all tables

pull_requests

Table actions
  • GraphQL API for pull_requests

2 rows where user = 1117224

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: created_at (date), updated_at (date), closed_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
80988170 MDExOlB1bGxSZXF1ZXN0ODA5ODgxNzA= 961 closed 0 Update time-series.rst NicWayand 1117224 Thought it would be helpful to users to know that timezones are not handled here, rather than googling and finding this: https://github.com/pydata/xarray/issues/552 2016-08-11T16:26:58Z 2017-04-03T05:31:06Z 2017-04-03T05:31:06Z   eac67a02865f4145c1c8f0513b3c5d9a3fce5232     0 2679876dbaf0177df2d76692809e67fcb4d6d686 7f026a10cde4316b48ff4ee1bd0d0d4fe1bc6a0d NONE   xarray 13221727 https://github.com/pydata/xarray/pull/961  
91639496 MDExOlB1bGxSZXF1ZXN0OTE2Mzk0OTY= 1070 closed 0 Feature/rasterio NicWayand 1117224 @jhamman started a backend for RasterIO that I have been working on. There are two issues I am stuck on that I could use some help: 1) Lat/long coords are not being decoded correctly (missing from output dataset). Lat/lon projection are correctly calculated and added here (https://github.com/NicWayand/xray/blob/feature/rasterio/xarray/backends/rasterio_.py#L117). But, it appears (with my limited knowledge of xarray) that the lat/long coords contained within `obj` are lost at this line (https://github.com/NicWayand/xray/blob/feature/rasterio/xarray/conventions.py#L930). 2) Lazy-loading needs to be enabled. How can I setup/test this? Are there examples from other backends I could follow? #790 2016-10-31T16:14:55Z 2017-05-22T08:47:40Z 2017-05-22T08:47:40Z   0d7974f059dbcaded153a95ea92c4be8df859489     0 3e90b999465260f4e6d62ad69cc28c11b460a32d a247d9314d6a8df34df887106e234bbffebe1e48 NONE   xarray 13221727 https://github.com/pydata/xarray/pull/1070  

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 20.133ms · About: xarray-datasette