issues: 325889600
This data as json
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
325889600 | MDU6SXNzdWUzMjU4ODk2MDA= | 2177 | Dataset.to_netcdf() cannot create group with engine="h5netcdf" | 1200058 | closed | 0 | 1 | 2018-05-23T22:03:07Z | 2018-05-25T00:52:07Z | 2018-05-25T00:52:07Z | NONE | Code Sample, a copy-pastable example if possible```python import pandas as pd import numpy as np import xarray as xr sample_data = np.random.uniform(size=[2,2000,10000]) x = xr.Dataset({"sample_data": (("x", "y", "z"), sample_data)}) df = pd.DataFrame({"x": [1,2,3], "y": [2,4,6]}) x["df"] = df print(x) not working:x.to_netcdf("test.h5", group="asdf", engine="h5netcdf") working:x.to_netcdf("test.h5", group="asdf", engine="netcdf4") ```
Problem descriptionh5netcdf does not allow creating groups Expected Outputshould save data to "test.h5" Output of
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/2177/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | 13221727 | issue |