Skip to content

Commit 37d0621

Browse files
authored
[gdal_rasterize] Also accept doubles for -ts (OSGeo#11830)
But warn if it has a decimal part. Fixes OSGeo#11829
1 parent ebf0679 commit 37d0621

File tree

2 files changed

+46
-5
lines changed

2 files changed

+46
-5
lines changed

apps/gdal_rasterize_lib.cpp

+16-4
Original file line numberDiff line numberDiff line change
@@ -263,10 +263,12 @@ GDALRasterizeOptionsGetParser(GDALRasterizeOptions *psOptions,
263263
_("Set output file resolution in target georeferenced units."));
264264

265265
// Store later
266+
// Note: this is supposed to be int but for backward compatibility, we
267+
// use double
266268
auto &arg = group.add_argument("-ts")
267269
.metavar("<width> <height>")
268270
.nargs(2)
269-
.scan<'i', int>()
271+
.scan<'g', double>()
270272
.help(_("Set output file size in pixels and lines."));
271273

272274
argParser->add_hidden_alias_for(arg, "-outsize");
@@ -1424,10 +1426,20 @@ GDALRasterizeOptionsNew(char **papszArgv,
14241426
psOptions->bCreateOutput = true;
14251427
}
14261428

1427-
if (auto oTs = argParser->present<std::vector<int>>("-ts"))
1429+
if (auto oTs = argParser->present<std::vector<double>>("-ts"))
14281430
{
1429-
psOptions->nXSize = oTs.value()[0];
1430-
psOptions->nYSize = oTs.value()[1];
1431+
const int nXSize = static_cast<int>(oTs.value()[0]);
1432+
const int nYSize = static_cast<int>(oTs.value()[1]);
1433+
1434+
// Warn the user if the conversion to int looses precision
1435+
if (nXSize != oTs.value()[0] || nYSize != oTs.value()[1])
1436+
{
1437+
CPLError(CE_Warning, CPLE_AppDefined,
1438+
"-ts values parsed as %d %d.", nXSize, nYSize);
1439+
}
1440+
1441+
psOptions->nXSize = nXSize;
1442+
psOptions->nYSize = nYSize;
14311443

14321444
if (psOptions->nXSize <= 0 || psOptions->nYSize <= 0)
14331445
{

autotest/utilities/test_gdal_rasterize.py

+30-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ def test_gdal_rasterize_2(gdal_rasterize_path, tmp_path):
123123
output_tif = str(tmp_path / "rast2.tif")
124124

125125
# Create a raster to rasterize into.
126-
127126
target_ds = gdal.GetDriverByName("GTiff").Create(
128127
output_tif, 12, 12, 3, gdal.GDT_Byte
129128
)
@@ -418,3 +417,33 @@ def test_gdal_rasterize_8(gdal_rasterize_path, tmp_path):
418417
assert cs == 21, "Did not rasterize line data properly"
419418

420419
ds = None
420+
421+
422+
###############################################################################
423+
# Test that -ts also accepts double and warns if not integer
424+
425+
426+
@pytest.mark.require_driver("CSV")
427+
def test_gdal_rasterize_ts_1(tmp_path, gdal_rasterize_path):
428+
429+
output_tif = str(tmp_path / "rast2.tif")
430+
431+
# Create a raster to rasterize into.
432+
target_ds = gdal.GetDriverByName("GTiff").Create(
433+
output_tif, 12, 12, 3, gdal.GDT_Byte
434+
)
435+
target_ds.SetGeoTransform((0, 1, 0, 12, 0, -1))
436+
437+
# Close TIF file
438+
target_ds = None
439+
440+
# Run the algorithm.
441+
(_, err) = gdaltest.runexternal_out_and_err(
442+
f"{gdal_rasterize_path} -at -burn 200 -ts 100.0 200.0 ../alg/data/cutline.csv {output_tif}"
443+
)
444+
assert err is None or err == "", f"got error/warning {err}"
445+
446+
(_, err) = gdaltest.runexternal_out_and_err(
447+
f"{gdal_rasterize_path} -at -burn 200 -ts 100.4 200.6 ../alg/data/cutline.csv {output_tif}"
448+
)
449+
assert "-ts values parsed as 100 200" in err

0 commit comments

Comments
 (0)