cf.Field.ndim¶
-
Field.
ndim
¶ The number of data dimensions.
Only dimensions that correspond to domain axis constructs are included.
Examples
>>> f.shape (73, 96) >>> f.ndim 2 >>> f.size 7008
>>> f.shape (73, 1, 96) >>> f.ndim 3 >>> f.size 7008
>>> f.shape (73,) >>> f.ndim 1 >>> f.size 73
>>> f.shape () >>> f.ndim 0 >>> f.size 1