issues
5 rows where user = 57705593 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: closed_at, created_at (date), updated_at (date), closed_at (date)
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1112365912 | PR_kwDOAMm_X84xey-w | 6187 | to_netcdf: docstrings for compute parameter | tovogt 57705593 | closed | 0 | 2 | 2022-01-24T09:14:01Z | 2023-09-14T04:36:06Z | 2023-09-14T04:36:06Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/6187 | As discussed in #6174, closing and re-opening a file between calls of to_netcdf can be avoided by using
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/6187/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull | |||||
1170985441 | PR_kwDOAMm_X840h_Fx | 6366 | Don't overwrite user-defined coordinates attributes | tovogt 57705593 | closed | 0 | 1 | 2022-03-16T12:55:22Z | 2022-04-10T14:45:39Z | 2022-04-10T14:45:38Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/6366 |
As discussed in #6310, when setting "coordinates" as a variable attribute instead of as an encoding, the value of that variable attribute is overwritten when writing to a NetCDF file. This PR fixes it. |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/6366/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull | |||||
1154014066 | I_kwDOAMm_X85EyNty | 6310 | Only auxiliary coordinates are listed in nc variable attribute | tovogt 57705593 | closed | 0 | 9 | 2022-02-28T12:08:33Z | 2022-04-10T14:45:38Z | 2022-04-10T14:45:38Z | CONTRIBUTOR | What happened?When saving a dataset to a NetCDF file with both dimension and auxiliary coordinates, the data variables' What did you expect to happen?I expect xarray to adhere to the CF conventions where it says:
See also this example: https://cfconventions.org/cf-conventions/cf-conventions.html#_single_trajectory Minimal Complete Verifiable Example
Relevant log outputNo response Anything else we need to know?I don't want to offend anyone, please correct me if I read the CF conventions in the wrong way or if this is a special case, and in general, the CF conventions recommend to only include auxiliary coordinates in the Environment``` INSTALLED VERSIONS commit: None python: 3.8.12 | packaged by conda-forge | (default, Oct 12 2021, 21:59:51) [GCC 9.4.0] python-bits: 64 OS: Linux OS-release: 5.4.0-100-generic machine: x86_64 processor: x86_64 byteorder: little LC_ALL: None LANG: en_US.UTF-8 LOCALE: ('en_US', 'UTF-8') libhdf5: 1.12.1 libnetcdf: 4.8.1 xarray: 0.19.0 pandas: 1.3.4 numpy: 1.21.4 scipy: 1.7.0 netCDF4: 1.5.8 pydap: None h5netcdf: None h5py: 3.4.0 Nio: None zarr: None cftime: 1.5.1.1 nc_time_axis: None PseudoNetCDF: None rasterio: 1.2.10 cfgrib: 0.9.9.0 iris: None bottleneck: 1.3.2 dask: 2021.07.1 distributed: 2021.07.1 matplotlib: 3.4.2 cartopy: 0.20.1 seaborn: None numbagg: None pint: 0.17 setuptools: 59.2.0 pip: 21.2.1 conda: None pytest: None IPython: 7.29.0 sphinx: None ``` |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/6310/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | xarray 13221727 | issue | ||||||
1108138101 | I_kwDOAMm_X85CDNh1 | 6174 | [FEATURE]: Read from/write to several NetCDF4 groups with a single file open/close operation | tovogt 57705593 | open | 0 | 10 | 2022-01-19T14:02:36Z | 2022-02-03T08:41:16Z | CONTRIBUTOR | Is your feature request related to a problem?I know that there is a big discussion going on in #4118 about organizing hierarchies of datasets within xarray's data structures. But this issue is supposed to address only a comparably simple aspect of this. Suppose that you have a list Describe the solution you'd likeI would like to have a function Describe alternatives you've consideredCurrently, I'm using the following read/write functions to achieve the same: ```python import pathlib from xarray.backends import NetCDF4DataStore from xarray.backends.api import dump_to_store from xarray.backends.common import ArrayWriter from xarray.backends.store import StoreBackendEntrypoint def _xr_to_netcdf_multi(path, ds_dict, encoding=None): """Write multiple xarray Datasets to separate groups in a single NetCDF4 file
def _xr_open_dataset_multi(path, prefix=""): """Read multiple xarray Datasets from groups contained in a single NetCDF4 file
def _xr_nc4_groups_from_store(store): """List all groups contained in the given NetCDF4 data store
``` Additional contextNo response |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/6174/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | issue | ||||||||
1110166098 | I_kwDOAMm_X85CK8pS | 6181 | [FEATURE]: Support reading/writing NetCDF4 from/to buffer (and .nc.gz) | tovogt 57705593 | open | 0 | 0 | 2022-01-21T07:59:53Z | 2022-01-21T16:07:46Z | CONTRIBUTOR | Is your feature request related to a problem?There is this veeeeery old PR from 2016 about adding gzip support to NetCDF4 when used with OpenDAP: https://github.com/pydata/xarray/pull/817 The last comment, from 2018, claimed that "netCDF4-Python does not support Python file objects". However, this limitation has been solved a long time ago in 2017 in NetCDF4 (https://github.com/Unidata/netcdf4-python/pull/652). Describe the solution you'd likeIt would be great if Describe alternatives you've consideredNo response Additional contextNo response |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/6181/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | issue |
Advanced export
JSON shape: default, array, newline-delimited, object
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]);