LCOV - code coverage report
Current view: top level - analysis/processing - qgsalgorithmmergelines.cpp (source / functions) Hit Total Coverage
Test: coverage.info.cleaned Lines: 0 34 0.0 %
Date: 2021-03-26 12:19:53 Functions: 0 0 -
Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : /***************************************************************************
       2                 :            :                          qgsalgorithmmergelines.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 "qgsalgorithmmergelines.h"
      19                 :            : 
      20                 :            : ///@cond PRIVATE
      21                 :            : 
      22                 :          0 : QString QgsMergeLinesAlgorithm::name() const
      23                 :            : {
      24                 :          0 :   return QStringLiteral( "mergelines" );
      25                 :            : }
      26                 :            : 
      27                 :          0 : QString QgsMergeLinesAlgorithm::displayName() const
      28                 :            : {
      29                 :          0 :   return QObject::tr( "Merge lines" );
      30                 :            : }
      31                 :            : 
      32                 :          0 : QStringList QgsMergeLinesAlgorithm::tags() const
      33                 :            : {
      34                 :          0 :   return QObject::tr( "line,merge,join,parts" ).split( ',' );
      35                 :          0 : }
      36                 :            : 
      37                 :          0 : QString QgsMergeLinesAlgorithm::group() const
      38                 :            : {
      39                 :          0 :   return QObject::tr( "Vector geometry" );
      40                 :            : }
      41                 :            : 
      42                 :          0 : QString QgsMergeLinesAlgorithm::groupId() const
      43                 :            : {
      44                 :          0 :   return QStringLiteral( "vectorgeometry" );
      45                 :            : }
      46                 :            : 
      47                 :          0 : QString QgsMergeLinesAlgorithm::outputName() const
      48                 :            : {
      49                 :          0 :   return QObject::tr( "Merged" );
      50                 :            : }
      51                 :            : 
      52                 :          0 : QgsProcessing::SourceType QgsMergeLinesAlgorithm::outputLayerType() const
      53                 :            : {
      54                 :          0 :   return QgsProcessing::TypeVectorLine;
      55                 :            : }
      56                 :            : 
      57                 :          0 : QgsWkbTypes::Type QgsMergeLinesAlgorithm::outputWkbType( QgsWkbTypes::Type ) const
      58                 :            : {
      59                 :          0 :   return QgsWkbTypes::MultiLineString;
      60                 :            : }
      61                 :            : 
      62                 :          0 : QString QgsMergeLinesAlgorithm::shortHelpString() const
      63                 :            : {
      64                 :          0 :   return QObject::tr( "This algorithm joins all connected parts of MultiLineString geometries into single LineString geometries.\n\n"
      65                 :            :                       "If any parts of the input MultiLineString geometries are not connected, the resultant "
      66                 :            :                       "geometry will be a MultiLineString containing any lines which could be merged and any non-connected line parts." );
      67                 :            : }
      68                 :            : 
      69                 :          0 : QList<int> QgsMergeLinesAlgorithm::inputLayerTypes() const
      70                 :            : {
      71                 :          0 :   return QList<int>() << QgsProcessing::TypeVectorLine;
      72                 :          0 : }
      73                 :            : 
      74                 :          0 : QgsMergeLinesAlgorithm *QgsMergeLinesAlgorithm::createInstance() const
      75                 :            : {
      76                 :          0 :   return new QgsMergeLinesAlgorithm();
      77                 :            : }
      78                 :            : 
      79                 :          0 : QgsFeatureList QgsMergeLinesAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &, QgsProcessingFeedback *feedback )
      80                 :            : {
      81                 :          0 :   if ( !feature.hasGeometry() )
      82                 :          0 :     return QgsFeatureList() << feature;
      83                 :            : 
      84                 :          0 :   QgsFeature out = feature;
      85                 :          0 :   QgsGeometry outputGeometry = feature.geometry().mergeLines();
      86                 :          0 :   if ( outputGeometry.isNull() )
      87                 :          0 :     feedback->reportError( QObject::tr( "Error merging lines for feature %1" ).arg( feature.id() ) );
      88                 :            : 
      89                 :          0 :   out.setGeometry( outputGeometry );
      90                 :          0 :   return QgsFeatureList() << out;
      91                 :          0 : }
      92                 :            : 
      93                 :            : ///@endcond
      94                 :            : 
      95                 :            : 

Generated by: LCOV version 1.14