home / github

Menu
  • Search all tables
  • GraphQL API

issues

Table actions
  • GraphQL API for issues

3 rows where milestone = 1368762 and type = "issue" sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: author_association, created_at (date), updated_at (date), closed_at (date)

type 1

  • issue · 3 ✖

state 1

  • closed 3

repo 1

  • xarray 3
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
125386091 MDU6SXNzdWUxMjUzODYwOTE= 709 Dataset.to_netcdf() fails to interpret 'encoding' option tkanmae 305196 closed 0   0.7.0 1368762 6 2016-01-07T12:35:39Z 2019-02-08T15:11:41Z 2016-01-08T06:22:47Z CONTRIBUTOR      

Attempting to save a dataset with compression

python ds.to_netcdf('demo.nc', mode='w', encoding={'data': {'zlib': True}})

raises an exception as follows::

```

ValueError Traceback (most recent call last) <ipython-input-7-ec637fd612fd> in <module>() ----> 1 ds.to_netcdf('demo.nc', mode='w', encoding={'data': {'zlib': True}})

/Users/takeshi/Developer/xray/xray/core/dataset.py in to_netcdf(self, path, mode, format, group, engine, encoding) 782 from ..backends.api import to_netcdf 783 return to_netcdf(self, path, mode, format=format, group=group, --> 784 engine=engine, encoding=encoding) 785 786 dump = utils.function_alias(to_netcdf, 'dump')

/Users/takeshi/Developer/xray/xray/backends/api.py in to_netcdf(dataset, path, mode, format, group, engine, writer, encoding) 352 store = store_cls(path, mode, format, group, writer) 353 try: --> 354 dataset.dump_to_store(store, sync=sync, encoding=encoding) 355 if isinstance(path, BytesIO): 356 return path.getvalue()

/Users/takeshi/Developer/xray/xray/core/dataset.py in dump_to_store(self, store, encoder, sync, encoding) 728 variables, attrs = encoder(variables, attrs) 729 --> 730 store.store(variables, attrs, check_encoding) 731 if sync: 732 store.sync()

/Users/takeshi/Developer/xray/xray/backends/common.py in store(self, variables, attributes, check_encoding_set) 226 cf_variables, cf_attrs = cf_encoder(variables, attributes) 227 AbstractWritableDataStore.store(self, cf_variables, cf_attrs, --> 228 check_encoding_set)

/Users/takeshi/Developer/xray/xray/backends/common.py in store(self, variables, attributes, check_encoding_set) 201 if not (k in neccesary_dims and 202 is_trivial_index(v))) --> 203 self.set_variables(variables, check_encoding_set) 204 205 def set_attributes(self, attributes):

/Users/takeshi/Developer/xray/xray/backends/common.py in set_variables(self, variables, check_encoding_set) 211 name = _encode_variable_name(vn) 212 check = vn in check_encoding_set --> 213 target, source = self.prepare_variable(name, v, check) 214 self.writer.add(source, target) 215

/Users/takeshi/Developer/xray/xray/backends/netCDF4_.py in prepare_variable(self, name, variable, check_encoding) 259 260 encoding = _extract_nc4_encoding(variable, --> 261 raise_on_invalid=check_encoding) 262 nc4_var = self.ds.createVariable( 263 varname=name,

/Users/takeshi/Developer/xray/xray/backends/netCDF4_.py in _extract_nc4_encoding(variable, raise_on_invalid, lsd_okay, backend) 160 if invalid: 161 raise ValueError('unexpected encoding parameters for %r backend: ' --> 162 ' %r' % (backend, invalid)) 163 else: 164 for k in list(encoding):

ValueError: unexpected encoding parameters for 'netCDF4' backend: ['z', 'l', 'i', 'b'] ```

{
    "url": "https://api.github.com/repos/pydata/xarray/issues/709/reactions",
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  completed xarray 13221727 issue
124867009 MDU6SXNzdWUxMjQ4NjcwMDk= 704 Complete renaming xray -> xarray shoyer 1217238 closed 0   0.7.0 1368762 25 2016-01-05T00:06:37Z 2016-01-21T04:51:46Z 2016-01-21T04:51:46Z MEMBER      

This is a blocker for the 0.7 release.

{
    "url": "https://api.github.com/repos/pydata/xarray/issues/704/reactions",
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  completed xarray 13221727 issue
109434899 MDU6SXNzdWUxMDk0MzQ4OTk= 602 latest docs are broken jhamman 2443309 closed 0 shoyer 1217238 0.7.0 1368762 4 2015-10-02T05:48:21Z 2016-01-02T01:31:17Z 2016-01-02T01:31:17Z MEMBER      

Looking at the doc build from tonight, something happened and netCDF4 isn't getting picked up. All the docs depending on the netCDF4 package are broken (e.g. plotting, IO, etc.).

@shoyer - You may be able to just resubmit the doc build, or maybe we need to fix something.

{
    "url": "https://api.github.com/repos/pydata/xarray/issues/602/reactions",
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  completed xarray 13221727 issue

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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]);
Powered by Datasette · Queries took 23.574ms · About: xarray-datasette