From 73e42c1752c420633a565d5b7849d20d255b0663 Mon Sep 17 00:00:00 2001 From: Sylvain Gaudan Date: Tue, 23 Jul 2024 10:23:23 +0200 Subject: [PATCH] fix comment --- extensions/aproc/proc/ingest/drivers/impl/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/aproc/proc/ingest/drivers/impl/utils.py b/extensions/aproc/proc/ingest/drivers/impl/utils.py index 2c016ae9..3e19f70f 100644 --- a/extensions/aproc/proc/ingest/drivers/impl/utils.py +++ b/extensions/aproc/proc/ingest/drivers/impl/utils.py @@ -61,7 +61,7 @@ def geotiff_to_jpg(input_path,widthPct,heightPct, output_path=None): options = gdal.TranslateOptions(format='JPEG', bandList=bands_list, widthPct=widthPct,heightPct=heightPct, creationOptions=['WORLDFILE=YES'], outputType=output_types[0]) - # Translate to PNG + # Translate to JPEG if output_path is not None: gdal.Translate(output_path, dataset, options=options)