shortcut for returning metadata with shape information, if defined
(self)
| 643 | pass |
| 644 | |
| 645 | def _data_and_metadata(self): |
| 646 | """shortcut for returning metadata with shape information, if defined""" |
| 647 | if self.metadata: |
| 648 | return self.data, deepcopy(self.metadata) |
| 649 | else: |
| 650 | return self.data |
| 651 | |
| 652 | def reload(self): |
| 653 | """Reload the raw data from file or URL.""" |
nothing calls this directly
no outgoing calls
no test coverage detected