28 const QRgb QgsRasterBlock::NO_DATA_COLOR = qRgba( 0, 0, 0, 0 );
31 : mNoDataValue( std::numeric_limits<double>::quiet_NaN() )
36 : mDataType( dataType )
39 , mNoDataValue( std::numeric_limits<double>::quiet_NaN() )
41 ( void )
reset( mDataType, mWidth, mHeight );
46 QgsDebugMsgLevel( QStringLiteral(
"mData = %1" ).arg( reinterpret_cast< quint64 >( mData ) ), 4 );
54 QgsDebugMsgLevel( QStringLiteral(
"theWidth= %1 height = %2 dataType = %3" ).arg( width ).arg( height ).arg( dataType ), 4 );
61 mNoDataBitmap =
nullptr;
66 mHasNoDataValue =
false;
67 mNoDataValue = std::numeric_limits<double>::quiet_NaN();
74 QgsDebugMsgLevel( QStringLiteral(
"allocate %1 bytes" ).arg( tSize * width * height ), 4 );
75 mData =
qgsMalloc( tSize * width * height );
78 QgsDebugMsg( QStringLiteral(
"Couldn't allocate data memory of %1 bytes" ).arg( tSize * width * height ) );
85 QImage::Format format = imageFormat( dataType );
86 mImage =
new QImage( width, height, format );
99 QgsDebugMsgLevel( QStringLiteral(
"mWidth= %1 mHeight = %2 mDataType = %3 mData = %4 mImage = %5" ).arg( mWidth ).arg( mHeight ).arg( mDataType )
100 .arg( reinterpret_cast< quint64 >( mData ) ).arg( reinterpret_cast< quint64 >( mImage ) ), 4 );
108 return QImage::Format_ARGB32;
112 return QImage::Format_ARGB32_Premultiplied;
114 return QImage::Format_Invalid;
119 if ( format == QImage::Format_ARGB32 )
123 else if ( format == QImage::Format_ARGB32_Premultiplied )
132 QgsDebugMsgLevel( QStringLiteral(
"mWidth= %1 mHeight = %2 mDataType = %3 mData = %4 mImage = %5" ).arg( mWidth ).arg( mHeight ).arg( mDataType )
133 .arg( reinterpret_cast< quint64 >( mData ) ).arg( reinterpret_cast< quint64 >( mImage ) ), 4 );
134 return mWidth == 0 || mHeight == 0 ||
196 *noDataValue = -32768.0;
200 *noDataValue = -2147483648.0;
204 *noDataValue = -2147483648.0;
211 *noDataValue = std::numeric_limits<double>::max() * -1.0;
215 QgsDebugMsg( QStringLiteral(
"Unknown data type %1" ).arg( dataType ) );
218 QgsDebugMsgLevel( QStringLiteral(
"newDataType = %1 noDataValue = %2" ).arg( newDataType ).arg( *noDataValue ), 4 );
224 mHasNoDataValue =
true;
230 mHasNoDataValue =
false;
231 mNoDataValue = std::numeric_limits<double>::quiet_NaN();
240 if ( mHasNoDataValue )
244 QgsDebugMsg( QStringLiteral(
"Data block not allocated" ) );
249 QByteArray noDataByteArray =
valueBytes( mDataType, mNoDataValue );
250 if ( mNoDataValue == 0 )
252 memset( mData, 0, dataTypeSize * mWidth * mHeight );
256 const char *nodata = noDataByteArray.data();
257 for (
qgssize i = 0; i < static_cast< qgssize >( mWidth )*mHeight; i++ )
259 memcpy( reinterpret_cast< char * >( mData ) + i * dataTypeSize, nodata, dataTypeSize );
266 if ( !mNoDataBitmap )
268 if ( !createNoDataBitmap() )
274 memset( mNoDataBitmap, 0xff, mNoDataBitmapSize );
277 memset( mData, 0, dataTypeSize * mWidth * mHeight );
287 QgsDebugMsg( QStringLiteral(
"Image not allocated" ) );
291 mImage->fill( NO_DATA_COLOR );
298 int top = exceptRect.top();
299 int bottom = exceptRect.bottom();
300 int left = exceptRect.left();
301 int right = exceptRect.right();
302 top = std::min( std::max( top, 0 ), mHeight - 1 );
303 left = std::min( std::max( left, 0 ), mWidth - 1 );
304 bottom = std::max( 0, std::min( bottom, mHeight - 1 ) );
305 right = std::max( 0, std::min( right, mWidth - 1 ) );
311 if ( mHasNoDataValue )
315 QgsDebugMsg( QStringLiteral(
"Data block not allocated" ) );
320 QByteArray noDataByteArray =
valueBytes( mDataType, mNoDataValue );
322 char *nodata = noDataByteArray.data();
324 for (
int c = 0;
c < mWidth;
c++ )
326 memcpy( nodataRow +
c * dataTypeSize, nodata, dataTypeSize );
330 for (
int r = 0; r < mHeight; r++ )
332 if ( r >= top && r <= bottom )
continue;
334 memcpy( reinterpret_cast< char * >( mData ) + i * dataTypeSize, nodataRow, dataTypeSize * static_cast< qgssize >( mWidth ) );
337 for (
int r = top; r <= bottom; r++ )
341 memcpy( reinterpret_cast< char * >( mData ) + i * dataTypeSize, nodataRow, dataTypeSize * static_cast< qgssize >( left ) );
344 int w = mWidth - right - 1;
345 memcpy( reinterpret_cast< char * >( mData ) + i * dataTypeSize, nodataRow, dataTypeSize * static_cast< qgssize >( w ) );
352 if ( !mNoDataBitmap )
354 if ( !createNoDataBitmap() )
363 memset( mData, 0, dataTypeSize * mWidth * mHeight );
366 char *nodataRow =
new char[mNoDataBitmapWidth];
368 memset( nodataRow, 0, mNoDataBitmapWidth );
369 for (
int c = 0;
c < mWidth;
c ++ )
373 char nodata = 0x80 >> bit;
374 memset( nodataRow + byte, nodataRow[byte] | nodata, 1 );
378 for (
int r = 0; r < mHeight; r++ )
380 if ( r >= top && r <= bottom )
continue;
382 memcpy( mNoDataBitmap + i, nodataRow, mNoDataBitmapWidth );
385 memset( nodataRow, 0, mNoDataBitmapWidth );
386 for (
int c = 0;
c < mWidth;
c ++ )
388 if (
c >= left &&
c <= right )
continue;
391 char nodata = 0x80 >> bit;
392 memset( nodataRow + byte, nodataRow[byte] | nodata, 1 );
394 for (
int r = top; r <= bottom; r++ )
397 memcpy( mNoDataBitmap + i, nodataRow, mNoDataBitmapWidth );
408 QgsDebugMsg( QStringLiteral(
"Image not allocated" ) );
412 if ( mImage->width() != mWidth || mImage->height() != mHeight )
414 QgsDebugMsg( QStringLiteral(
"Image and block size differ" ) );
418 QgsDebugMsgLevel( QStringLiteral(
"Fill image depth = %1" ).arg( mImage->depth() ), 4 );
421 if ( mImage->depth() != 32 )
423 QgsDebugMsg( QStringLiteral(
"Unsupported image depth" ) );
427 QRgb nodataRgba = NO_DATA_COLOR;
428 QRgb *nodataRow =
new QRgb[mWidth];
429 int rgbSize =
sizeof( QRgb );
430 for (
int c = 0;
c < mWidth;
c ++ )
432 nodataRow[
c] = nodataRgba;
436 for (
int r = 0; r < mHeight; r++ )
438 if ( r >= top && r <= bottom )
continue;
440 memcpy( reinterpret_cast< void * >( mImage->bits() + rgbSize * i ), nodataRow, rgbSize * static_cast< qgssize >( mWidth ) );
443 for (
int r = top; r <= bottom; r++ )
449 memcpy( reinterpret_cast< void * >( mImage->bits() + rgbSize * i ), nodataRow, rgbSize * static_cast< qgssize >( left - 1 ) );
453 int w = mWidth - right - 1;
454 memcpy( reinterpret_cast< void * >( mImage->bits() + rgbSize * i ), nodataRow, rgbSize * static_cast< qgssize >( w ) );
464 return QByteArray::fromRawData( static_cast<const char *>( mData ),
typeSize( mDataType ) * mWidth * mHeight );
465 else if ( mImage && mImage->constBits() )
466 return QByteArray::fromRawData( reinterpret_cast<const char *>( mImage->constBits() ), mImage->byteCount() );
478 int len = std::min( data.size(),
typeSize( mDataType ) * mWidth * mHeight - offset );
479 ::memcpy( static_cast<char *>( mData ) + offset, data.constData(), len );
481 else if ( mImage && mImage->constBits() )
483 int len = std::min( data.size(), mImage->byteCount() - offset );
484 ::memcpy( mImage->bits() + offset, data.constData(), len );
491 if ( index >= static_cast< qgssize >( mWidth )*mHeight )
493 QgsDebugMsgLevel( QStringLiteral(
"Index %1 out of range (%2 x %3)" ).arg( index ).arg( mWidth ).arg( mHeight ), 4 );
498 return reinterpret_cast< char *
>( mData ) + index * mTypeSize;
500 if ( mImage && mImage->bits() )
502 return reinterpret_cast< char *
>( mImage->bits() + index * 4 );
510 return bits( static_cast< qgssize >( row ) * mWidth + column );
517 return reinterpret_cast< char *
>( mData );
519 if ( mImage && mImage->bits() )
521 return reinterpret_cast< char *
>( mImage->bits() );
530 if ( destDataType == mDataType )
return true;
534 void *
data =
convert( mData, mDataType, destDataType, static_cast< qgssize >( mWidth ) * static_cast< qgssize >( mHeight ) );
538 QgsDebugMsg( QStringLiteral(
"Cannot convert raster block" ) );
543 mDataType = destDataType;
548 QImage::Format format = imageFormat( destDataType );
549 QImage
image = mImage->convertToFormat( format );
551 mDataType = destDataType;
566 if ( scale == 1.0 && offset == 0.0 )
return;
569 for (
qgssize i = 0; i < size; ++i )
577 if ( rangeList.isEmpty() )
582 qgssize size =
static_cast< qgssize >( mWidth ) * static_cast< qgssize >( mHeight );
583 for (
qgssize i = 0; i < size; ++i )
585 double val =
value( i );
598 return QImage( *mImage );
609 mImage =
new QImage( *image );
610 mWidth = mImage->width();
611 mHeight = mImage->height();
612 mDataType =
dataType( mImage->format() );
614 mNoDataValue = std::numeric_limits<double>::quiet_NaN();
644 for (
int i = 15; i <= 17; i++ )
646 s.setNum( value,
'g', i );
653 QgsDebugMsg( QStringLiteral(
"Cannot correctly parse printed value" ) );
665 for (
int i = 6; i <= 9; i++ )
667 s.setNum( value,
'g', i );
674 QgsDebugMsg( QStringLiteral(
"Cannot correctly parse printed value" ) );
680 int destDataTypeSize =
typeSize( destDataType );
681 void *destData =
qgsMalloc( destDataTypeSize * size );
682 for (
qgssize i = 0; i < size; i++ )
685 writeValue( destData, destDataType, i, value );
696 ba.resize( static_cast< int >( size ) );
697 char *
data = ba.data();
708 uc =
static_cast< quint8
>(
value );
709 memcpy( data, &uc, size );
712 us =
static_cast< quint16
>(
value );
713 memcpy( data, &us, size );
716 s =
static_cast< qint16
>(
value );
717 memcpy( data, &s, size );
720 ui =
static_cast< quint32
>(
value );
721 memcpy( data, &ui, size );
724 i =
static_cast< qint32
>(
value );
725 memcpy( data, &i, size );
728 f =
static_cast< float >(
value );
729 memcpy( data, &f, size );
732 d =
static_cast< double >(
value );
733 memcpy( data, &d, size );
736 QgsDebugMsg( QStringLiteral(
"Data type is not supported" ) );
741 bool QgsRasterBlock::createNoDataBitmap()
743 mNoDataBitmapWidth = mWidth / 8 + 1;
744 mNoDataBitmapSize =
static_cast< qgssize >( mNoDataBitmapWidth ) * mHeight;
745 QgsDebugMsgLevel( QStringLiteral(
"allocate %1 bytes" ).arg( mNoDataBitmapSize ), 4 );
746 mNoDataBitmap =
reinterpret_cast< char *
>(
qgsMalloc( mNoDataBitmapSize ) );
747 if ( !mNoDataBitmap )
749 QgsDebugMsg( QStringLiteral(
"Couldn't allocate no data memory of %1 bytes" ).arg( mNoDataBitmapSize ) );
752 memset( mNoDataBitmap, 0, mNoDataBitmapSize );
758 return QStringLiteral(
"dataType = %1 width = %2 height = %3" )
759 .arg( mDataType ).arg( mWidth ).arg( mHeight );
769 QgsDebugMsgLevel( QStringLiteral(
"theWidth = %1 height = %2 xRes = %3 yRes = %4" ).arg( width ).arg( height ).arg( xRes ).arg( yRes ), 4 );
772 int bottom = height - 1;
774 int right = width - 1;
782 bottom = std::round( ( extent.
yMaximum() - subExtent.
yMinimum() ) / yRes ) - 1;
791 right = std::round( ( subExtent.
xMaximum() - extent.
xMinimum() ) / xRes ) - 1;
793 QRect
subRect = QRect( left, top, right - left + 1, bottom - top + 1 );
794 QgsDebugMsgLevel( QStringLiteral(
"subRect: %1 %2 %3 %4" ).arg( subRect.x() ).arg( subRect.y() ).arg( subRect.width() ).arg( subRect.height() ), 4 );
void setNoDataValue(double noDataValue)
Sets cell value that will be considered as "no data".
A rectangle specified with double values.
Thirty two bit signed integer (qint32)
Qgis::DataType dataType() const
Returns data type.
int height() const
Returns the height (number of rows) of the raster block.
static QString printValue(double value)
Print double value with all necessary significant digits.
void * qgsMalloc(size_t size)
Allocates size bytes and returns a pointer to the allocated memory.
bool setIsNoData()
Set the whole block to no data.
static double readValue(void *data, Qgis::DataType type, qgssize index)
bool qgsFloatNear(float a, float b, float epsilon=4 *FLT_EPSILON)
Compare two floats (but allow some difference)
static Qgis::DataType typeWithNoDataValue(Qgis::DataType dataType, double *noDataValue)
For given data type returns wider type and sets no data value.
static bool typeIsColor(Qgis::DataType type)
Returns true if data type is color.
double yMaximum() const
Returns the y maximum value (top side of rectangle).
bool contains(double value) const
Returns true if this range contains the specified value.
void applyNoDataValues(const QgsRasterRangeList &rangeList)
bool setValue(int row, int column, double value)
Set value on position.
bool setIsNoDataExcept(QRect exceptRect)
Set the whole block to no data except specified rectangle.
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
static bool typeIsNumeric(Qgis::DataType type)
Returns true if data type is numeric.
Thirty two bit unsigned integer (quint32)
double noDataValue() const
Returns no data value.
DataType
Raster data types.
int width() const
Returns the width (number of columns) of the raster block.
Thirty two bit floating point (float)
Sixteen bit signed integer (qint16)
static QRect subRect(const QgsRectangle &extent, int width, int height, const QgsRectangle &subExtent)
For extent and width, height find rectangle covered by subextent.
Sixty four bit floating point (double)
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
Color, alpha, red, green, blue, 4 bytes the same as QImage::Format_ARGB32_Premultiplied.
virtual ~QgsRasterBlock()
bool convert(Qgis::DataType destDataType)
Convert data to different type.
double yMinimum() const
Returns the y minimum value (bottom side of rectangle).
double xMaximum() const
Returns the x maximum value (right side of rectangle).
bool setImage(const QImage *image)
Sets the block data via an image.
#define QgsDebugMsgLevel(str, level)
double value(int row, int column) const
Read a single value if type of block is numeric.
QString toString(int precision=16) const
Returns a string representation of form xmin,ymin : xmax,ymax Coordinates will be truncated to the sp...
bool reset(Qgis::DataType dataType, int width, int height)
Reset block.
char * bits()
Returns a pointer to block data.
Unknown or unspecified type.
static int typeSize(int dataType)
Sixteen bit unsigned integer (quint16)
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...
static QByteArray valueBytes(Qgis::DataType dataType, double value)
Gets byte array representing a value.
void resetNoDataValue()
Reset no data value: if there was a no data value previously set, it will be discarded.
static void writeValue(void *data, Qgis::DataType type, qgssize index, double value)
QList< QgsRasterRange > QgsRasterRangeList
void applyScaleOffset(double scale, double offset)
Apply band scale and offset to raster block values.
bool isNoData(int row, int column) const
Check if value at position is no data.
QImage image() const
Returns an image containing the block data, if the block's data type is color.
double width() const
Returns the width of the rectangle.
void setData(const QByteArray &data, int offset=0)
Rewrite raw pixel data.
double xMinimum() const
Returns the x minimum value (left side of rectangle).
void qgsFree(void *ptr)
Frees the memory space pointed to by ptr.
Eight bit unsigned integer (quint8)
Color, alpha, red, green, blue, 4 bytes the same as QImage::Format_ARGB32.
double height() const
Returns the height of the rectangle.
QByteArray data() const
Gets access to raw data.
bool isEmpty() const
Returns true if block is empty, i.e.