home / github

Menu
  • GraphQL API
  • Search all tables

issues

Table actions
  • GraphQL API for issues

2 rows where state = "closed", type = "issue" and user = 1050278 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

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

type 1

  • issue · 2 ✖

state 1

  • closed · 2 ✖

repo 1

  • xarray 2
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
219611498 MDU6SXNzdWUyMTk2MTE0OTg= 1353 Cannot import xarray.tests due to use of pytest.config jjhelmus 1050278 closed 0     6 2017-04-05T14:55:31Z 2017-04-06T18:12:18Z 2017-04-06T18:12:18Z CONTRIBUTOR      

xarray.tests cannot be imported due to the use of pytest.config:

$ python -c "import xarray; print(xarray.__version__); import xarray.tests" 0.9.2-3-g9479038 Traceback (most recent call last): File "<string>", line 1, in <module> File "/home/jhelmus/devel/xarray/xarray/tests/__init__.py", line 118, in <module> not pytest.config.getoption("--run-flaky"), AttributeError: module 'pytest' has no attribute 'config'

The use of pytest.config in the xarray/tests/__init__.py seem to have been introduced in #1336. From the discussion in pytest-dev/pytest#1688 it seems as if the use of pytest.config is discouraged.

{
    "url": "https://api.github.com/repos/pydata/xarray/issues/1353/reactions",
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  completed xarray 13221727 issue
94966000 MDU6SXNzdWU5NDk2NjAwMA== 471 Read NetCDF files with multiple values in missing_value attribute jjhelmus 1050278 closed 0     5 2015-07-14T14:58:56Z 2015-07-22T21:33:41Z 2015-07-22T21:33:41Z CONTRIBUTOR      

For certain data, for example NEXRAD Level 2 data, the NetCDF Java library will set the missing_value attribute for multiple variables in the produced NetCDF to a vector containing multiple variables. Currently loading these files in xray raises a ValueError in the decode_cf_variable function.

Netcdf4-python returns a NumPy masked array with all values in the missing_value vector to np.ma.masked, xray may want to copy this model by replacing these elements with NaN. Another option is to raise an more appropriate error indicating that these files are not supported as vector missing_value attributes do not seem to meet a strict reading of section 2.5.1 of the CF conventions.

I can provide an example file if desired.

{
    "url": "https://api.github.com/repos/pydata/xarray/issues/471/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

CSV options:

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]);
Powered by Datasette · Queries took 20.951ms · About: xarray-datasette