From b3d47595a1679f3416774de87f76d5a2b9fe65bf Mon Sep 17 00:00:00 2001 From: Timothy Middelkoop Date: Mon, 13 Dec 2021 14:53:03 -0600 Subject: [PATCH] Print more information out about the result --- landsat/combine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/landsat/combine.py b/landsat/combine.py index 0102c92..441329d 100644 --- a/landsat/combine.py +++ b/landsat/combine.py @@ -15,5 +15,5 @@ meta.update(count = 3, driver='PNG') with rasterio.open("output/result-%s.png" % source, 'w+', **meta) as output: for i in range(1, 4): - print(i) + print(source, i) output.write_band(i,rasterio.open("data/%s/%s_B%d.TIF" % (source, source, i+3)).read(1))