Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmtinmeshcreation.h 3 : : --------------------------- 4 : : begin : August 2020 5 : : copyright : (C) 2020 by Vincent Cloarec 6 : : email : vcloarec at gmail dot com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #ifndef QGSALGORITHMTINMESHCREATION_H 19 : : #define QGSALGORITHMTINMESHCREATION_H 20 : : 21 : : #define SIP_NO_FILE 22 : : 23 : : #include "qgsprocessingalgorithm.h" 24 : : 25 : : ///@cond PRIVATE 26 : : struct QgsMesh; 27 : : 28 : 0 : class QgsTinMeshCreationAlgorithm: public QgsProcessingAlgorithm 29 : : { 30 : : public: 31 : : 32 : : QString group() const override; 33 : : QString groupId() const override; 34 : : QString shortHelpString() const override; 35 : : QString name() const override; 36 : : QString displayName() const override; 37 : : bool canExecute( QString *errorMessage ) const override; 38 : : 39 : : protected: 40 : : QgsProcessingAlgorithm *createInstance() const override; 41 : : 42 : : void initAlgorithm( const QVariantMap &configuration = QVariantMap() ) override; 43 : : bool prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 44 : : QVariantMap processAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 45 : : 46 : : private: 47 : : QStringList mAvailableFormat; 48 : : 49 : 0 : struct Layer 50 : : { 51 : : QgsFeatureIterator fit; 52 : : QgsCoordinateTransform transform; 53 : : int attributeIndex; 54 : : int featureCount; 55 : : }; 56 : : 57 : : QList<Layer> mVerticesLayer; 58 : : QList<Layer> mBreakLinesLayer; 59 : : 60 : : void addZValueDataset( const QString &fileName, const QgsMesh &mesh, const QString &driver ); 61 : : }; 62 : : 63 : : ///@endcond PRIVATE 64 : : 65 : : #endif // QGSALGORITHMTINMESHCREATION_H