From f0423ab6fa8585ac7a48c7bb54016c35b234c47d Mon Sep 17 00:00:00 2001 From: Aureliana Barghini Date: Tue, 26 Apr 2022 10:41:38 +0200 Subject: [PATCH] fix documentation --- sarsen/apps.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/sarsen/apps.py b/sarsen/apps.py index ba3fdef..db53eed 100644 --- a/sarsen/apps.py +++ b/sarsen/apps.py @@ -69,12 +69,11 @@ def terrain_correction( :param orbit_group: overrides the orbit group name :param calibration_group: overridez the calibration group name :param output_urlpath: output path or url - :param correct_radiometry: default `None`. It can take the values: `None`, 'gamma_bilinear', 'gamma_nearest'. - If `correct_radiometry=None` the radiometric terrain correction is not applied. - `correct_radiometry=gamma_bilinear` applies the gamma flattening - classic algorithm using a bilinear interpolation to compute the weights. - If `correct_radiometry=gamma_nearest` applies the gamma flattening using nearest instead of - bilinear interpolation to compute the weights, 'gamma_nearest' significantly reduces the processing + :param correct_radiometry: default `None`. If `correct_radiometry=None`the radiometric terrain + correction is not applied. `correct_radiometry=gamma_bilinear` applies the gamma flattening classic + algorithm using bilinear interpolation to compute the weights. `correct_radiometry=gamma_nearest` + applies the gamma flattening using nearest neighbours instead of bilinear interpolation. + 'gamma_nearest' significantly reduces the processing time :param interp_method: interpolation method for product resampling. The interpolation methods are the methods supported by ``xarray.DataArray.interp`` :param multilook: multilook factor. If `None` the multilook is not applied