23QString QgsPointsLayerFromTableAlgorithm::name()
const
25 return QStringLiteral(
"createpointslayerfromtable" );
28QString QgsPointsLayerFromTableAlgorithm::displayName()
const
30 return QObject::tr(
"Create points layer from table" );
33QStringList QgsPointsLayerFromTableAlgorithm::tags()
const
35 return QObject::tr(
"points,create,values,attributes" ).split(
',' );
38QString QgsPointsLayerFromTableAlgorithm::group()
const
40 return QObject::tr(
"Vector creation" );
43QString QgsPointsLayerFromTableAlgorithm::groupId()
const
45 return QStringLiteral(
"vectorcreation" );
48QString QgsPointsLayerFromTableAlgorithm::shortHelpString()
const
50 return QObject::tr(
"This algorithm generates a points layer based on the values from an input table." )
51 + QStringLiteral(
"\n\n" )
52 + QObject::tr(
"The table must contain a field with the X coordinate of each point and another "
53 "one with the Y coordinate, as well as optional fields with Z and M values. A CRS "
54 "for the output layer has to be specified, and the coordinates in the table are "
55 "assumed to be expressed in the units used by that CRS. The attributes table of "
56 "the resulting layer will be the input table." );
59QgsPointsLayerFromTableAlgorithm *QgsPointsLayerFromTableAlgorithm::createInstance()
const
61 return new QgsPointsLayerFromTableAlgorithm();
64void QgsPointsLayerFromTableAlgorithm::initAlgorithm(
const QVariantMap & )
76 addParameter(
new QgsProcessingParameterCrs( QStringLiteral(
"TARGET_CRS" ), QObject::tr(
"Target CRS" ), QStringLiteral(
"EPSG:4326" ) ) );
83 std::unique_ptr< QgsProcessingFeatureSource > featureSource( parameterAsSource( parameters, QStringLiteral(
"INPUT" ), context ) );
87 const QgsFields fields = featureSource->fields();
88 const int xFieldIndex = fields.
lookupField( parameterAsString( parameters, QStringLiteral(
"XFIELD" ), context ) );
89 const int yFieldIndex = fields.
lookupField( parameterAsString( parameters, QStringLiteral(
"YFIELD" ), context ) );
91 QString fieldName = parameterAsString( parameters, QStringLiteral(
"ZFIELD" ), context );
93 if ( !fieldName.isEmpty() )
96 fieldName = parameterAsString( parameters, QStringLiteral(
"MFIELD" ), context );
98 if ( !fieldName.isEmpty() )
102 if ( zFieldIndex >= 0 )
104 if ( mFieldIndex >= 0 )
114 const double step = featureSource->featureCount() > 0 ? 100.0 / featureSource->featureCount() : 1;
133 const double x = attrs.at( xFieldIndex ).toDouble( &xOk );
134 const double y = attrs.at( yFieldIndex ).toDouble( &yOk );
141 point.addZValue( attrs.at( zFieldIndex ).toDouble() );
144 point.addMValue( attrs.at( mFieldIndex ).toDouble() );
149 if ( !sink->addFeature( f ) )
156 outputs.insert( QStringLiteral(
"OUTPUT" ), dest );
WkbType
The WKB type describes the number of dimensions a geometry has.
This class represents a coordinate reference system (CRS).
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).
QgsFeatureRequest & setFlags(QgsFeatureRequest::Flags flags)
Sets flags that affect how features will be fetched.
@ NoGeometry
Geometry is not required. It may still be returned if e.g. required for a filter condition.
@ RegeneratePrimaryKey
This flag indicates, that a primary key field cannot be guaranteed to be unique and the sink should i...
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
bool isCanceled() const
Tells whether the operation has been canceled already.
void setProgress(double progress)
Sets the current progress for the feedback object.
Container of fields for a vector layer.
int lookupField(const QString &fieldName) const
Looks up field's index from the field name.
A geometry is the spatial representation of a feature.
Point geometry type, with support for z-dimension and m-values.
Contains information about the context in which a processing algorithm is executed.
Custom exception class for processing related exceptions.
@ FlagSkipGeometryValidityChecks
Invalid geometry checks should always be skipped. This flag can be useful for algorithms which always...
Base class for providing feedback from a processing algorithm.
A coordinate reference system parameter for processing algorithms.
A feature sink output for processing algorithms.
An input feature source (such as vector layers) parameter for processing algorithms.
A vector layer or feature source field parameter for processing algorithms.
@ TypeVector
Tables (i.e. vector layers with or without geometry). When used for a sink this indicates the sink ha...
@ TypeVectorPoint
Vector point layers.
static bool isNull(const QVariant &variant)
Returns true if the specified variant should be considered a NULL value.
static Qgis::WkbType addM(Qgis::WkbType type)
Adds the m dimension to a WKB type and returns the new type.
static Qgis::WkbType addZ(Qgis::WkbType type)
Adds the z dimension to a WKB type and returns the new type.
const QgsCoordinateReferenceSystem & crs