Skip to content

Commit ad557b9

Browse files
committed
README
1 parent 6627e97 commit ad557b9

11 files changed

+8
-1
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,12 @@ On the "Plugin" menu, click on "Analyze" under the "OSM map matching" sub-menu.
2727

2828
![Analyze Window](pictures/how_to_use_analyze_window.png)
2929

30+
Choose a vector layer of points from those loaded in the project, or select a file that contains one.
31+
32+
Set the "Max distance" parameter to specify the maximum allowable distance between an input point and the map element to which it is mapped.
33+
34+
Set the 'Minimum loop size' parameter for the cleaning phase. This parameter defines the minimum length of loops that will be retained in the output path. During this phase, all loops shorter than the specified value are removed from the solution. The output path is scanned multiple times to ensure all short loops are eliminated. This process can be time consuming but can be interrupted by pressing the 'Cancel' button.
35+
36+
3037

3138
## How to use the output

__pycache__/__init__.cpython-312.pyc

1.82 KB
Binary file not shown.
4.53 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

__pycache__/output.cpython-312.pyc

2.32 KB
Binary file not shown.

osm_map_matching_algorithm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def processAlgorithm(self, parameters, context, feedback):
169169
if error[0] == QgsVectorFileWriter.NoError:
170170
feedback.pushInfo("Output file created")
171171
else:
172-
feedback.pushInfo(error)
172+
feedback.pushInfo(error[0])
173173
else:
174174
out_shapefile = None
175175

3.73 KB
Binary file not shown.
1.79 KB
Binary file not shown.

ta/__pycache__/main.cpython-312.pyc

11.5 KB
Binary file not shown.
15.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)