home / github / issue_comments

Menu
  • GraphQL API
  • Search all tables

issue_comments: 273333969

This data as json

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/1215#issuecomment-273333969 https://api.github.com/repos/pydata/xarray/issues/1215 273333969 MDEyOklzc3VlQ29tbWVudDI3MzMzMzk2OQ== 10050469 2017-01-17T23:25:30Z 2017-01-17T23:25:30Z MEMBER

An even simpler example:

```python import os import xarray as xr

path = 'test.nc' if os.path.exists(path): os.remove(path)

ds = xr.Dataset() ds['dim'] = ('dim', [0, 1, 2]) ds['var1'] = ('dim', [10, 11, 12]) ds['var2'] = ('dim', [13, 14, 15])

ds[['var1']].to_netcdf(path) ds[['var2']].to_netcdf(path, 'a') ```

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  201428093
Powered by Datasette · Queries took 1.845ms · About: xarray-datasette