Error class used when we can't safely guess a dimension name.
| 89 | |
| 90 | |
| 91 | class MissingDimensionsError(ValueError): |
| 92 | """Error class used when we can't safely guess a dimension name.""" |
| 93 | |
| 94 | # inherits from ValueError for backward compatibility |
| 95 | # TODO: move this to an xarray.exceptions module? |
| 96 | |
| 97 | |
| 98 | def as_variable( |
no outgoing calls
no test coverage detected
searching dependent graphs…