Skip to content

Commit 4fe2cf9

Browse files
committed
Improved names
1 parent c7382ad commit 4fe2cf9

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

qgis_processing/extractPtsAlgorithm.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ def initAlgorithm(self, config=None):
5252
)
5353

5454
def group(self):
55-
return self.tr("Basic")
55+
return self.tr("Event extraction")
5656

5757
def groupId(self):
58-
return "TrajectoryBasic"
58+
return "TrajectoryEventExtraction"
5959

6060
def name(self):
6161
return "extract_od_pts"
@@ -159,10 +159,10 @@ def initAlgorithm(self, config=None):
159159
)
160160

161161
def group(self):
162-
return self.tr("Basic")
162+
return self.tr("Event extraction")
163163

164164
def groupId(self):
165-
return "TrajectoryBasic"
165+
return "TrajectoryEventExtraction"
166166

167167
def name(self):
168168
return "extract_stop_pts"

qgis_processing/splitTrajectoriesAlgorithm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ def __init__(self):
1919
super().__init__()
2020

2121
def group(self):
22-
return self.tr("Split trajectories")
22+
return self.tr("Trajectory splitting")
2323

2424
def groupId(self):
25-
return "split_trajectories"
25+
return "TrajectorySplitting"
2626

2727

2828
class ObservationGapSplitterAlgorithm(SplitTrajectoriesAlgorithm):

qgis_processing/trajectoolsProvider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def id(self):
3232
return "Trajectory"
3333

3434
def name(self):
35-
return "Trajectory tools"
35+
return "Trajectools"
3636

3737
def icon(self):
3838
return QIcon(os.path.join(pluginPath, "icons", "icon.png"))

0 commit comments

Comments
 (0)