issue_comments
5 rows where author_association = "NONE", issue = 942738904 and user = 1373406 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- Decoding netCDF is giving incorrect values for a large file · 5 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
879554360 | https://github.com/pydata/xarray/issues/5597#issuecomment-879554360 | https://api.github.com/repos/pydata/xarray/issues/5597 | MDEyOklzc3VlQ29tbWVudDg3OTU1NDM2MA== | ohsqueezy 1373406 | 2021-07-14T03:19:53Z | 2021-07-14T03:19:53Z | NONE | That explains it to me! Not sure if it's still useful but I exported the subset as a netCDF file. ```python In [59]: packed_vals = xarray.open_dataset("packed_solar_data_subset.nc", mask_and_scale=False).ssrd.values In [60]: packed_vals[0] * numpy.float32(e["scale_factor"]) + numpy.float32(e["add_offset"]) In [61]: packed_vals[0] * numpy.float64(e["scale_factor"]) + numpy.float64(e["add_offset"]) |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Decoding netCDF is giving incorrect values for a large file 942738904 | |
879282134 | https://github.com/pydata/xarray/issues/5597#issuecomment-879282134 | https://api.github.com/repos/pydata/xarray/issues/5597 | MDEyOklzc3VlQ29tbWVudDg3OTI4MjEzNA== | ohsqueezy 1373406 | 2021-07-13T17:49:09Z | 2021-07-13T17:49:09Z | NONE | sure, no prob
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Decoding netCDF is giving incorrect values for a large file 942738904 | |
878920991 | https://github.com/pydata/xarray/issues/5597#issuecomment-878920991 | https://api.github.com/repos/pydata/xarray/issues/5597 | MDEyOklzc3VlQ29tbWVudDg3ODkyMDk5MQ== | ohsqueezy 1373406 | 2021-07-13T09:16:03Z | 2021-07-13T09:16:03Z | NONE | h5netcdf seems to be a separate issue for me as it gives me the error
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Decoding netCDF is giving incorrect values for a large file 942738904 | |
878910801 | https://github.com/pydata/xarray/issues/5597#issuecomment-878910801 | https://api.github.com/repos/pydata/xarray/issues/5597 | MDEyOklzc3VlQ29tbWVudDg3ODkxMDgwMQ== | ohsqueezy 1373406 | 2021-07-13T09:03:04Z | 2021-07-13T09:03:04Z | NONE | Thanks for your help! I checked using the netCDF4 module, and the data is returned correctly ```python $ d = netCDF4.Dataset("BIG_FILE_packed.nc") $ d["ssrd"][d["time"][:] < d["time"][24], d["latitude"][:] == 44.8, d["longitude"][:] == 287.1]
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Decoding netCDF is giving incorrect values for a large file 942738904 | |
878824626 | https://github.com/pydata/xarray/issues/5597#issuecomment-878824626 | https://api.github.com/repos/pydata/xarray/issues/5597 | MDEyOklzc3VlQ29tbWVudDg3ODgyNDYyNg== | ohsqueezy 1373406 | 2021-07-13T06:46:55Z | 2021-07-13T06:46:55Z | NONE | That example is actually a different file than the original. I unpacked the original file externally using In all the examples, the data is the same time and location, so they should be the same values outside of whatever is lost from compressing to int16 and decompressing, and the output arrays are from selecting a single day (24 hours) at a single location from the dataset returned by So actually there are three files I've tested with, all of which should have the same data (assuming the issue isn't with how the files are built, which could be the case): |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Decoding netCDF is giving incorrect values for a large file 942738904 |
Advanced export
JSON shape: default, array, newline-delimited, object
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]);
user 1