19#include <gdalwarper.h>
21#include <ogr_srs_api.h>
29using namespace Qt::StringLiterals;
31static double ceil_with_tolerance(
double value )
33 if ( std::fabs( value - std::round( value ) ) < 1e-6 )
34 return std::round( value );
36 return std::ceil( value );
39static double floor_with_tolerance(
double value )
41 if ( std::fabs( value - std::round( value ) ) < 1e-6 )
42 return std::round( value );
44 return std::floor( value );
47static double fmod_with_tolerance(
double num,
double denom )
49 return num - floor_with_tolerance( num / denom ) * denom;
52static QgsRectangle transform_to_extent(
const double *geotransform,
double xSize,
double ySize )
54 QgsRectangle r( geotransform[0], geotransform[3], geotransform[0] + geotransform[1] * xSize, geotransform[3] + geotransform[5] * ySize );
59static int CPL_STDCALL _progress(
double dfComplete,
const char *pszMessage,
void *pProgressArg )
61 Q_UNUSED( pszMessage )
65 return handler->
progress( dfComplete );
70static CPLErr rescalePreWarpChunkProcessor(
void *pKern,
void *pArg )
72 GDALWarpKernel *kern = ( GDALWarpKernel * ) pKern;
73 const double cellsize = ( (
double * ) pArg )[0];
75 for (
int nBand = 0; nBand < kern->nBands; ++nBand )
77 float *bandData = (
float * ) kern->papabySrcImage[nBand];
78 for (
int nLine = 0; nLine < kern->nSrcYSize; ++nLine )
80 for (
int nPixel = 0; nPixel < kern->nSrcXSize; ++nPixel )
82 bandData[nPixel] /= cellsize;
84 bandData += kern->nSrcXSize;
90static CPLErr rescalePostWarpChunkProcessor(
void *pKern,
void *pArg )
92 GDALWarpKernel *kern = ( GDALWarpKernel * ) pKern;
93 const double cellsize = ( (
double * ) pArg )[1];
95 for (
int nBand = 0; nBand < kern->nBands; ++nBand )
97 float *bandData = (
float * ) kern->papabyDstImage[nBand];
98 for (
int nLine = 0; nLine < kern->nDstYSize; ++nLine )
100 for (
int nPixel = 0; nPixel < kern->nDstXSize; ++nPixel )
102 bandData[nPixel] *= cellsize;
104 bandData += kern->nDstXSize;
120 for (
int i = 0; i < 6; ++i )
150 if ( customCRSWkt.isEmpty() || customCRSWkt == rasterInfo.
crs() )
155 if ( !customCellSize.isValid() )
166 if ( customGridOffset.x() < 0 || customGridOffset.y() < 0 )
168 if ( !customCellSize.isValid() )
178 mGridOffsetX = fmod_with_tolerance( rasterInfo.
origin().x(), customCellSize.width() );
179 mGridOffsetY = fmod_with_tolerance( rasterInfo.
origin().y(), customCellSize.height() );
202 if ( !customCellSize.isValid() )
213 if ( customGridOffset.x() < 0 || customGridOffset.y() < 0 )
240 mErrorMessage = QObject::tr(
"Cell size must not be zero." );
247 double finalExtent[4] = { 0, 0, 0, 0 };
250 for (
int i = 0; i <
mRasters.count(); ++i )
260 mErrorMessage = QString(
"Failed to get suggested warp output.\n\n"
262 "Source WKT:\n%2\n\nDestination WKT:\n%3" )
269 if ( finalExtent[0] == 0 && finalExtent[1] == 0 && finalExtent[2] == 0 && finalExtent[3] == 0 )
280 if ( extent.
xMinimum() > finalExtent[0] )
282 if ( extent.
yMinimum() > finalExtent[1] )
284 if ( extent.
xMaximum() < finalExtent[2] )
286 if ( extent.
yMaximum() < finalExtent[3] )
302 if ( clipX0 > finalExtent[0] )
303 finalExtent[0] = clipX0;
304 if ( clipY0 > finalExtent[1] )
305 finalExtent[1] = clipY0;
306 if ( clipX1 < finalExtent[2] )
307 finalExtent[2] = clipX1;
308 if ( clipY1 < finalExtent[3] )
309 finalExtent[3] = clipY1;
318 const int xSize = floor_with_tolerance( ( finalExtent[2] - originX ) /
mCellSizeX );
319 const int ySize = floor_with_tolerance( ( finalExtent[3] - originY ) /
mCellSizeY );
321 if ( xSize <= 0 || ySize <= 0 )
323 mErrorMessage = QObject::tr(
"No common intersecting area." );
363 const auto constMRasters =
mRasters;
364 for (
const Item &r : constMRasters )
375 qDebug(
"---ALIGN------------------" );
376 qDebug(
"wkt %s",
mCrsWkt.toLatin1().constData() );
378 qDebug(
"transform" );
383 qDebug(
"extent %s", e.
toString().toLatin1().constData() );
389 double bestCellArea = INFINITY;
399 const auto constMRasters =
mRasters;
400 for (
const Item &raster : constMRasters )
405 const double cellArea = cs.width() * cs.height();
406 if ( cellArea < bestCellArea )
408 bestCellArea = cellArea;
420 GDALDriverH hDriver = GDALGetDriverByName(
"GTiff" );
437 const int bandCount = GDALGetRasterCount( hSrcDS.get() );
438 const GDALDataType eDT = GDALGetRasterDataType( GDALGetRasterBand( hSrcDS.get(), 1 ) );
449 GDALSetProjection( hDstDS.get(),
mCrsWkt.toLatin1().constData() );
453 GDALColorTableH hCT = GDALGetRasterColorTable( GDALGetRasterBand( hSrcDS.get(), 1 ) );
455 GDALSetRasterColorTable( GDALGetRasterBand( hDstDS.get(), 1 ), hCT );
461 psWarpOptions->hSrcDS = hSrcDS.get();
462 psWarpOptions->hDstDS = hDstDS.get();
464 psWarpOptions->nBandCount = GDALGetRasterCount( hSrcDS.get() );
465 psWarpOptions->panSrcBands = (
int * ) CPLMalloc(
sizeof(
int ) * psWarpOptions->nBandCount );
466 psWarpOptions->panDstBands = (
int * ) CPLMalloc(
sizeof(
int ) * psWarpOptions->nBandCount );
467 for (
int i = 0; i < psWarpOptions->nBandCount; ++i )
469 psWarpOptions->panSrcBands[i] = i + 1;
470 psWarpOptions->panDstBands[i] = i + 1;
473 psWarpOptions->eResampleAlg =
static_cast<GDALResampleAlg
>( raster.
resampleMethod );
476 psWarpOptions->pfnProgress = _progress;
477 psWarpOptions->pProgressArg =
this;
480 psWarpOptions->pTransformerArg = GDALCreateGenImgProjTransformer( hSrcDS.get(), GDALGetProjectionRef( hSrcDS.get() ), hDstDS.get(), GDALGetProjectionRef( hDstDS.get() ), FALSE, 0.0, 1 );
481 psWarpOptions->pfnTransformer = GDALGenImgProjTransform;
483 double rescaleArg[2];
488 psWarpOptions->pfnPreWarpChunkProcessor = rescalePreWarpChunkProcessor;
489 psWarpOptions->pfnPostWarpChunkProcessor = rescalePostWarpChunkProcessor;
490 psWarpOptions->pPreWarpProcessorArg = rescaleArg;
491 psWarpOptions->pPostWarpProcessorArg = rescaleArg;
493 psWarpOptions->eWorkingDataType = GDT_Float32;
497 GDALWarpOperation oOperation;
498 oOperation.Initialize( psWarpOptions.get() );
501 GDALDestroyGenImgProjTransformer( psWarpOptions->pTransformerArg );
511 void *hTransformArg = GDALCreateGenImgProjTransformer( info.
mDataset.get(), info.
mCrsWkt.toLatin1().constData(),
nullptr, destWkt.toLatin1().constData(), FALSE, 0, 1 );
512 if ( !hTransformArg )
516 double adfDstGeoTransform[6];
518 int nPixels = 0, nLines = 0;
520 eErr = GDALSuggestedWarpOutput2( info.
mDataset.get(), GDALGenImgProjTransform, hTransformArg, adfDstGeoTransform, &nPixels, &nLines, extents, 0 );
521 GDALDestroyGenImgProjTransformer( hTransformArg );
523 if ( eErr != CE_None )
526 const QSizeF cs( std::fabs( adfDstGeoTransform[1] ), std::fabs( adfDstGeoTransform[5] ) );
529 *rect =
QgsRectangle( extents[0], extents[1], extents[2], extents[3] );
533 *
gridOffset = QPointF( fmod_with_tolerance( adfDstGeoTransform[0], cs.width() ), fmod_with_tolerance( adfDstGeoTransform[3], cs.height() ) );
543 mDataset.reset( GDALOpen( layerpath.toUtf8().constData(), GA_ReadOnly ) );
553 mCrsWkt = QString::fromLatin1( GDALGetProjectionRef(
mDataset.get() ) );
580 qDebug(
"---RASTER INFO------------------" );
581 qDebug(
"wkt %s",
mCrsWkt.toLatin1().constData() );
586 qDebug(
"extent %s", r.
toString().toLatin1().constData() );
588 qDebug(
"transform" );
595 GDALRasterBandH hBand = GDALGetRasterBand(
mDataset.get(), 1 );
601 float *pafScanline = (
float * ) CPLMalloc(
sizeof(
float ) );
602 const CPLErr err = GDALRasterIO( hBand, GF_Read, px, py, 1, 1, pafScanline, 1, 1, GDT_Float32, 0, 0 );
603 const double value = err == CE_None ? pafScanline[0] : std::numeric_limits<double>::quiet_NaN();
604 CPLFree( pafScanline );
@ PreferredGdal
Preferred format for conversion of CRS to WKT for use with the GDAL library.
Takes one or more raster layers and warps (resamples) them to a common grid.
void dump() const
write contents of the object to standard error stream - for debugging
int mYSize
Computed raster grid height.
bool setParametersFromRaster(const RasterInfo &rasterInfo, const QString &customCRSWkt=QString(), QSizeF customCellSize=QSizeF(), QPointF customGridOffset=QPointF(-1, -1))
Set destination CRS, cell size and grid offset from a raster file.
QSizeF cellSize() const
Gets output cell size.
QgsRectangle clipExtent() const
Gets clipping extent (region of interest).
QPointF gridOffset() const
double mGridOffsetX
Destination grid offset - expected to be in interval <0,cellsize).
QgsRectangle alignedRasterExtent() const
Returns the expected extent of the resulting aligned raster.
bool run()
Run the alignment process.
double mClipExtent[4]
Optional clip extent: sets "requested area" which be extended to fit the raster grid.
List mRasters
List of rasters to be aligned (with their output files and other options).
bool createAndWarp(const Item &raster)
Internal function for processing of one raster (1. create output, 2. do the alignment).
QString mCrsWkt
Destination CRS - stored in well-known text (WKT) format.
void setClipExtent(double xmin, double ymin, double xmax, double ymax)
Configure clipping extent (region of interest).
int mXSize
Computed raster grid width.
int suggestedReferenceLayer() const
Returns the index of the layer which has smallest cell size (returns -1 on error).
bool checkInputParameters()
Determine destination extent from the input rasters and calculate derived values.
double mCellSizeX
Destination cell size.
double mGeoTransform[6]
Computed geo-transform.
QgsAlignRasterData::RasterItem Item
static bool suggestedWarpOutput(const RasterInfo &info, const QString &destWkt, QSizeF *cellSize=nullptr, QPointF *gridOffset=nullptr, QgsRectangle *rect=nullptr)
Determine suggested output of raster warp to a different CRS. Returns true on success.
QSize alignedRasterSize() const
Returns the expected size of the resulting aligned raster.
QString mErrorMessage
Last error message from run().
Represents a coordinate reference system (CRS).
QString toWkt(Qgis::CrsWktVariant variant=Qgis::CrsWktVariant::Wkt1Gdal, bool multiline=false, int indentationWidth=4) const
Returns a WKT representation of this CRS.
A rectangle specified with double values.
Q_INVOKABLE QString toString(int precision=16) const
Returns a string representation of form xmin,ymin : xmax,ymax Coordinates will be truncated to the sp...
std::unique_ptr< GDALWarpOptions, GDALWarpOptionsDeleter > warp_options_unique_ptr
Scoped GDAL warp options.
std::unique_ptr< std::remove_pointer< GDALDatasetH >::type, GDALDatasetCloser > dataset_unique_ptr
Scoped GDAL dataset.
Qgis::GdalResampleAlgorithm resampleMethod
resampling method to be used
bool rescaleValues
rescaling of values according to the change of pixel size
double srcCellSizeInDestCRS
used for rescaling of values (if necessary)
QString inputFilename
filename of the source raster
QString outputFilename
filename of the newly created aligned raster (will be overwritten if exists already)
Helper struct to be sub-classed for progress reporting.
virtual bool progress(double complete)=0
Method to be overridden for progress reporting.
Utility class for gathering information about rasters.
QString crs() const
Returns the CRS in WKT format.
int mYSize
raster grid size Y
gdal::dataset_unique_ptr mDataset
handle to open GDAL dataset
void dump() const
Write contents of the object to standard error stream - for debugging.
RasterInfo(const QString &layerpath)
Construct raster info with a path to a raster file.
double mGeoTransform[6]
geotransform coefficients
QgsRectangle extent() const
Returns the extent of the raster.
QPointF gridOffset() const
Returns the grid offset.
QSizeF cellSize() const
Returns the cell size in map units.
double identify(double mx, double my)
Gets raster value at the given coordinates (from the first band).
int mXSize
raster grid size X
QPointF origin() const
Returns the origin of the raster.
int mBandCnt
number of raster's bands
QString mCrsWkt
CRS stored in WKT format.