Skip to content

Commit

Permalink
lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
gshiroma committed Sep 9, 2023
1 parent 61fc381 commit 5953c1c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/rtc/mosaic_geobursts.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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)

Expand Down

0 comments on commit 5953c1c

Please sign in to comment.