@@ -1996,46 +1996,19 @@ def test_cog_preserve_ALPHA_PREMULTIPLIED_on_copy(tmp_vsimem):
1996
1996
1997
1997
1998
1998
@gdaltest .enable_exceptions ()
1999
- def test_cog_write_interleave_tile (tmp_vsimem ):
1999
+ @pytest .mark .parametrize ("INTERLEAVE" , ["TILE" , "BAND" ])
2000
+ def test_cog_write_interleave_tile_or_band (tmp_vsimem , INTERLEAVE ):
2000
2001
out_filename = str (tmp_vsimem / "out.tif" )
2001
2002
2002
2003
with gdal .quiet_errors ():
2003
2004
gdal .GetDriverByName ("COG" ).CreateCopy (
2004
2005
out_filename ,
2005
2006
gdal .Open ("data/rgbsmall.tif" ),
2006
- options = ["INTERLEAVE=TILE" , "BLOCKSIZE=32" ],
2007
+ options = ["INTERLEAVE=" + INTERLEAVE , "BLOCKSIZE=32" ],
2007
2008
)
2008
2009
2009
2010
ds = gdal .Open (out_filename )
2010
- assert ds .GetMetadataItem ("INTERLEAVE" , "IMAGE_STRUCTURE" ) == "TILE"
2011
- assert ds .GetMetadataItem ("LAYOUT" , "IMAGE_STRUCTURE" ) == "COG"
2012
-
2013
- assert [ds .GetRasterBand (band + 1 ).Checksum () for band in range (3 )] == [
2014
- 21212 ,
2015
- 21053 ,
2016
- 21349 ,
2017
- ]
2018
-
2019
- _check_cog (out_filename )
2020
-
2021
-
2022
- ###############################################################################
2023
- #
2024
-
2025
-
2026
- @gdaltest .enable_exceptions ()
2027
- def test_cog_write_interleave_band (tmp_vsimem ):
2028
- out_filename = str (tmp_vsimem / "out.tif" )
2029
-
2030
- with gdal .quiet_errors ():
2031
- gdal .GetDriverByName ("COG" ).CreateCopy (
2032
- out_filename ,
2033
- gdal .Open ("data/rgbsmall.tif" ),
2034
- options = ["INTERLEAVE=BAND" , "BLOCKSIZE=32" ],
2035
- )
2036
-
2037
- ds = gdal .Open (out_filename )
2038
- assert ds .GetMetadataItem ("INTERLEAVE" , "IMAGE_STRUCTURE" ) == "BAND"
2011
+ assert ds .GetMetadataItem ("INTERLEAVE" , "IMAGE_STRUCTURE" ) == INTERLEAVE
2039
2012
assert ds .GetMetadataItem ("LAYOUT" , "IMAGE_STRUCTURE" ) == "COG"
2040
2013
2041
2014
assert [ds .GetRasterBand (band + 1 ).Checksum () for band in range (3 )] == [
@@ -2052,7 +2025,8 @@ def test_cog_write_interleave_band(tmp_vsimem):
2052
2025
2053
2026
2054
2027
@gdaltest .enable_exceptions ()
2055
- def test_cog_write_interleave_tile_with_mask (tmp_vsimem ):
2028
+ @pytest .mark .parametrize ("INTERLEAVE" , ["TILE" , "BAND" ])
2029
+ def test_cog_write_interleave_with_mask (tmp_vsimem , INTERLEAVE ):
2056
2030
out_filename = str (tmp_vsimem / "out.tif" )
2057
2031
2058
2032
with gdal .quiet_errors ():
@@ -2061,11 +2035,11 @@ def test_cog_write_interleave_tile_with_mask(tmp_vsimem):
2061
2035
gdal .Translate (
2062
2036
"" , "data/stefan_full_rgba.tif" , options = "-f MEM -b 1 -b 2 -b 3 -mask 4"
2063
2037
),
2064
- options = ["INTERLEAVE=TILE" , "BLOCKSIZE=32" ],
2038
+ options = ["INTERLEAVE=" + INTERLEAVE , "BLOCKSIZE=32" ],
2065
2039
)
2066
2040
2067
2041
ds = gdal .Open (out_filename )
2068
- assert ds .GetMetadataItem ("INTERLEAVE" , "IMAGE_STRUCTURE" ) == "TILE"
2042
+ assert ds .GetMetadataItem ("INTERLEAVE" , "IMAGE_STRUCTURE" ) == INTERLEAVE
2069
2043
assert ds .GetMetadataItem ("LAYOUT" , "IMAGE_STRUCTURE" ) == "COG"
2070
2044
2071
2045
assert [ds .GetRasterBand (band + 1 ).Checksum () for band in range (3 )] == [
@@ -2078,24 +2052,25 @@ def test_cog_write_interleave_tile_with_mask(tmp_vsimem):
2078
2052
_check_cog (out_filename )
2079
2053
2080
2054
# Check that the tiles are in the expected order in the file
2081
- last_offset = 0
2082
- for y in range (2 ):
2083
- for x in range (2 ):
2084
- for band in range (3 ):
2085
- offset = int (
2086
- ds .GetRasterBand (band + 1 ).GetMetadataItem (
2087
- f"BLOCK_OFFSET_{ x } _{ y } " , "TIFF"
2055
+ if INTERLEAVE == "TILE" :
2056
+ last_offset = 0
2057
+ for y in range (2 ):
2058
+ for x in range (2 ):
2059
+ for band in range (3 ):
2060
+ offset = int (
2061
+ ds .GetRasterBand (band + 1 ).GetMetadataItem (
2062
+ f"BLOCK_OFFSET_{ x } _{ y } " , "TIFF"
2063
+ )
2088
2064
)
2065
+ assert offset > last_offset
2066
+ last_offset = offset
2067
+ offset = int (
2068
+ ds .GetRasterBand (1 )
2069
+ .GetMaskBand ()
2070
+ .GetMetadataItem (f"BLOCK_OFFSET_{ x } _{ y } " , "TIFF" )
2089
2071
)
2090
2072
assert offset > last_offset
2091
2073
last_offset = offset
2092
- offset = int (
2093
- ds .GetRasterBand (1 )
2094
- .GetMaskBand ()
2095
- .GetMetadataItem (f"BLOCK_OFFSET_{ x } _{ y } " , "TIFF" )
2096
- )
2097
- assert offset > last_offset
2098
- last_offset = offset
2099
2074
2100
2075
2101
2076
###############################################################################
0 commit comments