/usr/include/qgis/qgsalignraster.h is in libqgis-dev 2.18.17+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 | /***************************************************************************
qgsalignraster.h
--------------------------------------
Date : June 2015
Copyright : (C) 2015 by Martin Dobias
Email : wonder dot sk at gmail dot com
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef QGSALIGNRASTER_H
#define QGSALIGNRASTER_H
#include <QList>
#include <QPointF>
#include <QSizeF>
#include <QString>
#include <gdal_version.h>
class QgsRectangle;
typedef void* GDALDatasetH;
/** \ingroup analysis
* @brief QgsAlignRaster takes one or more raster layers and warps (resamples) them
* so they have the same:
* - coordinate reference system
* - cell size and raster size
* - offset of the raster grid
*
* @note added in QGIS 2.12
*/
class ANALYSIS_EXPORT QgsAlignRaster
{
public:
QgsAlignRaster();
//! Utility class for gathering information about rasters
struct ANALYSIS_EXPORT RasterInfo
{
public:
//! Construct raster info with a path to a raster file
RasterInfo( const QString& layerpath );
~RasterInfo();
//! Check whether the given path is a valid raster
bool isValid() const { return nullptr != mDataset; }
//! Return CRS in WKT format
QString crs() const { return mCrsWkt; }
//! Return size of the raster grid in pixels
QSize rasterSize() const { return QSize( mXSize, mYSize ); }
//! Return number of raster bands in the file
int bandCount() const { return mBandCnt; }
//! Return cell size in map units
QSizeF cellSize() const;
//! Return grid offset
QPointF gridOffset() const;
//! Return extent of the raster
QgsRectangle extent() const;
//! Return origin of the raster
QPointF origin() const;
//! write contents of the object to standard error stream - for debugging
void dump() const;
//! Get raster value at the given coordinates (from the first band)
double identify( double mx, double my );
protected:
//! handle to open GDAL dataset
GDALDatasetH mDataset;
//! CRS stored in WKT format
QString mCrsWkt;
//! geotransform coefficients
double mGeoTransform[6];
//! raster grid size
int mXSize, mYSize;
//! number of raster's bands
int mBandCnt;
private:
RasterInfo( const RasterInfo& rh );
RasterInfo& operator=( const RasterInfo& rh );
friend class QgsAlignRaster;
};
//! Resampling algorithm to be used (equivalent to GDAL's enum GDALResampleAlg)
//! @note RA_Max, RA_Min, RA_Median, RA_Q1 and RA_Q3 are available on GDAL >= 2.0 builds only
enum ResampleAlg
{
RA_NearestNeighbour = 0, //!< Nearest neighbour (select on one input pixel)
RA_Bilinear = 1, //!< Bilinear (2x2 kernel)
RA_Cubic = 2, //!< Cubic Convolution Approximation (4x4 kernel)
RA_CubicSpline = 3, //!< Cubic B-Spline Approximation (4x4 kernel)
RA_Lanczos = 4, //!< Lanczos windowed sinc interpolation (6x6 kernel)
RA_Average = 5, //!< Average (computes the average of all non-NODATA contributing pixels)
RA_Mode = 6, //!< Mode (selects the value which appears most often of all the sampled points)
RA_Max = 8, //!< Maximum (selects the maximum of all non-NODATA contributing pixels)
RA_Min = 9, //!< Minimum (selects the minimum of all non-NODATA contributing pixels)
RA_Median = 10, //!< Median (selects the median of all non-NODATA contributing pixels)
RA_Q1 = 11, //!< First quartile (selects the first quartile of all non-NODATA contributing pixels)
RA_Q3 = 12, //!< Third quartile (selects the third quartile of all non-NODATA contributing pixels)
};
//! Definition of one raster layer for alignment
struct Item
{
Item( const QString& input, const QString& output )
: inputFilename( input )
, outputFilename( output )
, resampleMethod( RA_NearestNeighbour )
, rescaleValues( false )
, srcCellSizeInDestCRS( 0.0 )
{}
//! filename of the source raster
QString inputFilename;
//! filename of the newly created aligned raster (will be overwritten if exists already)
QString outputFilename;
//! resampling method to be used
ResampleAlg resampleMethod;
//! rescaling of values according to the change of pixel size
bool rescaleValues;
// private part
//! used for rescaling of values (if necessary)
double srcCellSizeInDestCRS;
};
typedef QList<Item> List;
//! Helper struct to be sub-classed for progress reporting
struct ProgressHandler
{
//! Method to be overridden for progress reporting.
//! @param complete Overall progress of the alignment operation
//! @return false if the execution should be cancelled, true otherwise
virtual bool progress( double complete ) = 0;
virtual ~ProgressHandler() {}
};
//! Assign a progress handler instance. Does not take ownership. nullptr can be passed.
void setProgressHandler( ProgressHandler* progressHandler ) { mProgressHandler = progressHandler; }
//! Get associated progress handler. May be nullptr (default)
ProgressHandler* progressHandler() const { return mProgressHandler; }
//! Set list of rasters that will be aligned
void setRasters( const List& list ) { mRasters = list; }
//! Get list of rasters that will be aligned
List rasters() const { return mRasters; }
void setGridOffset( QPointF offset ) { mGridOffsetX = offset.x(); mGridOffsetY = offset.y(); }
QPointF gridOffset() const { return QPointF( mGridOffsetX, mGridOffsetY ); }
//! Set output cell size
void setCellSize( double x, double y ) { return setCellSize( QSizeF( x, y ) ); }
//! Set output cell size
void setCellSize( QSizeF size ) { mCellSizeX = size.width(); mCellSizeY = size.height(); }
//! Get output cell size
QSizeF cellSize() const { return QSizeF( mCellSizeX, mCellSizeY ); }
//! Set the output CRS in WKT format
void setDestinationCRS( const QString& crsWkt ) { mCrsWkt = crsWkt; }
//! Get the output CRS in WKT format
QString destinationCRS() const { return mCrsWkt; }
//! Configure clipping extent (region of interest).
//! No extra clipping is done if the rectangle is null
void setClipExtent( double xmin, double ymin, double xmax, double ymax );
//! Configure clipping extent (region of interest).
//! No extra clipping is done if the rectangle is null
void setClipExtent( const QgsRectangle& extent );
//! Get clipping extent (region of interest).
//! No extra clipping is done if the rectangle is null
QgsRectangle clipExtent() const;
//! Set destination CRS, cell size and grid offset from a raster file.
//! The user may provide custom values for some of the parameters - in such case
//! only the remaining parameters are calculated.
//!
//! If default CRS is used, the parameters are set according to the raster file's geo-transform.
//! If a custom CRS is provided, suggested reprojection is calculated first (using GDAL) in order
//! to determine suitable defaults for cell size and grid offset.
//!
//! @return true on success (may fail if it is not possible to reproject raster to given CRS)
bool setParametersFromRaster( const RasterInfo& rasterInfo, const QString& customCRSWkt = QString(), QSizeF customCellSize = QSizeF(), QPointF customGridOffset = QPointF( -1, -1 ) );
//! Overridden variant for convenience, taking filename instead RasterInfo object.
//! See the other variant for details.
bool setParametersFromRaster( const QString& filename, const QString& customCRSWkt = QString(), QSizeF customCellSize = QSizeF(), QPointF customGridOffset = QPointF( -1, -1 ) );
//! Determine destination extent from the input rasters and calculate derived values
//! @return true on success, sets error on error (see errorMessage())
bool checkInputParameters();
//! Return expected size of the resulting aligned raster
//! @note first need to run checkInputParameters() which returns with success
QSize alignedRasterSize() const;
//! Return expected extent of the resulting aligned raster
//! @note first need to run checkInputParameters() which returns with success
QgsRectangle alignedRasterExtent() const;
//! Run the alignment process
//! @return true on success, sets error on error (see errorMessage())
bool run();
//! Return error from a previous run() call.
//! Error message is empty if run() succeeded (returned true)
QString errorMessage() const { return mErrorMessage; }
//! write contents of the object to standard error stream - for debugging
void dump() const;
//! Return index of the layer which has smallest cell size (returns -1 on error)
int suggestedReferenceLayer() const;
protected:
//! Internal function for processing of one raster (1. create output, 2. do the alignment)
bool createAndWarp( const Item& raster );
//! Determine suggested output of raster warp to a different CRS. Returns true on success
static bool suggestedWarpOutput( const RasterInfo& info, const QString& destWkt, QSizeF* cellSize = nullptr, QPointF* gridOffset = nullptr, QgsRectangle* rect = nullptr );
protected:
// set by the client
//! Object that facilitates reporting of progress / cancellation
ProgressHandler* mProgressHandler;
//! Last error message from run()
QString mErrorMessage;
//! List of rasters to be aligned (with their output files and other options)
List mRasters;
//! Destination CRS - stored in well-known text (WKT) format
QString mCrsWkt;
//! Destination cell size
double mCellSizeX, mCellSizeY;
//! Destination grid offset - expected to be in interval <0,cellsize)
double mGridOffsetX, mGridOffsetY;
//! Optional clip extent: sets "requested area" which be extended to fit the raster grid.
//! Clipping not done if all coords are zeroes.
double mClipExtent[4];
// derived data from other members
//! Computed geo-transform
double mGeoTransform[6];
//! Computed raster grid width/height
int mXSize, mYSize;
};
#endif // QGSALIGNRASTER_H
|