From 2d17f5d38e22dab06634fee069ce3f768e20acdb Mon Sep 17 00:00:00 2001 From: Jeroen Dries Date: Tue, 26 Jan 2021 10:25:34 +0100 Subject: [PATCH] EP-3687 fix doc rendering --- openeo/rest/datacube.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/openeo/rest/datacube.py b/openeo/rest/datacube.py index 3d2397bc0..710b1f729 100644 --- a/openeo/rest/datacube.py +++ b/openeo/rest/datacube.py @@ -1201,15 +1201,17 @@ def resolution_merge(self, high_resolution_bands: List[str], low_resolution_band Resolution merging algorithms try to improve the spatial resolution of lower resolution bands (e.g. Sentinel-2 20M) based on higher resolution bands. (e.g. Sentinel-2 10M). - `Pansharpening explained: `_ + External references: + + `Pansharpening explained `_ `Example publication: 'Improving the Spatial Resolution of Land Surface Phenology by Fusing Medium- and Coarse-Resolution Inputs' `_ - @param high_resolution_bands: A list of band names to use as 'high-resolution' band. Either the unique band name (metadata field `name` in bands) or one of the common band names (metadata field `common_name` in bands). If unique band name and common name conflict, the unique band name has higher priority. The order of the specified array defines the order of the bands in the data cube. If multiple bands match a common name, all matched bands are included in the original order. These bands will remain unmodified. - @param low_resolution_bands: A list of band names for which the spatial resolution should be increased. Either the unique band name (metadata field `name` in bands) or one of the common band names (metadata field `common_name` in bands). If unique band name and common name conflict, the unique band name has higher priority. The order of the specified array defines the order of the bands in the data cube. If multiple bands match a common name, all matched bands are included in the original order. These bands will be modified by the process. - @param method: The method to use. The supported algorithms can vary between back-ends. Set to `null` (the default) to allow the back-end to choose, which will improve portability, but reduce reproducibility.. - @return: A datacube with the same bands and metadata as the input, but algorithmically increased spatial resolution for the selected bands. + :param high_resolution_bands: A list of band names to use as 'high-resolution' band. Either the unique band name (metadata field `name` in bands) or one of the common band names (metadata field `common_name` in bands). If unique band name and common name conflict, the unique band name has higher priority. The order of the specified array defines the order of the bands in the data cube. If multiple bands match a common name, all matched bands are included in the original order. These bands will remain unmodified. + :param low_resolution_bands: A list of band names for which the spatial resolution should be increased. Either the unique band name (metadata field `name` in bands) or one of the common band names (metadata field `common_name` in bands). If unique band name and common name conflict, the unique band name has higher priority. The order of the specified array defines the order of the bands in the data cube. If multiple bands match a common name, all matched bands are included in the original order. These bands will be modified by the process. + :param method: The method to use. The supported algorithms can vary between back-ends. Set to `null` (the default) to allow the back-end to choose, which will improve portability, but reduce reproducibility.. + :return: A datacube with the same bands and metadata as the input, but algorithmically increased spatial resolution for the selected bands. """ return self.process('resolution_merge', { 'data': THIS,