23 QString QgsRasterSamplingAlgorithm::name()
 const 
   25   return QStringLiteral( 
"rastersampling" );
 
   28 QString QgsRasterSamplingAlgorithm::displayName()
 const 
   30   return QObject::tr( 
"Sample raster values" );
 
   33 QStringList QgsRasterSamplingAlgorithm::tags()
 const 
   35   return QObject::tr( 
"extract,point,pixel,value" ).split( 
',' );
 
   38 QString QgsRasterSamplingAlgorithm::group()
 const 
   40   return QObject::tr( 
"Raster analysis" );
 
   43 QString QgsRasterSamplingAlgorithm::groupId()
 const 
   45   return QStringLiteral( 
"rasteranalysis" );
 
   48 QString QgsRasterSamplingAlgorithm::shortDescription()
 const 
   50   return QObject::tr( 
"Samples raster values under a set of points." );
 
   53 QString QgsRasterSamplingAlgorithm::shortHelpString()
 const 
   55   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" 
   56                       "If the raster layer has more than one band, all the band values are sampled." );
 
   59 QgsRasterSamplingAlgorithm *QgsRasterSamplingAlgorithm::createInstance()
 const 
   61   return new QgsRasterSamplingAlgorithm();
 
   64 void QgsRasterSamplingAlgorithm::initAlgorithm( 
const QVariantMap & )
 
   69   addParameter( 
new QgsProcessingParameterString( QStringLiteral( 
"COLUMN_PREFIX" ), QObject::tr( 
"Output column prefix" ), QStringLiteral( 
"SAMPLE_" ), 
false, 
true ) );
 
   75   QgsRasterLayer *layer = parameterAsRasterLayer( parameters, QStringLiteral( 
"RASTERCOPY" ), context );
 
   88   std::unique_ptr< QgsFeatureSource > source( parameterAsSource( parameters, QStringLiteral( 
"INPUT" ), context ) );
 
   92   QString fieldPrefix = parameterAsString( parameters, QStringLiteral( 
"COLUMN_PREFIX" ), context );
 
   95   for ( 
int band = 1; band <= mBandCount; band++ )
 
  101     newFields.
append( 
QgsField( QStringLiteral( 
"%1%2" ).arg( fieldPrefix, QString::number( band ) ), intSafe ? QVariant::Int : QVariant::Double ) );
 
  102     emptySampleAttributes += QVariant();
 
  107   std::unique_ptr< QgsFeatureSink > sink( parameterAsSink( parameters, QStringLiteral( 
"OUTPUT" ), context, dest, fields,
 
  108                                           source->wkbType(), source->sourceCrs() ) );
 
  112   const long count = source->featureCount();
 
  113   const double step = count > 0 ? 100.0 / count : 1;
 
  132       attributes += emptySampleAttributes;
 
  133       outputFeature.setAttributes( attributes );
 
  135       feedback->
reportError( QObject::tr( 
"No geometry attached to feature %1." ).arg( feature.
id() ) );
 
  142       attributes += emptySampleAttributes;
 
  143       outputFeature.setAttributes( attributes );
 
  145       feedback->
reportError( QObject::tr( 
"Impossible to sample data of multipart feature %1." ).arg( feature.
id() ) );
 
  148     QgsPointXY point( *( geometry.
isMultipart() ? qgsgeometry_cast< const QgsPoint * >( qgsgeometry_cast< const QgsMultiPoint * >( geometry.
constGet() )->geometryN( 0 ) ) :
 
  149                          qgsgeometry_cast< const QgsPoint * >( geometry.
constGet() ) ) );
 
  152       point = ct.transform( point );
 
  156       attributes += emptySampleAttributes;
 
  157       outputFeature.setAttributes( attributes );
 
  159       feedback->
reportError( QObject::tr( 
"Could not reproject feature %1 to raster CRS." ).arg( feature.
id() ) );
 
  163     for ( 
int band = 1; band <= mBandCount; band ++ )
 
  166       double value = mDataProvider->sample( point, band, &ok );
 
  167       attributes += ok ? value : QVariant();
 
  169     outputFeature.setAttributes( attributes );
 
  174   outputs.insert( QStringLiteral( 
"OUTPUT" ), dest );
 
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)
This class 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 SIP_HOLDGIL
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, FieldOrigin origin=OriginProvider, int originIndex=-1)
Appends a field. The field must have unique name, otherwise it is rejected (returns false)
A geometry is the spatial representation of a feature.
const QgsAbstractGeometry * constGet() const SIP_HOLDGIL
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
QgsAbstractGeometry * get()
Returns a modifiable (non-const) reference to the underlying abstract geometry primitive.
bool isMultipart() const SIP_HOLDGIL
Returns true if WKB of the geometry is of WKBMulti* type.
QgsCoordinateReferenceSystem crs
A class to represent a 2D point.
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).
@ TypeVectorPoint
Vector point layers.
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.