cf.NetCDFArray.get_groups¶
-
NetCDFArray.
get_groups
(address)[source]¶ The netCDF4 group structure of a netCDF variable.
New in version (cfdm): 1.8.6.0
- Parameters
- Returns
Examples
>>> n.get_groups('tas') ([], 'tas')
>>> n.get_groups('/tas') ([], 'tas')
>>> n.get_groups('/data/model/tas') (['data', 'model'], 'tas')
>>> n.get_groups(9) ([], 9)