|
1 | 1 | #!python |
2 | 2 | #cython: language_level=3 |
3 | 3 |
|
4 | | -__copyright__ = "(C) 2020 Science and Technology Facilities Council" |
| 4 | +__copyright__ = "(C) 2019-2021 Science and Technology Facilities Council" |
5 | 5 | __license__ = "BSD - see LICENSE file in top-level directory" |
6 | 6 | __authors__ = "Neil Massey" |
7 | 7 |
|
@@ -248,9 +248,9 @@ cdef class CFAGroup: |
248 | 248 | | CFAGroup | |
249 | 249 | +----------------------------------------------------------------------+ |
250 | 250 | | CFADataset dataset | |
251 | | - | cfa_dims dict<CFADim> | |
252 | 251 | | grp_name string | |
253 | 252 | | metadata dict<mixed> | |
| 253 | + | cfa_dims dict<CFADimension> | |
254 | 254 | | cfa_vars dict<CFAVariable> | |
255 | 255 | +----------------------------------------------------------------------+ |
256 | 256 | | CFAVariable createVariable(string var_name, | |
@@ -641,7 +641,7 @@ cdef class CFAVariable: |
641 | 641 | | pmshape array<int> | |
642 | 642 | | base string | |
643 | 643 | | nc_partition_group object | |
644 | | - | subarry_shape np.ndarray | |
| 644 | + | subarray_shape np.ndarray | |
645 | 645 | +----------------------------------------------------------------------+ |
646 | 646 | | string getName() | |
647 | 647 | | CFAGroup getGroup() | |
@@ -1222,8 +1222,8 @@ cdef class CFAVariable: |
1222 | 1222 | self.metadata[md_key] = cfa_metadata[md_key] |
1223 | 1223 |
|
1224 | 1224 | cpdef dict dump(CFAVariable self): |
1225 | | - """Return the a dictionary representation of the CFAVariable so it can be |
1226 | | - added to the metadata for the variable later. |
| 1225 | + """Return the a dictionary representation of the CFAVariable so it can |
| 1226 | + be added to the metadata for the variable later. |
1227 | 1227 | Returns: |
1228 | 1228 | dict: the JSON representation of the CFAVariable |
1229 | 1229 | """ |
|
0 commit comments