This provides a centralized method to set the dataset attributes on the data store. Parameters ---------- attributes : dict-like Dictionary of key/value (attribute name / attribute) pairs
(self, attributes)
| 539 | ) |
| 540 | |
| 541 | def set_attributes(self, attributes): |
| 542 | """ |
| 543 | This provides a centralized method to set the dataset attributes on the |
| 544 | data store. |
| 545 | |
| 546 | Parameters |
| 547 | ---------- |
| 548 | attributes : dict-like |
| 549 | Dictionary of key/value (attribute name / attribute) pairs |
| 550 | """ |
| 551 | for k, v in attributes.items(): |
| 552 | self.set_attribute(k, v) |
| 553 | |
| 554 | def set_variables(self, variables, check_encoding_set, writer, unlimited_dims=None): |
| 555 | """ |
no test coverage detected