Skip to content

Commit 90cc725

Browse files
committed
nine cell filter: restore defaults
1 parent 47ffa70 commit 90cc725

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/analysis/raster/qgsninecellfilter.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,20 @@ QgsNineCellFilter::QgsNineCellFilter( const QString& inputFile, const QString& o
3030
: mInputFile( inputFile )
3131
, mOutputFile( outputFile )
3232
, mOutputFormat( outputFormat )
33-
, mCellSizeX( 0 )
34-
, mCellSizeY( 0 )
35-
, mInputNodataValue( 0 )
36-
, mOutputNodataValue( 0 )
33+
, mCellSizeX( -1.0 )
34+
, mCellSizeY( -1.0 )
35+
, mInputNodataValue( -1.0 )
36+
, mOutputNodataValue( -1.0 )
3737
, mZFactor( 1.0 )
3838
{
3939

4040
}
4141

4242
QgsNineCellFilter::QgsNineCellFilter()
43-
: mCellSizeX( 0 )
44-
, mCellSizeY( 0 )
45-
, mInputNodataValue( 0 )
46-
, mOutputNodataValue( 0 )
43+
: mCellSizeX( -1.0 )
44+
, mCellSizeY( -1.0 )
45+
, mInputNodataValue( -1.0 )
46+
, mOutputNodataValue( -1.0 )
4747
, mZFactor( 1.0 )
4848
{
4949
}

0 commit comments

Comments
 (0)