24QString QgsRasterSamplingAlgorithm::name()
const
26 return QStringLiteral(
"rastersampling" );
29QString QgsRasterSamplingAlgorithm::displayName()
const
31 return QObject::tr(
"Sample raster values" );
34QStringList QgsRasterSamplingAlgorithm::tags()
const
36 return QObject::tr(
"extract,point,pixel,value" ).split(
',' );
39QString QgsRasterSamplingAlgorithm::group()
const
41 return QObject::tr(
"Raster analysis" );
44QString QgsRasterSamplingAlgorithm::groupId()
const
46 return QStringLiteral(
"rasteranalysis" );
49QString QgsRasterSamplingAlgorithm::shortDescription()
const
51 return QObject::tr(
"Samples raster values under a set of points." );
54QString QgsRasterSamplingAlgorithm::shortHelpString()
const
56 return QObject::tr(
"This algorithm creates a new vector layer with the same attributes of the input layer and the raster values corresponding on the point location.\n\n"
57 "If the raster layer has more than one band, all the band values are sampled." );
60QgsRasterSamplingAlgorithm *QgsRasterSamplingAlgorithm::createInstance()
const
62 return new QgsRasterSamplingAlgorithm();
65void QgsRasterSamplingAlgorithm::initAlgorithm(
const QVariantMap & )
70 addParameter(
new QgsProcessingParameterString( QStringLiteral(
"COLUMN_PREFIX" ), QObject::tr(
"Output column prefix" ), QStringLiteral(
"SAMPLE_" ),
false,
true ) );
76 QgsRasterLayer *layer = parameterAsRasterLayer( parameters, QStringLiteral(
"RASTERCOPY" ), context );
89 std::unique_ptr<QgsFeatureSource> source( parameterAsSource( parameters, QStringLiteral(
"INPUT" ), context ) );
93 const QString fieldPrefix = parameterAsString( parameters, QStringLiteral(
"COLUMN_PREFIX" ), context );
96 for (
int band = 1; band <= mBandCount; band++ )
101 newFields.
append(
QgsField( QStringLiteral(
"%1%2" ).arg( fieldPrefix, QString::number( band ) ), intSafe ? QMetaType::Type::Int : QMetaType::Type::Double ) );
102 emptySampleAttributes += QVariant();
107 std::unique_ptr<QgsFeatureSink> sink( parameterAsSink( parameters, QStringLiteral(
"OUTPUT" ), context, dest, fields, source->wkbType(), source->sourceCrs() ) );
111 const long count = source->featureCount();
112 const double step = count > 0 ? 100.0 / count : 1;
131 attributes += emptySampleAttributes;
132 outputFeature.setAttributes( attributes );
135 feedback->
reportError( QObject::tr(
"No geometry attached to feature %1." ).arg( feature.
id() ) );
142 attributes += emptySampleAttributes;
143 outputFeature.setAttributes( attributes );
146 feedback->
reportError( QObject::tr(
"Impossible to sample data of multipart feature %1." ).arg( feature.
id() ) );
152 point = ct.transform( point );
156 attributes += emptySampleAttributes;
157 outputFeature.setAttributes( attributes );
160 feedback->
reportError( QObject::tr(
"Could not reproject feature %1 to raster CRS." ).arg( feature.
id() ) );
164 for (
int band = 1; band <= mBandCount; band++ )
167 const double value = mDataProvider->sample( point, band, &ok );
168 attributes += ok ? value : QVariant();
170 outputFeature.setAttributes( attributes );
178 outputs.insert( QStringLiteral(
"OUTPUT" ), dest );
@ VectorPoint
Vector point layers.
DataType
Raster data types.
@ Int16
Sixteen bit signed integer (qint16).
@ UInt16
Sixteen bit unsigned integer (quint16).
@ Byte
Eight bit unsigned integer (quint8).
@ Int32
Thirty two bit signed integer (qint32).
@ UInt32
Thirty two bit unsigned integer (quint32).
virtual int partCount() const =0
Returns count of parts contained in the geometry.
Defines a QGIS exception class.
Wrapper for iterator of features from vector data provider or vector layer.
bool nextFeature(QgsFeature &f)
Fetch next feature and stores in f, returns true on success.
Wraps a request for features to a vector layer (or directly its vector data provider).
@ FastInsert
Use faster inserts, at the cost of updating the passed features to reflect changes made at the provid...
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
bool hasGeometry() const
Returns true if the feature has an associated geometry.
bool isCanceled() const
Tells whether the operation has been canceled already.
void setProgress(double progress)
Sets the current progress for the feedback object.
Encapsulate a field in an attribute table or data source.
Container of fields for a vector layer.
bool append(const QgsField &field, Qgis::FieldOrigin origin=Qgis::FieldOrigin::Provider, int originIndex=-1)
Appends a field.
A geometry is the spatial representation of a feature.
QgsAbstractGeometry * get()
Returns a modifiable (non-const) reference to the underlying abstract geometry primitive.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
bool isMultipart() const
Returns true if WKB of the geometry is of WKBMulti* type.
QgsCoordinateReferenceSystem crs
Contains information about the context in which a processing algorithm is executed.
QgsCoordinateTransformContext transformContext() const
Returns the coordinate transform context.
Custom exception class for processing related exceptions.
Base class for providing feedback from a processing algorithm.
virtual void reportError(const QString &error, bool fatalError=false)
Reports that the algorithm encountered an error while executing.
A feature sink output for processing algorithms.
An input feature source (such as vector layers) parameter for processing algorithms.
A raster layer parameter for processing algorithms.
A string parameter for processing algorithms.
static QgsFields combineFields(const QgsFields &fieldsA, const QgsFields &fieldsB, const QString &fieldsBPrefix=QString())
Combines two field lists, avoiding duplicate field names (in a case-insensitive manner).
Base class for raster data providers.
QgsRasterDataProvider * clone() const override=0
Clone itself, create deep copy.
Represents a raster layer.
int bandCount() const
Returns the number of bands in this layer.
QgsRasterDataProvider * dataProvider() override
Returns the source data provider.
T qgsgeometry_cast(QgsAbstractGeometry *geom)