QGIS API Documentation 3.43.0-Master (3ee7834ace6)
qgsrasteranalysisutils.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsrasteranalysisutils.cpp
3 ---------------------
4 Date : June 2018
5 Copyright : (C) 2018 by Nyall Dawson
6 Email : nyall dot dawson at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
17
18#include "qgsfeedback.h"
19#include "qgsrasterblock.h"
20#include "qgsrasteriterator.h"
21#include "qgsgeos.h"
23#include <map>
24#include <unordered_map>
25#include <unordered_set>
26#include <cmath>
28
29void QgsRasterAnalysisUtils::cellInfoForBBox( const QgsRectangle &rasterBBox, const QgsRectangle &featureBBox, double cellSizeX, double cellSizeY, int &nCellsX, int &nCellsY, int rasterWidth, int rasterHeight, QgsRectangle &rasterBlockExtent )
30{
31 //get intersecting bbox
32 const QgsRectangle intersectBox = rasterBBox.intersect( featureBBox );
33 if ( intersectBox.isEmpty() )
34 {
35 nCellsX = 0;
36 nCellsY = 0;
37 rasterBlockExtent = QgsRectangle();
38 return;
39 }
40
41 //get offset in pixels in x- and y- direction
42 const int offsetX = static_cast<int>( std::floor( ( intersectBox.xMinimum() - rasterBBox.xMinimum() ) / cellSizeX ) );
43 const int offsetY = static_cast<int>( std::floor( ( rasterBBox.yMaximum() - intersectBox.yMaximum() ) / cellSizeY ) );
44
45 const int maxColumn = static_cast<int>( std::floor( ( intersectBox.xMaximum() - rasterBBox.xMinimum() ) / cellSizeX ) ) + 1;
46 const int maxRow = static_cast<int>( std::floor( ( rasterBBox.yMaximum() - intersectBox.yMinimum() ) / cellSizeY ) ) + 1;
47
48 nCellsX = maxColumn - offsetX;
49 nCellsY = maxRow - offsetY;
50
51 //avoid access to cells outside of the raster (may occur because of rounding)
52 nCellsX = std::min( offsetX + nCellsX, rasterWidth ) - offsetX;
53 nCellsY = std::min( offsetY + nCellsY, rasterHeight ) - offsetY;
54
55 rasterBlockExtent = QgsRectangle( rasterBBox.xMinimum() + offsetX * cellSizeX, rasterBBox.yMaximum() - offsetY * cellSizeY, rasterBBox.xMinimum() + ( nCellsX + offsetX ) * cellSizeX, rasterBBox.yMaximum() - ( nCellsY + offsetY ) * cellSizeY );
56}
57
58void QgsRasterAnalysisUtils::statisticsFromMiddlePointTest( QgsRasterInterface *rasterInterface, int rasterBand, const QgsGeometry &poly, int nCellsX, int nCellsY, double cellSizeX, double cellSizeY, const QgsRectangle &rasterBBox, const std::function<void( double, const QgsPointXY & )> &addValue, bool skipNodata )
59{
60 auto polyEngine = std::make_unique<QgsGeos>( poly.constGet() );
61 if ( !polyEngine )
62 {
63 return;
64 }
65 polyEngine->prepareGeometry();
66
67 QgsRasterIterator iter( rasterInterface );
68 iter.startRasterRead( rasterBand, nCellsX, nCellsY, rasterBBox );
69
70 std::unique_ptr<QgsRasterBlock> block;
71 int iterLeft = 0;
72 int iterTop = 0;
73 int iterCols = 0;
74 int iterRows = 0;
75 QgsRectangle blockExtent;
76 bool isNoData = false;
77 while ( iter.readNextRasterPart( rasterBand, iterCols, iterRows, block, iterLeft, iterTop, &blockExtent ) )
78 {
79 double cellCenterY = blockExtent.yMaximum() - 0.5 * cellSizeY;
80
81 for ( int row = 0; row < iterRows; ++row )
82 {
83 double cellCenterX = blockExtent.xMinimum() + 0.5 * cellSizeX;
84 for ( int col = 0; col < iterCols; ++col )
85 {
86 const double pixelValue = block->valueAndNoData( row, col, isNoData );
87 if ( validPixel( pixelValue ) && ( !skipNodata || !isNoData ) )
88 {
89 if ( polyEngine->contains( cellCenterX, cellCenterY ) )
90 {
91 addValue( pixelValue, QgsPointXY( cellCenterX, cellCenterY ) );
92 }
93 }
94 cellCenterX += cellSizeX;
95 }
96 cellCenterY -= cellSizeY;
97 }
98 }
99}
100
101void QgsRasterAnalysisUtils::statisticsFromPreciseIntersection( QgsRasterInterface *rasterInterface, int rasterBand, const QgsGeometry &poly, int nCellsX, int nCellsY, double cellSizeX, double cellSizeY, const QgsRectangle &rasterBBox, const std::function<void( double, double, const QgsPointXY & )> &addValue, bool skipNodata )
102{
103 QgsGeometry pixelRectGeometry;
104
105 const double hCellSizeX = cellSizeX / 2.0;
106 const double hCellSizeY = cellSizeY / 2.0;
107 const double pixelArea = cellSizeX * cellSizeY;
108 double weight = 0;
109
110 std::unique_ptr<QgsGeometryEngine> polyEngine( QgsGeometry::createGeometryEngine( poly.constGet() ) );
111 if ( !polyEngine )
112 {
113 return;
114 }
115 polyEngine->prepareGeometry();
116
117 QgsRasterIterator iter( rasterInterface );
118 iter.startRasterRead( rasterBand, nCellsX, nCellsY, rasterBBox );
119
120 std::unique_ptr<QgsRasterBlock> block;
121 int iterLeft = 0;
122 int iterTop = 0;
123 int iterCols = 0;
124 int iterRows = 0;
125 QgsRectangle blockExtent;
126 bool isNoData = false;
127 while ( iter.readNextRasterPart( rasterBand, iterCols, iterRows, block, iterLeft, iterTop, &blockExtent ) )
128 {
129 double currentY = blockExtent.yMaximum() - 0.5 * cellSizeY;
130 for ( int row = 0; row < iterRows; ++row )
131 {
132 double currentX = blockExtent.xMinimum() + 0.5 * cellSizeX;
133 for ( int col = 0; col < iterCols; ++col )
134 {
135 const double pixelValue = block->valueAndNoData( row, col, isNoData );
136 if ( validPixel( pixelValue ) && ( !skipNodata || !isNoData ) )
137 {
138 pixelRectGeometry = QgsGeometry::fromRect( QgsRectangle( currentX - hCellSizeX, currentY - hCellSizeY, currentX + hCellSizeX, currentY + hCellSizeY ) );
139 // GEOS intersects tests on prepared geometry is MAGNITUDES faster than calculating the intersection itself,
140 // so we first test to see if there IS an intersection before doing the actual calculation
141 if ( !pixelRectGeometry.isNull() && polyEngine->intersects( pixelRectGeometry.constGet() ) )
142 {
143 //intersection
144 const QgsGeometry intersectGeometry = pixelRectGeometry.intersection( poly );
145 if ( !intersectGeometry.isEmpty() )
146 {
147 const double intersectionArea = intersectGeometry.area();
148 if ( intersectionArea > 0.0 )
149 {
150 weight = intersectionArea / pixelArea;
151 addValue( pixelValue, weight, QgsPointXY( currentX, currentY ) );
152 }
153 }
154 }
155 }
156 currentX += cellSizeX;
157 }
158 currentY -= cellSizeY;
159 }
160 }
161}
162
163bool QgsRasterAnalysisUtils::validPixel( double value )
164{
165 return !std::isnan( value );
166}
167
168void QgsRasterAnalysisUtils::mapToPixel( const double x, const double y, const QgsRectangle bounds, const double unitsPerPixelX, const double unitsPerPixelY, int &px, int &py )
169{
170 px = trunc( ( x - bounds.xMinimum() ) / unitsPerPixelX );
171 py = trunc( ( y - bounds.yMaximum() ) / -unitsPerPixelY );
172}
173
174void QgsRasterAnalysisUtils::pixelToMap( const int px, const int py, const QgsRectangle bounds, const double unitsPerPixelX, const double unitsPerPixelY, double &x, double &y )
175{
176 x = bounds.xMinimum() + ( px + 0.5 ) * unitsPerPixelX;
177 y = bounds.yMaximum() - ( py + 0.5 ) * unitsPerPixelY;
178}
179
180static QVector<QPair<QString, Qgis::DataType>> sDataTypes;
181
182void populateDataTypes()
183{
184 if ( sDataTypes.empty() )
185 {
186 sDataTypes.append( qMakePair( QStringLiteral( "Byte" ), Qgis::DataType::Byte ) );
187 sDataTypes.append( qMakePair( QStringLiteral( "Int16" ), Qgis::DataType::Int16 ) );
188 sDataTypes.append( qMakePair( QStringLiteral( "UInt16" ), Qgis::DataType::UInt16 ) );
189 sDataTypes.append( qMakePair( QStringLiteral( "Int32" ), Qgis::DataType::Int32 ) );
190 sDataTypes.append( qMakePair( QStringLiteral( "UInt32" ), Qgis::DataType::UInt32 ) );
191 sDataTypes.append( qMakePair( QStringLiteral( "Float32" ), Qgis::DataType::Float32 ) );
192 sDataTypes.append( qMakePair( QStringLiteral( "Float64" ), Qgis::DataType::Float64 ) );
193 sDataTypes.append( qMakePair( QStringLiteral( "CInt16" ), Qgis::DataType::CInt16 ) );
194 sDataTypes.append( qMakePair( QStringLiteral( "CInt32" ), Qgis::DataType::CInt32 ) );
195 sDataTypes.append( qMakePair( QStringLiteral( "CFloat32" ), Qgis::DataType::CFloat32 ) );
196 sDataTypes.append( qMakePair( QStringLiteral( "CFloat64" ), Qgis::DataType::CFloat64 ) );
197 sDataTypes.append( qMakePair( QStringLiteral( "Int8" ), Qgis::DataType::Int8 ) );
198 }
199}
200
201std::unique_ptr<QgsProcessingParameterDefinition> QgsRasterAnalysisUtils::createRasterTypeParameter( const QString &name, const QString &description, Qgis::DataType defaultType )
202{
203 populateDataTypes();
204
205 QStringList names;
206 int defaultChoice = 0;
207 int i = 0;
208 for ( auto it = sDataTypes.constBegin(); it != sDataTypes.constEnd(); ++it )
209 {
210 names.append( it->first );
211 if ( it->second == defaultType )
212 defaultChoice = i;
213 i++;
214 }
215
216 return std::make_unique<QgsProcessingParameterEnum>( name, description, names, false, defaultChoice );
217}
218
219Qgis::DataType QgsRasterAnalysisUtils::rasterTypeChoiceToDataType( int choice )
220{
221 if ( choice < 0 || choice >= sDataTypes.count() )
223
224 return sDataTypes.value( choice ).second;
225}
226
227void QgsRasterAnalysisUtils::applyRasterLogicOperator( const std::vector<QgsRasterAnalysisUtils::RasterLogicInput> &inputs, QgsRasterDataProvider *destinationRaster, double outputNoDataValue, const bool treatNoDataAsFalse, int width, int height, const QgsRectangle &extent, QgsFeedback *feedback, std::function<void( const std::vector<std::unique_ptr<QgsRasterBlock>> &, bool &, bool &, int, int, bool )> &applyLogicFunc, qgssize &noDataCount, qgssize &trueCount, qgssize &falseCount )
228{
231 const int nbBlocksWidth = static_cast<int>( std::ceil( 1.0 * width / maxWidth ) );
232 const int nbBlocksHeight = static_cast<int>( std::ceil( 1.0 * height / maxHeight ) );
233 const int nbBlocks = nbBlocksWidth * nbBlocksHeight;
234
235 destinationRaster->setEditable( true );
236 QgsRasterIterator outputIter( destinationRaster );
237 outputIter.startRasterRead( 1, width, height, extent );
238
239 int iterLeft = 0;
240 int iterTop = 0;
241 int iterCols = 0;
242 int iterRows = 0;
243 QgsRectangle blockExtent;
244 std::unique_ptr<QgsRasterBlock> outputBlock;
245 while ( outputIter.readNextRasterPart( 1, iterCols, iterRows, outputBlock, iterLeft, iterTop, &blockExtent ) )
246 {
247 std::vector<std::unique_ptr<QgsRasterBlock>> inputBlocks;
248 for ( const QgsRasterAnalysisUtils::RasterLogicInput &i : inputs )
249 {
250 for ( const int band : i.bands )
251 {
252 std::unique_ptr<QgsRasterBlock> b( i.interface->block( band, blockExtent, iterCols, iterRows ) );
253 inputBlocks.emplace_back( std::move( b ) );
254 }
255 }
256
257 feedback->setProgress( 100 * ( ( iterTop / maxHeight * nbBlocksWidth ) + iterLeft / maxWidth ) / nbBlocks );
258 for ( int row = 0; row < iterRows; row++ )
259 {
260 if ( feedback->isCanceled() )
261 break;
262
263 for ( int column = 0; column < iterCols; column++ )
264 {
265 bool res = false;
266 bool resIsNoData = false;
267 applyLogicFunc( inputBlocks, res, resIsNoData, row, column, treatNoDataAsFalse );
268 if ( resIsNoData )
269 noDataCount++;
270 else if ( res )
271 trueCount++;
272 else
273 falseCount++;
274
275 outputBlock->setValue( row, column, resIsNoData ? outputNoDataValue : ( res ? 1 : 0 ) );
276 }
277 }
278 if ( !destinationRaster->writeBlock( outputBlock.get(), 1, iterLeft, iterTop ) )
279 {
280 throw QgsProcessingException( QObject::tr( "Could not write raster block: %1" ).arg( destinationRaster->error().summary() ) );
281 }
282 }
283 destinationRaster->setEditable( false );
284}
285
286std::vector<double> QgsRasterAnalysisUtils::getCellValuesFromBlockStack( const std::vector<std::unique_ptr<QgsRasterBlock>> &inputBlocks, int &row, int &col, bool &noDataInStack )
287{
288 //get all values from inputBlocks
289 std::vector<double> cellValues;
290 bool hasNoData = false;
291 cellValues.reserve( inputBlocks.size() );
292
293 for ( auto &block : inputBlocks )
294 {
295 double value = 0;
296 if ( !block || !block->isValid() )
297 {
298 noDataInStack = true;
299 break;
300 }
301 else
302 {
303 value = block->valueAndNoData( row, col, hasNoData );
304 if ( hasNoData )
305 {
306 noDataInStack = true;
307 continue; //NoData is not included in the cell value vector
308 }
309 else
310 {
311 cellValues.push_back( value );
312 }
313 }
314 }
315 return cellValues;
316}
317
318double QgsRasterAnalysisUtils::meanFromCellValues( std::vector<double> &cellValues, int stackSize )
319{
320 const double sum = std::accumulate( cellValues.begin(), cellValues.end(), 0.0 );
321 const double mean = sum / static_cast<double>( stackSize );
322 return mean;
323}
324
325double QgsRasterAnalysisUtils::medianFromCellValues( std::vector<double> &cellValues, int stackSize )
326{
327 std::sort( cellValues.begin(), cellValues.end() );
328 const bool even = ( stackSize % 2 ) < 1;
329 if ( even )
330 {
331 return ( cellValues[stackSize / 2 - 1] + cellValues[stackSize / 2] ) / 2.0;
332 }
333 else //odd
334 {
335 return cellValues[( stackSize + 1 ) / 2 - 1];
336 }
337}
338
339
340double QgsRasterAnalysisUtils::stddevFromCellValues( std::vector<double> &cellValues, int stackSize )
341{
342 const double variance = varianceFromCellValues( cellValues, stackSize );
343 const double stddev = std::sqrt( variance );
344 return stddev;
345}
346
347double QgsRasterAnalysisUtils::varianceFromCellValues( std::vector<double> &cellValues, int stackSize )
348{
349 const double mean = meanFromCellValues( cellValues, stackSize );
350 double accum = 0.0;
351 for ( int i = 0; i < stackSize; i++ )
352 {
353 accum += std::pow( ( cellValues.at( i ) - mean ), 2.0 );
354 }
355 const double variance = accum / static_cast<double>( stackSize );
356 return variance;
357}
358
359double QgsRasterAnalysisUtils::maximumFromCellValues( std::vector<double> &cellValues )
360{
361 return *std::max_element( cellValues.begin(), cellValues.end() );
362}
363
364double QgsRasterAnalysisUtils::minimumFromCellValues( std::vector<double> &cellValues )
365{
366 return *std::min_element( cellValues.begin(), cellValues.end() );
367}
368
369double QgsRasterAnalysisUtils::majorityFromCellValues( std::vector<double> &cellValues, const double noDataValue, int stackSize )
370{
371 if ( stackSize == 1 )
372 {
373 //output will be same as input if only one layer is entered
374 return cellValues[0];
375 }
376 else if ( stackSize == 2 )
377 {
378 //if only two layers are input, return NoData if values are not the same (eg. no Majority could be found)
379 return ( qgsDoubleNear( cellValues[0], cellValues[1] ) ) ? cellValues[0] : noDataValue;
380 }
381 else if ( std::adjacent_find( cellValues.begin(), cellValues.end(), std::not_equal_to<double>() ) == cellValues.end() )
382 {
383 //check if all values in cellValues are equal
384 //output will be same as input if all cellValues of the stack are the same
385 return cellValues[0];
386 }
387 else
388 {
389 //search for majority using hash map [O(n)]
390 std::unordered_map<double, int> map;
391
392 for ( int i = 0; i < stackSize; i++ )
393 {
394 map[cellValues[i]]++;
395 }
396
397 int maxCount = 0;
398 bool multipleMajorities = false;
399 double result = noDataValue;
400 for ( const auto &pair : std::as_const( map ) )
401 {
402 if ( maxCount < pair.second )
403 {
404 result = pair.first;
405 maxCount = pair.second;
406 multipleMajorities = false;
407 }
408 else if ( maxCount == pair.second )
409 {
410 multipleMajorities = true;
411 }
412 }
413 return multipleMajorities ? noDataValue : result;
414 }
415}
416
417double QgsRasterAnalysisUtils::minorityFromCellValues( std::vector<double> &cellValues, const double noDataValue, int stackSize )
418{
419 if ( stackSize == 1 )
420 {
421 //output will be same as input if only one layer is entered
422 return cellValues[0];
423 }
424 else if ( stackSize == 2 )
425 {
426 //if only two layers are input, return NoData if values are not the same (eg. no minority could be found)
427 return ( qgsDoubleNear( cellValues[0], cellValues[1] ) ) ? cellValues[0] : noDataValue;
428 }
429 else if ( std::adjacent_find( cellValues.begin(), cellValues.end(), std::not_equal_to<double>() ) == cellValues.end() )
430 {
431 //check if all values in cellValues are equal
432 //output will be same as input if all cellValues of the stack are the same
433 return cellValues[0];
434 }
435 else
436 {
437 //search for minority using hash map [O(n)]
438 std::unordered_map<double, int> map;
439
440 for ( int i = 0; i < stackSize; i++ )
441 {
442 map[cellValues[i]]++;
443 }
444
445 int minCount = stackSize;
446 bool multipleMinorities = false;
447 double result = noDataValue; //result will stay NoData if no minority value exists
448 for ( const auto &pair : std::as_const( map ) )
449 {
450 if ( minCount > pair.second )
451 {
452 result = pair.first;
453 minCount = pair.second;
454 multipleMinorities = false;
455 }
456 else if ( minCount == pair.second )
457 {
458 multipleMinorities = true;
459 }
460 }
461 return multipleMinorities ? noDataValue : result;
462 }
463}
464
465double QgsRasterAnalysisUtils::rangeFromCellValues( std::vector<double> &cellValues )
466{
467 const double max = *std::max_element( cellValues.begin(), cellValues.end() );
468 const double min = *std::min_element( cellValues.begin(), cellValues.end() );
469 return max - min;
470}
471
472double QgsRasterAnalysisUtils::varietyFromCellValues( std::vector<double> &cellValues )
473{
474 const std::unordered_set<double> uniqueValues( cellValues.begin(), cellValues.end() );
475 return uniqueValues.size();
476}
477
478double QgsRasterAnalysisUtils::nearestRankPercentile( std::vector<double> &cellValues, int stackSize, double percentile )
479{
480 //if percentile equals 0 -> pick the first element of the ordered list
481 std::sort( cellValues.begin(), cellValues.end() );
482
483 int i = 0;
484 if ( percentile > 0 )
485 {
486 i = std::ceil( percentile * static_cast<double>( stackSize ) ) - 1;
487 }
488
489 return cellValues[i];
490}
491
492double QgsRasterAnalysisUtils::interpolatedPercentileInc( std::vector<double> &cellValues, int stackSize, double percentile )
493{
494 std::sort( cellValues.begin(), cellValues.end() );
495
496 if ( qgsDoubleNear( percentile, 1.0 ) )
497 {
498 return cellValues[stackSize - 1];
499 }
500 else if ( qgsDoubleNear( percentile, 0.0 ) )
501 {
502 return cellValues[0];
503 }
504
505 const double x = ( percentile * ( stackSize - 1 ) );
506
507 const int i = static_cast<int>( std::floor( x ) );
508 const double xFraction = std::fmod( x, 1 );
509
510 if ( stackSize == 1 )
511 {
512 return cellValues[0];
513 }
514 else if ( stackSize == 2 )
515 {
516 return cellValues[0] + ( cellValues[1] - cellValues[0] ) * percentile;
517 }
518 else
519 {
520 return cellValues[i] + ( cellValues[i + 1] - cellValues[i] ) * xFraction;
521 }
522}
523
524double QgsRasterAnalysisUtils::interpolatedPercentileExc( std::vector<double> &cellValues, int stackSize, double percentile, double noDataValue )
525{
526 std::sort( cellValues.begin(), cellValues.end() );
527 const double x = ( percentile * ( stackSize + 1 ) );
528
529 const int i = static_cast<int>( std::floor( x ) ) - 1;
530 const double xFraction = std::fmod( x, 1 );
531 const double lowerExcValue = 1.0 / ( static_cast<double>( stackSize ) + 1.0 );
532 const double upperExcValue = static_cast<double>( stackSize ) / ( static_cast<double>( stackSize ) + 1.0 );
533
534 if ( stackSize < 2 || ( ( percentile < lowerExcValue || percentile > upperExcValue ) ) )
535 {
536 return noDataValue;
537 }
538 else
539 {
540 return cellValues[i] + ( cellValues[i + 1] - cellValues[i] ) * xFraction;
541 }
542}
543
544double QgsRasterAnalysisUtils::interpolatedPercentRankInc( std::vector<double> &cellValues, int stackSize, double value, double noDataValue )
545{
546 std::sort( cellValues.begin(), cellValues.end() );
547
548 if ( value < cellValues[0] || value > cellValues[stackSize - 1] )
549 {
550 return noDataValue;
551 }
552 else
553 {
554 for ( int i = 0; i < stackSize - 1; i++ )
555 {
556 if ( cellValues[i] <= value && cellValues[i + 1] >= value )
557 {
558 double fraction = 0.0;
559
560 //make sure that next number in the distribution is not the same to prevent NaN fractions
561 if ( !qgsDoubleNear( cellValues[i], cellValues[i + 1] ) )
562 fraction = ( value - cellValues[i] ) / ( cellValues[i + 1] - cellValues[i] );
563
564 return ( fraction + i ) / ( stackSize - 1 );
565 }
566 }
567 return noDataValue;
568 }
569}
570
571double QgsRasterAnalysisUtils::interpolatedPercentRankExc( std::vector<double> &cellValues, int stackSize, double value, double noDataValue )
572{
573 std::sort( cellValues.begin(), cellValues.end() );
574
575 if ( value < cellValues[0] || value > cellValues[stackSize - 1] )
576 {
577 return noDataValue;
578 }
579 else
580 {
581 for ( int i = 0; i < stackSize - 1; i++ )
582 {
583 if ( cellValues[i] <= value && cellValues[i + 1] >= value )
584 {
585 double fraction = 0.0;
586
587 //make sure that next number in the distribution is not the same to prevent NaN fractions
588 if ( !qgsDoubleNear( cellValues[i], cellValues[i + 1] ) )
589 fraction = ( value - cellValues[i] ) / ( cellValues[i + 1] - cellValues[i] );
590
591 return ( ( i + 1 ) + fraction ) / ( stackSize + 1 );
592 }
593 }
594 return noDataValue;
595 }
596}
597
598
DataType
Raster data types.
Definition qgis.h:351
@ CInt32
Complex Int32.
@ Float32
Thirty two bit floating point (float)
@ CFloat64
Complex Float64.
@ Int16
Sixteen bit signed integer (qint16)
@ Int8
Eight bit signed integer (qint8) (added in QGIS 3.30)
@ UInt16
Sixteen bit unsigned integer (quint16)
@ Byte
Eight bit unsigned integer (quint8)
@ Int32
Thirty two bit signed integer (qint32)
@ Float64
Sixty four bit floating point (double)
@ CFloat32
Complex Float32.
@ CInt16
Complex Int16.
@ UInt32
Thirty two bit unsigned integer (quint32)
virtual QgsError error() const
Gets current status error.
QString summary() const
Short error description, usually the first error in chain, the real error.
Definition qgserror.cpp:129
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition qgsfeedback.h:44
bool isCanceled() const
Tells whether the operation has been canceled already.
Definition qgsfeedback.h:53
void setProgress(double progress)
Sets the current progress for the feedback object.
Definition qgsfeedback.h:61
A geometry is the spatial representation of a feature.
static QgsGeometry fromRect(const QgsRectangle &rect)
Creates a new geometry from a QgsRectangle.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
double area() const
Returns the planar, 2-dimensional area of the geometry.
QgsGeometry intersection(const QgsGeometry &geometry, const QgsGeometryParameters &parameters=QgsGeometryParameters()) const
Returns a geometry representing the points shared by this geometry and other.
bool isEmpty() const
Returns true if the geometry is empty (eg a linestring with no vertices, or a collection with no geom...
static QgsGeometryEngine * createGeometryEngine(const QgsAbstractGeometry *geometry, double precision=0.0, Qgis::GeosCreationFlags flags=Qgis::GeosCreationFlag::SkipEmptyInteriorRings)
Creates and returns a new geometry engine representing the specified geometry using precision on a gr...
A class to represent a 2D point.
Definition qgspointxy.h:60
Custom exception class for processing related exceptions.
Base class for raster data providers.
bool writeBlock(QgsRasterBlock *block, int band, int xOffset=0, int yOffset=0)
Writes pixel data from a raster block into the provider data source.
virtual bool setEditable(bool enabled)
Turns on/off editing mode of the provider.
Base class for processing filters like renderers, reprojector, resampler etc.
Iterator for sequentially processing raster cells.
static const int DEFAULT_MAXIMUM_TILE_WIDTH
Default maximum tile width.
static const int DEFAULT_MAXIMUM_TILE_HEIGHT
Default maximum tile height.
A rectangle specified with double values.
double xMinimum
double yMinimum
double xMaximum
double yMaximum
QgsRectangle intersect(const QgsRectangle &rect) const
Returns the intersection with the given rectangle.
unsigned long long qgssize
Qgssize is used instead of size_t, because size_t is stdlib type, unknown by SIP, and it would be har...
Definition qgis.h:6767
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
Definition qgis.h:6219