30using namespace Qt::StringLiterals;
34QString QgsTinMeshCreationAlgorithm::group()
const
36 return QObject::tr(
"Mesh" );
39QString QgsTinMeshCreationAlgorithm::groupId()
const
44QString QgsTinMeshCreationAlgorithm::shortDescription()
const
46 return QObject::tr(
"Creates a TIN mesh layer from vector layers." );
49QString QgsTinMeshCreationAlgorithm::shortHelpString()
const
51 return QObject::tr(
"This algorithm creates a TIN mesh layer from vector layers." );
54QStringList QgsTinMeshCreationAlgorithm::tags()
const
56 return QObject::tr(
"tin,mesh,vector,triangulation,irregular,network" ).split(
',' );
59QString QgsTinMeshCreationAlgorithm::name()
const
61 return u
"tinmeshcreation"_s;
64QString QgsTinMeshCreationAlgorithm::displayName()
const
66 return QObject::tr(
"TIN Mesh Creation" );
71 return new QgsTinMeshCreationAlgorithm();
74void QgsTinMeshCreationAlgorithm::initAlgorithm(
const QVariantMap &configuration )
76 Q_UNUSED( configuration );
81 QList<QgsMeshDriverMetadata> driverList;
88 const QString name = driverMeta.name();
89 mDriverSuffix[name] = driverMeta.writeMeshFrameOnFileSuffix();
90 mAvailableFormat.append( name );
93 addParameter(
new QgsProcessingParameterEnum( u
"MESH_FORMAT"_s, QObject::tr(
"Output format" ), mAvailableFormat,
false, 0 ) );
94 addParameter(
new QgsProcessingParameterCrs( u
"CRS_OUTPUT"_s, QObject::tr(
"Output coordinate system" ), QVariant(),
true ) );
100 const QVariant layersVariant = parameters.value( parameterDefinition( u
"SOURCE_DATA"_s )->name() );
101 if ( layersVariant.userType() != QMetaType::Type::QVariantList )
104 const QVariantList layersList = layersVariant.toList();
110 for (
const QVariant &layer : layersList )
115 if ( layer.userType() != QMetaType::Type::QVariantMap )
117 const QVariantMap layerMap = layer.toMap();
118 const QString layerSource = layerMap.value( u
"source"_s ).toString();
120 const int attributeIndex = layerMap.value( u
"attributeIndex"_s ).toInt();
124 if ( !featureSource )
128 const long long featureCount = featureSource->featureCount();
132 mVerticesLayer.append( { featureSource->getFeatures(), transform, attributeIndex, featureCount } );
135 mBreakLinesLayer.append( { featureSource->getFeatures(), transform, attributeIndex, featureCount } );
142 if ( mVerticesLayer.isEmpty() && mBreakLinesLayer.isEmpty() )
154 triangulation.
setCrs( destinationCrs );
156 if ( !mVerticesLayer.isEmpty() && feedback )
157 feedback->
setProgressText( QObject::tr(
"Adding vertices layer(s) to the triangulation" ) );
158 for ( Layer &l : mVerticesLayer )
162 triangulation.
addVertices( l.fit, l.attributeIndex, l.transform, feedback, l.featureCount );
165 if ( !mBreakLinesLayer.isEmpty() && feedback )
166 feedback->
setProgressText( QObject::tr(
"Adding break lines layer(s) to the triangulation" ) );
167 for ( Layer &l : mBreakLinesLayer )
171 triangulation.
addBreakLines( l.fit, l.attributeIndex, l.transform, feedback, l.featureCount );
175 return QVariantMap();
177 QString fileName = parameterAsFile( parameters, u
"OUTPUT_MESH"_s, context );
178 const int driverIndex = parameterAsEnum( parameters, u
"MESH_FORMAT"_s, context );
179 const QString driver = mAvailableFormat.at( driverIndex );
181 feedback->
setProgressText( QObject::tr(
"Creating mesh from triangulation" ) );
185 return QVariantMap();
193 if ( providerMetadata )
194 providerMetadata->
createMeshData( mesh, fileName, driver, destinationCrs );
199 if ( driver ==
"SELAFIN" )
201 addZValueDataset( fileName, mesh, driver );
205 ret[u
"OUTPUT_MESH"_s] = fileName;
210void QgsTinMeshCreationAlgorithm::addZValueDataset(
const QString &fileName,
const QgsMesh &mesh,
const QString &driver )
212 auto tempLayer = std::make_unique<QgsMeshLayer>( fileName,
"temp",
"mdal" );
214 tempLayer->addDatasets( zValueDatasetGroup );
215 const int datasetGroupIndex = tempLayer->datasetGroupCount() - 1;
216 tempLayer->saveDataset( fileName, datasetGroupIndex, driver );
219bool QgsTinMeshCreationAlgorithm::canExecute( QString *errorMessage )
const
221 if ( mAvailableFormat.count() == 0 )
223 *errorMessage = QObject::tr(
"MDAL not available" );
ProcessingTinInputLayerType
Defines the type of input layer for a Processing TIN input.
@ BreakLines
Input that adds vertices and break lines.
@ Vertices
Input that adds only vertices.
Represents a coordinate reference system (CRS).
bool isValid() const
Returns whether this CRS is correctly initialized and usable.
bool isCanceled() const
Tells whether the operation has been canceled already.
static QString ensureFileNameHasExtension(const QString &fileName, const QStringList &extensions)
Ensures that a fileName ends with an extension from the provided list of extensions.
Handles mesh creation with Delaunay constrained triangulation.
bool addBreakLines(QgsFeatureIterator &lineFeatureIterator, int valueAttribute, const QgsCoordinateTransform &transformContext, QgsFeedback *feedback=nullptr, long featureCount=1)
Adds break lines from a vector layer, return true if successful.
void setCrs(const QgsCoordinateReferenceSystem &crs)
Sets the coordinate reference system used for the triangulation.
bool addVertices(QgsFeatureIterator &vertexFeatureIterator, int valueAttribute, const QgsCoordinateTransform &transform, QgsFeedback *feedback=nullptr, long featureCount=1)
Adds vertices to the triangulation from a feature iterator, return true if successful.
QgsMesh triangulatedMesh(QgsFeedback *feedback=nullptr) const
Returns the triangulated mesh.
Convenience class that can be used to obtain a dataset group on vertices that represents the Z value ...
Abstract base class for processing algorithms.
Details for layers to load into projects.
Contains information about the context in which a processing algorithm is executed.
QgsCoordinateTransformContext transformContext() const
Returns the coordinate transform context.
void addLayerToLoadOnCompletion(const QString &layer, const QgsProcessingContext::LayerDetails &details)
Adds a layer to load (by ID or datasource) into the canvas upon completion of the algorithm or model.
QgsProject * project() const
Returns the project in which the algorithm is being executed.
Base class for providing feedback from a processing algorithm.
virtual void setProgressText(const QString &text)
Sets a progress report text string.
A coordinate reference system parameter for processing algorithms.
An enum based parameter for processing algorithms, allowing for selection from predefined values.
A generic file based destination parameter, for specifying the destination path for a file (non-map l...
@ Mesh
Mesh layer type, since QGIS 3.6.
static QgsProcessingFeatureSource * variantToSource(const QVariant &value, QgsProcessingContext &context, const QVariant &fallbackValue=QVariant())
Converts a variant value to a new feature source.
QgsCoordinateReferenceSystem crs
static QgsProviderRegistry * instance(const QString &pluginPath=QString())
Means of accessing canonical single instance.
QgsProviderMetadata * providerMetadata(const QString &providerKey) const
Returns metadata of the provider or nullptr if not found.
Mesh - vertices, edges and faces.