cf.Index.nc_set_dimension_groups

Index.nc_set_dimension_groups(groups)[source]

Set the netCDF dimension group hierarchy.

The group hierarchy is defined by the netCDF name. Groups are delimited by / (slash) characters in the netCDF name. The groups are returned, in hierarchical order, as a sequence of strings. If the name is not set, or contains no / characters then an empty sequence is returned, signifying the root group.

An alternative technique for setting the group structure is to set the netCDF dimension name, with nc_set_dimension, with the group structure delimited by / characters.

New in version (cfdm): 1.8.6

Parameters
groups: sequence of str

The new group structure.

Returns
tuple of str

The group structure prior to being reset.

Examples

>>> f.nc_set_dimension('time')
>>> f.nc_dimension_groups()
()
>>> f.nc_set_dimension_groups(['forecast', 'model'])
>>> f.nc_dimension_groups()
('forecast', 'model')
>>> f.nc_get_dimension()
'/forecast/model/time'
>>> f.nc_clear_dimension_groups()
('forecast', 'model')
>>> f.nc_get_dimension()
'time'
>>> f.nc_set_dimension('/forecast/model/time')
>>> f.nc_dimension_groups()
('forecast', 'model')
>>> f.nc_del_dimension('/forecast/model/time')
'/forecast/model/time'
>>> f.nc_dimension_groups()
()