xarray.Dataset.argo.optic#
- Dataset.argo.optic(**kwargs)#
Optical modeling of the upper ocean
This extension provides methods to compute standard variables from optical modeling of the upper ocean.
See also
Examples
from argopy import DataFetcher dsp = DataFetcher(ds='bgc', mode='expert', params='DOWNWELLING_PAR').float(6901864).data.argo.point2profile() # or: # from argopy import ArgoFloat # dsp = ArgoFloat(6901864).open_dataset('Sprof') dsp.argo.optic.Zeu() dsp.argo.optic.Zeu(method='percentage', max_surface=5.) dsp.argo.optic.Zeu(method='KdPAR', layer_min=10., layer_maz=50.) dsp.argo.optic.Zpd() dsp.argo.optic.Z_iPAR_threshold(threshold=15.) dsp.argo.optic.DCM()