home / github

Menu
  • GraphQL API
  • Search all tables

issue_comments

Table actions
  • GraphQL API for issue_comments

2 rows where author_association = "MEMBER", issue = 262619571 and user = 1217238 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

These facets timed out: author_association, issue

user 1

  • shoyer · 2 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
335956885 https://github.com/pydata/xarray/issues/1601#issuecomment-335956885 https://api.github.com/repos/pydata/xarray/issues/1601 MDEyOklzc3VlQ29tbWVudDMzNTk1Njg4NQ== shoyer 1217238 2017-10-11T21:39:47Z 2017-10-11T21:39:47Z MEMBER

Fixed by #1602

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  _FillValue and missing_value mismatch if float 262619571
334025812 https://github.com/pydata/xarray/issues/1601#issuecomment-334025812 https://api.github.com/repos/pydata/xarray/issues/1601 MDEyOklzc3VlQ29tbWVudDMzNDAyNTgxMg== shoyer 1217238 2017-10-04T01:29:21Z 2017-10-04T01:29:21Z MEMBER

Inspecting your dataset, I see: ``` In [7]: ds = xarray.open_dataset('http://oos.soest.hawaii.edu/thredds/dodsC/hioos/tide_mhi', decode_cf=False)

In [8]: ds.info() xarray.Dataset { dimensions: depth = 3 ; latitude = 242 ; longitude = 521 ; time = 8760 ;

variables: ... float64 v(time, depth, latitude, longitude) ; v:units = meter second-1 ; v:long_name = v-velocity component ; v:standard_name = northward_sea_water_velocity ; v:missing_value = -999.989990234 ; v:_FillValue = -999.99 ; ... ```

So missing_value and _FillValue do indeed differ here, at least in their 64-bit floating point representation. Floating point equality is a pain, but unfortunately for fill values we really do need the bit-patterns to match.

https://github.com/pydata/xarray/pull/1602 updates the error message to print the offending values, which should hopefully improve user-experience if this comes up in the future.

{
    "total_count": 1,
    "+1": 1,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  _FillValue and missing_value mismatch if float 262619571

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