WaterFrame.max(parameter)
Reference
It returns the maximum value of a parameter and the value’s indexes.
Parameters
- parameter_max: Name of the parameter (str)
Returns
- max_dict: Dictionary with the following format:
{
'<name of index 1>': <value of index 1>,
'<name of index n>': <value of index n>,
'name of parameter': <max value of parameter>
}
Example
To reproduce the example, download the NetCDF file here and save it as example.nc
in the same python script folder.
import mooda as md
path_netcdf = "example.nc" # Path of the NetCDF file
wf = md.read_nc_emodnet(path_netcdf)
min_temp = wf.min('TEMP')
print(f"Minimum value of temperature: {min_temp['TEMP']}")
print("At:")
for key, value in min_temp.items():
if key == 'TEMP':
continue
else:
print(f" - {key}: {value}")
Output:
Maximum value of temperature: 21.860001038294286
At:
- DEPTH: 1
- POSITION: 0
- TIME: 2014-10-01 00:00:00
Return to mooda.WaterFrame.