View on GitHub

mooda

Module for Ocean Observatory Data Analysis - Python package

WaterFrame.min(parameter)

Reference

It returns the minimum value of a parameter and the value’s indexes.

Parameters

Returns

Example

To reproduce the example, download the NetCDF file here and save it as example.nc in the same pyhon 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:

Minimum value of temperature: 20.0500009523239
At:
  - DEPTH: 1
  - POSITION: 0
  - TIME: 2014-10-30 12:00:00

Return to mooda.WaterFrame.