Skip to content

Commit 3fff872

Browse files
committed
Update test result
1 parent 67c20d5 commit 3fff872

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/plugins/processing/tests/GdalAlgorithmsTest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ def testGridInverseDistanceNearestNeighbour(self):
561561
alg.getConsoleCommands({'INPUT': source,
562562
'OUTPUT': 'd:/temp/check.jpg'}, context, feedback),
563563
['gdal_grid',
564-
'-l points -a invdistnn:power=2.0:smothing=0.0:radius=1.0:max_points=0:min_points=0:nodata=0.0 -ot Float32 -of JPEG ' +
564+
'-l points -a invdistnn:power=2.0:smothing=0.0:radius=1.0:max_points=12:min_points=0:nodata=0.0 -ot Float32 -of JPEG ' +
565565
source + ' ' +
566566
'd:/temp/check.jpg'])
567567
# with NODATA value
@@ -570,7 +570,7 @@ def testGridInverseDistanceNearestNeighbour(self):
570570
'NODATA': 9999,
571571
'OUTPUT': 'd:/temp/check.jpg'}, context, feedback),
572572
['gdal_grid',
573-
'-l points -a invdistnn:power=2.0:smothing=0.0:radius=1.0:max_points=0:min_points=0:nodata=9999.0 -ot Float32 -of JPEG ' +
573+
'-l points -a invdistnn:power=2.0:smothing=0.0:radius=1.0:max_points=12:min_points=0:nodata=9999.0 -ot Float32 -of JPEG ' +
574574
source + ' ' +
575575
'd:/temp/check.jpg'])
576576
# with "0" NODATA value
@@ -579,7 +579,7 @@ def testGridInverseDistanceNearestNeighbour(self):
579579
'NODATA': 0,
580580
'OUTPUT': 'd:/temp/check.jpg'}, context, feedback),
581581
['gdal_grid',
582-
'-l points -a invdistnn:power=2.0:smothing=0.0:radius=1.0:max_points=0:min_points=0:nodata=0.0 -ot Float32 -of JPEG ' +
582+
'-l points -a invdistnn:power=2.0:smothing=0.0:radius=1.0:max_points=12:min_points=0:nodata=0.0 -ot Float32 -of JPEG ' +
583583
source + ' ' +
584584
'd:/temp/check.jpg'])
585585

0 commit comments

Comments
 (0)