From 5953c1c232a6ec741f8eb3bfbc418d66bfe82114 Mon Sep 17 00:00:00 2001 From: "Gustavo H. X. Shiroma" Date: Sat, 9 Sep 2023 12:52:50 -0700 Subject: [PATCH] lint code --- src/rtc/mosaic_geobursts.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/rtc/mosaic_geobursts.py b/src/rtc/mosaic_geobursts.py index c7737013..b47aac6c 100644 --- a/src/rtc/mosaic_geobursts.py +++ b/src/rtc/mosaic_geobursts.py @@ -617,8 +617,8 @@ def mosaic_single_output_file(list_rtc_images, list_nlooks, mosaic_filename, raster_out = drv_out.Create(mosaic_filename, width, length, num_bands, datatype_mosaic) - raster_out.SetGeoTransform((xmin_mosaic, posting_x, 0, ymax_mosaic, 0, - posting_y)) + raster_out.SetGeoTransform((xmin_mosaic, posting_x, 0, + ymax_mosaic, 0, posting_y)) raster_out.SetProjection(wkt_projection) for i_band in range(num_bands): @@ -703,8 +703,8 @@ def mosaic_multiple_output_files( raster_out = drv_out.Create(output_file, width, length, nbands, datatype_mosaic) - raster_out.SetGeoTransform((xmin_mosaic, posting_x, 0, ymax_mosaic, 0, - posting_y)) + raster_out.SetGeoTransform((xmin_mosaic, posting_x, 0, + ymax_mosaic, 0, posting_y)) raster_out.SetProjection(wkt_projection)