issues
5 rows where user = 12465248 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: comments, 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1659078413 | PR_kwDOAMm_X85N2gst | 7739 | `ds.to_dict` with data as arrays, not lists | jmccreight 12465248 | closed | 0 | 11 | 2023-04-07T18:36:39Z | 2023-04-28T14:23:02Z | 2023-04-28T14:23:02Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/7739 |
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/7739/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull | |||||
1033950863 | I_kwDOAMm_X849oNaP | 5888 | open_[mf]dataset ds.encoding['source'] for pathlib.Path? | jmccreight 12465248 | closed | 0 | 2 | 2021-10-22T21:10:23Z | 2022-09-21T17:11:58Z | 2022-09-13T07:17:39Z | CONTRIBUTOR | The question: do you want to support pathlib objects arriving at ds.encoding['source']? What happened: If you pass a pathlib object to open_[mf]dataset, the ds.encoding['source'] is not set. What you expected to happen: I believe that Paths used to work and now they dont, which greatly confused me. Minimal Complete Verifiable Example: ```python (hv) jamesmcc@panama[523]:~> cat enc_source_pathlib.py import numpy as np from pathlib import Path import xarray as xr inspiration in the testhttps://github.com/pydata/xarray/blob/97887fd9bbfb2be58b491155c6bb08498ce294ca/xarray/tests/test_backends.py#L4918rnddata = np.random.randn(10) ds = xr.Dataset({"foo": ("x", rnddata)}) file_name = "rnddata.nc" ds.to_netcdf(file_name) with xr.open_dataset(file_name) as ds: assert ds.encoding["source"] == file_name with xr.open_dataset(Path(file_name)) as ds: print(ds.encoding) assert ds.encoding["source"] == file_name (hv) jamesmcc@panama[524]:~/> ipython enc_source_pathlib.py
/Users/jamesmcc/python_libs/xarray/xarray/backends/cfgrib_.py:28: UserWarning: Failed to load cfgrib - most likely there is a problem accessing the ecCodes library. Try KeyError Traceback (most recent call last) ~/python_libs/xarray/enc_source_pathlib.py in <module> 16 with xr.open_dataset(Path(file_name)) as ds: 17 print(ds.encoding) ---> 18 assert ds.encoding["source"] == file_name 19 20 KeyError: 'source' ``` I scanned git blame, but didnt turn up any obviously undesired changes. |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/5888/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | xarray 13221727 | issue | ||||||
440254754 | MDExOlB1bGxSZXF1ZXN0Mjc1ODc0NDcw | 2941 | Contiguous store with unlim dim bug fix | jmccreight 12465248 | closed | 0 | 8 | 2019-05-03T23:13:38Z | 2019-06-04T20:41:51Z | 2019-06-04T20:41:50Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/2941 |
Not sure this needs documentation else where... |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/2941/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull | |||||
433490490 | MDU6SXNzdWU0MzM0OTA0OTA= | 2895 | Set/preserve the character array dimension name | jmccreight 12465248 | closed | 0 | 2 | 2019-04-15T21:40:33Z | 2019-04-19T22:50:36Z | 2019-04-19T22:50:36Z | CONTRIBUTOR | This is a new feature proposal not a bug. I'll open a PR against this issue momentarily, it consists of 4 lines of new code. I've found it highly annoying that one can not set the name of the character array dimension. Looking at the code, I basically found what I expected, except for what I added. Summary: Using a variable's variable.encoding one can decode the name into This shows how it works and the behavoir it changes: ``` # Using the proposed changes....user@machine-session-1[1]:~/Downloads> ipythonimport xarray as xa char_arr = ['abc', 'def', 'ghi'] ds = xa.Dataset(data_vars={'char_arr': char_arr}) ds.char_arr.encoding.update({"dtype": "S1"}) Default/current behaviords.to_netcdf('char_arr_string.nc') New functionality - name the character dimension.ds.char_arr.encoding.update({"char_dim_name": "char_dim"}) ds.to_netcdf('char_arr_named.nc') user@machine-session-2[1]:~/Downloads> ncdump -h char_arr_string.ncnetcdf char_arr_string {dimensions:char_arr = 3 ;string3 = 3 ;variables:char char_arr(char_arr, string3) ;char_arr:_Encoding = "utf-8" ;}user@machine-session-2[2]:~/Downloads> ncdump -h char_arr_named.ncnetcdf char_arr_named {dimensions:char_arr = 3 ;char_dim = 3 ;variables:char char_arr(char_arr, char_dim) ;char_arr:_Encoding = "utf-8" ;}New functionality - when decoding, preserve the character dimension name in the variable encoding for... encoding.ds_read = xa.open_dataset('char_arr_named.nc') ds_read.char_arr.encoding Out[4]:{'_Encoding': 'utf-8','char_dim_name': 'char_dim','chunksizes': None,'complevel': 0,'contiguous': True,'dtype': dtype('S1'),'fletcher32': False,'original_shape': (3, 3),'shuffle': False,'source': '/Users/james/Downloads/char_arr_named.nc','zlib': False}ds_read.to_netcdf('char_arr_named_2.nc') exit() user@machine-session-1[2]:~/Downloads> ncdump -h char_arr_named_2.ncnetcdf char_arr_named_2 {dimensions:char_arr = 3 ;char_dim = 3 ;variables:char char_arr(char_arr, char_dim) ;char_arr:_Encoding = "utf-8" ;}user@machine-session-1[3]:~/Downloads> pip uninstall -y xarrayuser@machine-session-1[4]:~/Downloads> pip install xarrayuser@machine-session-1[5]:~/Downloads> ipythonThe old behavior... does not preserved the char dim name.import xarray as xa ds_read = xa.open_dataset('char_arr_named.nc') ds_read.char_arr.encoding Out[4]:{'_Encoding': 'utf-8','chunksizes': None,'complevel': 0,'contiguous': True,'dtype': dtype('S1'),'fletcher32': False,'original_shape': (3, 3),'shuffle': False,'source': '/Users/james/Downloads/char_arr_named.nc','zlib': False}ds_read.to_netcdf('char_arr_string_2.nc') user@machine-session-2[6]:~/Downloads> ncdump -y char_arr_string_2.ncnetcdf char_arr_string_2 {dimensions:char_arr = 3 ;string3 = 3 ;variables:char char_arr(char_arr, string3) ;char_arr:_Encoding = "utf-8" ;}``` |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/2895/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | xarray 13221727 | issue | ||||||
433490801 | MDExOlB1bGxSZXF1ZXN0MjcwNjgyMTQ1 | 2896 | Handle the character array dim name | jmccreight 12465248 | closed | 0 | 10 | 2019-04-15T21:41:36Z | 2019-04-19T22:48:54Z | 2019-04-19T17:52:58Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/2896 | See #2895 |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/2896/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull |
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]);