A CF-compliant earth science data analysis library
FieldList.
__getitem__
Called to implement evaluation of f[index]
f.__getitem_(index) <==> f[index]
Field
FieldList
If index is an integer then a field construct is returned. If index is a slice then a field list is returned, which may be empty.
Examples:
>>> g = f[0] >>> g = f[-1:-4:-1] >>> g = f[2:2:2]