home / github / issue_comments

Menu
  • GraphQL API
  • Search all tables

issue_comments: 243365966

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/992#issuecomment-243365966 https://api.github.com/repos/pydata/xarray/issues/992 243365966 MDEyOklzc3VlQ29tbWVudDI0MzM2NTk2Ng== 3404817 2016-08-30T08:14:08Z 2016-08-30T08:14:08Z CONTRIBUTOR

The above solution would not require much more than that, in set_necessary_dimensions,

def set_necessary_dimensions(self, variable): for d, l in zip(variable.dims, variable.shape): if d not in self.dimensions: self.set_dimension(d, l)

would become

def set_necessary_dimensions(self, variable): for d, l in zip(variable.dims, variable.shape): if d in self._unlimited_dimensions: l = None if d not in self.dimensions: self.set_dimension(d, l)

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