Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmsubdivide.cpp 3 : : --------------------- 4 : : begin : April 2017 5 : : copyright : (C) 2017 by Nyall Dawson 6 : : email : nyall dot dawson 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 : : #include "qgsalgorithmsubdivide.h" 19 : : 20 : : ///@cond PRIVATE 21 : : 22 : 0 : void QgsSubdivideAlgorithm::initParameters( const QVariantMap & ) 23 : : { 24 : 0 : std::unique_ptr< QgsProcessingParameterNumber> nodes = std::make_unique< QgsProcessingParameterNumber >( QStringLiteral( "MAX_NODES" ), QObject::tr( "Maximum nodes in parts" ), QgsProcessingParameterNumber::Integer, 25 : 0 : 256, false, 8, 100000 ); 26 : 0 : nodes->setIsDynamic( true ); 27 : 0 : nodes->setDynamicPropertyDefinition( QgsPropertyDefinition( QStringLiteral( "MAX_NODES" ), QObject::tr( "Maximum nodes in parts" ), QgsPropertyDefinition::Integer ) ); 28 : 0 : nodes->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) ); 29 : : 30 : 0 : addParameter( nodes.release() ); 31 : 0 : } 32 : : 33 : 0 : QString QgsSubdivideAlgorithm::name() const 34 : : { 35 : 0 : return QStringLiteral( "subdivide" ); 36 : : } 37 : : 38 : 0 : QString QgsSubdivideAlgorithm::displayName() const 39 : : { 40 : 0 : return QObject::tr( "Subdivide" ); 41 : : } 42 : : 43 : 0 : QStringList QgsSubdivideAlgorithm::tags() const 44 : : { 45 : 0 : return QObject::tr( "subdivide,segmentize,split,tessellate" ).split( ',' ); 46 : 0 : } 47 : : 48 : 0 : QString QgsSubdivideAlgorithm::group() const 49 : : { 50 : 0 : return QObject::tr( "Vector geometry" ); 51 : : } 52 : : 53 : 0 : QString QgsSubdivideAlgorithm::groupId() const 54 : : { 55 : 0 : return QStringLiteral( "vectorgeometry" ); 56 : : } 57 : : 58 : 0 : QString QgsSubdivideAlgorithm::shortHelpString() const 59 : : { 60 : 0 : return QObject::tr( "Subdivides the geometry. The returned geometry will be a collection containing subdivided parts " 61 : : "from the original geometry, where no part has more then the specified maximum number of nodes.\n\n" 62 : : "This is useful for dividing a complex geometry into less complex parts, which are better able to be spatially " 63 : : "indexed and faster to perform further operations such as intersects on. The returned geometry parts may " 64 : : "not be valid and may contain self-intersections.\n\n" 65 : : "Curved geometries will be segmentized before subdivision." ); 66 : : } 67 : : 68 : 0 : QgsSubdivideAlgorithm *QgsSubdivideAlgorithm::createInstance() const 69 : : { 70 : 0 : return new QgsSubdivideAlgorithm(); 71 : 0 : } 72 : : 73 : 0 : QString QgsSubdivideAlgorithm::outputName() const 74 : : { 75 : 0 : return QObject::tr( "Subdivided" ); 76 : : } 77 : : 78 : 0 : QgsWkbTypes::Type QgsSubdivideAlgorithm::outputWkbType( QgsWkbTypes::Type inputWkbType ) const 79 : : { 80 : 0 : return QgsWkbTypes::multiType( inputWkbType ); 81 : : } 82 : : 83 : 0 : QgsFeatureList QgsSubdivideAlgorithm::processFeature( const QgsFeature &f, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) 84 : : { 85 : 0 : QgsFeature feature = f; 86 : 0 : if ( feature.hasGeometry() ) 87 : : { 88 : 0 : int maxNodes = mMaxNodes; 89 : 0 : if ( mDynamicMaxNodes ) 90 : 0 : maxNodes = mMaxNodesProperty.valueAsDouble( context.expressionContext(), maxNodes ); 91 : : 92 : 0 : feature.setGeometry( feature.geometry().subdivide( maxNodes ) ); 93 : 0 : if ( !feature.hasGeometry() ) 94 : : { 95 : 0 : feedback->reportError( QObject::tr( "Error calculating subdivision for feature %1" ).arg( feature.id() ) ); 96 : 0 : } 97 : 0 : } 98 : 0 : return QgsFeatureList() << feature; 99 : 0 : } 100 : : 101 : 0 : bool QgsSubdivideAlgorithm::prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback * ) 102 : : { 103 : 0 : mMaxNodes = parameterAsInt( parameters, QStringLiteral( "MAX_NODES" ), context ); 104 : 0 : mDynamicMaxNodes = QgsProcessingParameters::isDynamic( parameters, QStringLiteral( "MAX_NODES" ) ); 105 : 0 : if ( mDynamicMaxNodes ) 106 : 0 : mMaxNodesProperty = parameters.value( QStringLiteral( "MAX_NODES" ) ).value< QgsProperty >(); 107 : : 108 : 0 : return true; 109 : 0 : } 110 : : 111 : : 112 : : 113 : : ///@endcond 114 : : 115 : : 116 : :