We should write the list of all functions and standard names attributes.
To keep the file _cf_names.py organized, we can maybe follow the gsw organization (i.e. splitting functions into density, ice, etc), e.g.
_density = (("sigma0", "sea_water_sigma_t", "kg m-3"), ("other_density_func", "std_nme", "unit"))
_ice = (("ice_func", "std_nme", "unit"),)
_func_standard_name_units = _density + _ice + ...