html_url,issue_url,id,node_id,user,created_at,updated_at,author_association,body,reactions,performed_via_github_app,issue
https://github.com/pydata/xarray/issues/4405#issuecomment-1111579013,https://api.github.com/repos/pydata/xarray/issues/4405,1111579013,IC_kwDOAMm_X85CQVmF,26384082,2022-04-27T23:37:46Z,2022-04-27T23:37:46Z,NONE,"In order to maintain a list of currently relevant issues, we mark issues as stale after a period of inactivity
If this issue remains relevant, please comment here or remove the `stale` label; otherwise it will be marked as closed automatically
","{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,692238160
https://github.com/pydata/xarray/issues/4405#issuecomment-686752919,https://api.github.com/repos/pydata/xarray/issues/4405,686752919,MDEyOklzc3VlQ29tbWVudDY4Njc1MjkxOQ==,6130352,2020-09-03T20:38:47Z,2020-09-03T20:38:47Z,NONE,Np! Sounds good.,"{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,692238160
https://github.com/pydata/xarray/issues/4405#issuecomment-686745468,https://api.github.com/repos/pydata/xarray/issues/4405,686745468,MDEyOklzc3VlQ29tbWVudDY4Njc0NTQ2OA==,6130352,2020-09-03T20:29:21Z,2020-09-03T20:29:21Z,NONE,Hm got it. Should I close this out then or might there be something awry given that concatenation doesn't work with U1 types?,"{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,692238160
https://github.com/pydata/xarray/issues/4405#issuecomment-686716048,https://api.github.com/repos/pydata/xarray/issues/4405,686716048,MDEyOklzc3VlQ29tbWVudDY4NjcxNjA0OA==,6130352,2020-09-03T19:40:53Z,2020-09-03T19:40:53Z,NONE,"Also out of curiosity, do you know why that's True by default? ","{""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,692238160
https://github.com/pydata/xarray/issues/4405#issuecomment-686715024,https://api.github.com/repos/pydata/xarray/issues/4405,686715024,MDEyOklzc3VlQ29tbWVudDY4NjcxNTAyNA==,6130352,2020-09-03T19:38:36Z,2020-09-03T19:38:36Z,NONE,"🤦 lol yes that works. Should `U1` characters not also be concatenated when that's True? I.e. is this expected:
```python
chrs = np.array([
['A', 'B'],
['C', 'D'],
['E', 'F'],
], dtype='U1')
ds = xr.Dataset(dict(x=(('dim0', 'dim1'), chrs)))
ds.to_zarr('/tmp/test.zarr', mode='w')
xr.open_zarr('/tmp/test.zarr', concat_characters=True).x.compute()
# No concatenation occurs
array([['A', 'B'],
['C', 'D'],
['E', 'F']], dtype='