Skip to content

Commit 291de7a

Browse files
Merge branch 'processing/processing_tools' into noelle/thickness_calculator
2 parents b32baec + d4d6d83 commit 291de7a

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

m2l/processing/algorithms/sampler.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"""
1111
# Python imports
1212
from typing import Any, Optional
13-
from qgis.PyQt.QtCore import QVariant
13+
from qgis.PyQt.QtCore import QMetaType, QVariant
1414
from osgeo import gdal
1515
import pandas as pd
1616

@@ -59,15 +59,15 @@ def name(self) -> str:
5959

6060
def displayName(self) -> str:
6161
"""Return the algorithm display name."""
62-
return "Loop3d: Sampler"
62+
return "Spacing-Decimator Samplers"
6363

6464
def group(self) -> str:
6565
"""Return the algorithm group name."""
66-
return "Loop3d"
66+
return "Samplers"
6767

6868
def groupId(self) -> str:
6969
"""Return the algorithm group ID."""
70-
return "Loop3d"
70+
return "Samplers"
7171

7272
def initAlgorithm(self, config: Optional[dict[str, Any]] = None) -> None:
7373
"""Initialize the algorithm parameters."""

m2l/processing/algorithms/thickness_calculator.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@ def name(self) -> str:
7070

7171
def displayName(self) -> str:
7272
"""Return the algorithm display name."""
73-
return "Loop3d: Thickness Calculator"
73+
return "Thickness Calculator"
7474

7575
def group(self) -> str:
7676
"""Return the algorithm group name."""
77-
return "Loop3d"
77+
return "Thickness Calculators"
7878

7979
def groupId(self) -> str:
8080
"""Return the algorithm group ID."""
81-
return "Loop3d"
81+
return "Thickness_Calculators"
8282

8383
def initAlgorithm(self, config: Optional[dict[str, Any]] = None) -> None:
8484
"""Initialize the algorithm parameters."""

0 commit comments

Comments
 (0)