30QString QgsTinMeshCreationAlgorithm::group()
const
32 return QObject::tr(
"Mesh" );
35QString QgsTinMeshCreationAlgorithm::groupId()
const
37 return QStringLiteral(
"mesh" );
40QString QgsTinMeshCreationAlgorithm::shortDescription()
const
42 return QObject::tr(
"Creates a TIN mesh layer from vector layers." );
45QString QgsTinMeshCreationAlgorithm::shortHelpString()
const
47 return QObject::tr(
"This algorithm creates a TIN mesh layer from vector layers." );
50QStringList QgsTinMeshCreationAlgorithm::tags()
const
52 return QObject::tr(
"tin,mesh,vector,triangulation,irregular,network" ).split(
',' );
55QString QgsTinMeshCreationAlgorithm::name()
const
57 return QStringLiteral(
"tinmeshcreation" );
60QString QgsTinMeshCreationAlgorithm::displayName()
const
62 return QObject::tr(
"TIN Mesh Creation" );
67 return new QgsTinMeshCreationAlgorithm();
70void QgsTinMeshCreationAlgorithm::initAlgorithm(
const QVariantMap &configuration )
72 Q_UNUSED( configuration );
77 QList<QgsMeshDriverMetadata> driverList;
84 const QString name = driverMeta.name();
85 mDriverSuffix[name] = driverMeta.writeMeshFrameOnFileSuffix();
86 mAvailableFormat.append( name );
89 addParameter(
new QgsProcessingParameterEnum( QStringLiteral(
"MESH_FORMAT" ), QObject::tr(
"Output format" ), mAvailableFormat,
false, 0 ) );
90 addParameter(
new QgsProcessingParameterCrs( QStringLiteral(
"CRS_OUTPUT" ), QObject::tr(
"Output coordinate system" ), QVariant(),
true ) );
96 const QVariant layersVariant = parameters.value( parameterDefinition( QStringLiteral(
"SOURCE_DATA" ) )->name() );
97 if ( layersVariant.userType() != QMetaType::Type::QVariantList )
100 const QVariantList layersList = layersVariant.toList();
106 for (
const QVariant &layer : layersList )
111 if ( layer.userType() != QMetaType::Type::QVariantMap )
113 const QVariantMap layerMap = layer.toMap();
114 const QString layerSource = layerMap.value( QStringLiteral(
"source" ) ).toString();
116 const int attributeIndex = layerMap.value( QStringLiteral(
"attributeIndex" ) ).toInt();
120 if ( !featureSource )
124 const long long featureCount = featureSource->featureCount();
128 mVerticesLayer.append( { featureSource->getFeatures(), transform, attributeIndex, featureCount } );
131 mBreakLinesLayer.append( { featureSource->getFeatures(), transform, attributeIndex, featureCount } );
138 if ( mVerticesLayer.isEmpty() && mBreakLinesLayer.isEmpty() )
150 triangulation.
setCrs( destinationCrs );
152 if ( !mVerticesLayer.isEmpty() && feedback )
153 feedback->
setProgressText( QObject::tr(
"Adding vertices layer(s) to the triangulation" ) );
154 for ( Layer &l : mVerticesLayer )
158 triangulation.
addVertices( l.fit, l.attributeIndex, l.transform, feedback, l.featureCount );
161 if ( !mBreakLinesLayer.isEmpty() && feedback )
162 feedback->
setProgressText( QObject::tr(
"Adding break lines layer(s) to the triangulation" ) );
163 for ( Layer &l : mBreakLinesLayer )
167 triangulation.
addBreakLines( l.fit, l.attributeIndex, l.transform, feedback, l.featureCount );
171 return QVariantMap();
173 QString fileName = parameterAsFile( parameters, QStringLiteral(
"OUTPUT_MESH" ), context );
174 const int driverIndex = parameterAsEnum( parameters, QStringLiteral(
"MESH_FORMAT" ), context );
175 const QString driver = mAvailableFormat.at( driverIndex );
177 feedback->
setProgressText( QObject::tr(
"Creating mesh from triangulation" ) );
181 return QVariantMap();
189 if ( providerMetadata )
190 providerMetadata->
createMeshData( mesh, fileName, driver, destinationCrs );
195 if ( driver ==
"SELAFIN" )
197 addZValueDataset( fileName, mesh, driver );
201 ret[QStringLiteral(
"OUTPUT_MESH" )] = fileName;
206void QgsTinMeshCreationAlgorithm::addZValueDataset(
const QString &fileName,
const QgsMesh &mesh,
const QString &driver )
208 auto tempLayer = std::make_unique<QgsMeshLayer>( fileName,
"temp",
"mdal" );
210 tempLayer->addDatasets( zValueDatasetGroup );
211 const int datasetGroupIndex = tempLayer->datasetGroupCount() - 1;
212 tempLayer->saveDataset( fileName, datasetGroupIndex, driver );
215bool QgsTinMeshCreationAlgorithm::canExecute( QString *errorMessage )
const
217 if ( mAvailableFormat.count() == 0 )
219 *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.