Return the results of a method applied to each field.
fl.method(name) is equivalent to fl.name().
Parameters : |
|
---|---|
Returns : |
|
See also
Examples
>>> fl.getprop('standard_name')
['air_temperature', 'eastward_wind']
>>> fl.method('getprop', 'standard_name')
['air_temperature', 'eastward_wind']
>>> fl.method('squeeze')
[None, None]