19 #include <QMessageBox>
35 , mLastRectangleValid( false )
36 , mBandsChanged( false )
40 connect( mUserDefinedRadioButton, &QRadioButton::toggled,
this, &QgsRasterMinMaxWidget::mUserDefinedRadioButton_toggled );
41 connect( mMinMaxRadioButton, &QRadioButton::toggled,
this, &QgsRasterMinMaxWidget::mMinMaxRadioButton_toggled );
42 connect( mStdDevRadioButton, &QRadioButton::toggled,
this, &QgsRasterMinMaxWidget::mStdDevRadioButton_toggled );
43 connect( mCumulativeCutRadioButton, &QRadioButton::toggled,
this, &QgsRasterMinMaxWidget::mCumulativeCutRadioButton_toggled );
44 connect( mStatisticsExtentCombo,
static_cast<void ( QComboBox::* )(
int )
>( &QComboBox::currentIndexChanged ),
this, &QgsRasterMinMaxWidget::mStatisticsExtentCombo_currentIndexChanged );
45 connect( mCumulativeCutLowerDoubleSpinBox,
static_cast < void ( QDoubleSpinBox::* )(
double )
> ( &QDoubleSpinBox::valueChanged ),
this, &QgsRasterMinMaxWidget::mCumulativeCutLowerDoubleSpinBox_valueChanged );
46 connect( mCumulativeCutUpperDoubleSpinBox,
static_cast < void ( QDoubleSpinBox::* )(
double )
> ( &QDoubleSpinBox::valueChanged ),
this, &QgsRasterMinMaxWidget::mCumulativeCutUpperDoubleSpinBox_valueChanged );
47 connect( mStdDevSpinBox,
static_cast < void ( QDoubleSpinBox::* )(
double )
> ( &QDoubleSpinBox::valueChanged ),
this, &QgsRasterMinMaxWidget::mStdDevSpinBox_valueChanged );
48 connect( cboAccuracy,
static_cast<void ( QComboBox::* )(
int )
>( &QComboBox::currentIndexChanged ),
this, &QgsRasterMinMaxWidget::cboAccuracy_currentIndexChanged );
66 mBandsChanged = bands != mBands;
72 const int nExtentIdx = mStatisticsExtentCombo->currentIndex();
76 if ( mLayer && mCanvas )
86 mUserDefinedRadioButton->setChecked(
true );
90 void QgsRasterMinMaxWidget::mUserDefinedRadioButton_toggled(
bool toggled )
92 mStatisticsExtentCombo->setEnabled( !toggled );
93 cboAccuracy->setEnabled( !toggled );
102 mUserDefinedRadioButton->setChecked(
true );
106 mMinMaxRadioButton->setChecked(
true );
110 mStdDevRadioButton->setChecked(
true );
114 mCumulativeCutRadioButton->setChecked(
true );
144 if ( mMinMaxRadioButton->isChecked() )
146 else if ( mStdDevRadioButton->isChecked() )
148 else if ( mCumulativeCutRadioButton->isChecked() )
153 switch ( mStatisticsExtentCombo->currentIndex() )
167 if ( cboAccuracy->currentIndex() == 0 )
173 mCumulativeCutLowerDoubleSpinBox->value() / 100.0 );
175 mCumulativeCutUpperDoubleSpinBox->value() / 100.0 );
191 if ( mLastRectangleValid && mLastRectangle == myExtent &&
192 mLastMinMaxOrigin == newMinMaxOrigin &&
195 QgsDebugMsg( QStringLiteral(
"Does not need to redo statistics computations" ) );
199 mLastRectangleValid =
true;
200 mLastRectangle = myExtent;
201 mLastMinMaxOrigin = newMinMaxOrigin;
202 mBandsChanged =
false;
204 const auto constMBands = mBands;
205 for (
int myBand : constMBands )
207 QgsDebugMsg( QStringLiteral(
"myBand = %1" ).arg( myBand ) );
212 double myMin = std::numeric_limits<double>::quiet_NaN();
213 double myMax = std::numeric_limits<double>::quiet_NaN();
215 bool updateMinMax =
false;
216 if ( mCumulativeCutRadioButton->isChecked() )
219 double myLower = mCumulativeCutLowerDoubleSpinBox->value() / 100.0;
220 double myUpper = mCumulativeCutUpperDoubleSpinBox->value() / 100.0;
223 else if ( mMinMaxRadioButton->isChecked() )
231 else if ( mStdDevRadioButton->isChecked() )
235 double myStdDev = mStdDevSpinBox->value();
236 myMin = myRasterBandStats.
mean - ( myStdDev * myRasterBandStats.
stdDev );
237 myMax = myRasterBandStats.
mean + ( myStdDev * myRasterBandStats.
stdDev );
241 emit
load( myBand, myMin, myMax );
Map canvas is a class for displaying all GIS data types on a canvas.
const QgsMapSettings & mapSettings() const
Gets access to properties used for map rendering.
QgsRectangle extent() const
Returns the current zoom extent of the map canvas.
QgsRectangle outputExtentToLayerExtent(const QgsMapLayer *layer, QgsRectangle extent) const
transform bounding box from output CRS to layer's CRS
The RasterBandStats struct is a container for statistics about a single raster band.
double mean
The mean cell value for the band. NO_DATA values are excluded.
double stdDev
The standard deviation of the cell values.
double minimumValue
The minimum cell value in the raster band.
double maximumValue
The maximum cell value in the raster band.
virtual void cumulativeCut(int bandNo, double lowerCount, double upperCount, double &lowerValue, double &upperValue, const QgsRectangle &extent=QgsRectangle(), int sampleSize=0)
Find values for cumulative pixel count cut.
virtual int bandCount() const =0
Gets number of bands.
virtual QgsRasterBandStats bandStatistics(int bandNo, int stats=QgsRasterBandStats::All, const QgsRectangle &extent=QgsRectangle(), int sampleSize=0, QgsRasterBlockFeedback *feedback=nullptr)
Returns the band statistics.
Represents a raster layer.
QgsRasterDataProvider * dataProvider() override
Returns the source data provider.
This class describes the origin of min/max values.
void setExtent(QgsRasterMinMaxOrigin::Extent extent)
Sets the extent.
QgsRasterMinMaxOrigin::StatAccuracy statAccuracy() const
Returns the raster statistic accuracy.
double cumulativeCutLower() const
Returns the lower bound of cumulative cut method (between 0 and 1).
@ Estimated
Approximated statistics.
QgsRasterMinMaxOrigin::Limits limits() const
Returns the raster limits.
double stdDevFactor() const
Returns the factor f so that the min/max range is [ mean - f * stddev , mean + f * stddev ].
void setLimits(QgsRasterMinMaxOrigin::Limits limits)
Sets the limits.
void setStatAccuracy(QgsRasterMinMaxOrigin::StatAccuracy accuracy)
Sets the statistics accuracy.
@ UpdatedCanvas
Constantly updated extent of the canvas is used to compute statistics.
@ CurrentCanvas
Current extent of the canvas (at the time of computation) is used to compute statistics.
@ WholeRaster
Whole raster is used to compute statistics.
void setCumulativeCutUpper(double val)
Sets the upper bound of cumulative cut method (between 0 and 1).
void setStdDevFactor(double val)
Sets the factor f so that the min/max range is [ mean - f * stddev , mean + f * stddev ].
double cumulativeCutUpper() const
Returns the upper bound of cumulative cut method (between 0 and 1).
void setCumulativeCutLower(double val)
Sets the lower bound of cumulative cut method (between 0 and 1).
@ StdDev
Range is [ mean - stdDevFactor() * stddev, mean + stdDevFactor() * stddev ].
@ MinMax
Real min-max values.
@ CumulativeCut
Range is [ min + cumulativeCutLower() * (max - min), min + cumulativeCutUpper() * (max - min) ].
QgsRasterMinMaxOrigin::Extent extent() const
Returns the raster extent.
A rectangle specified with double values.
#define QgsDebugMsgLevel(str, level)