Changes between Initial Version and Version 17 of Ticket #20716
- Timestamp:
- 2021-08-24T20:23:31+02:00 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #20716
- Property Summary Search for missing power line support features → [patch] Search for missing power line support features
- Property Cc added
-
Ticket #20716 – Description
initial v17 1 1 ==== Problem 2 The power lines are sometimes drawn from low quality satellite imagery and support features can be easily missed. 2 The power lines are sometimes drawn from low quality satellite imagery, and support features can be easily missed. 3 3 4 4 ==== Proposed solution 5 5 Add a java validator test to sort these issues out. It works as following: 6 6 - an average node distance calculated for the whole way (`line` or `minor_line`) 7 - for above-average segment lengths, a warning message created where both nodes highlighted to make manual checks faster 7 - using mean and individual segment lengths, the standard deviation calculated 8 - if exceeds a threshold, a warning message created where both nodes highlighted to make manual checks faster 8 9 9 10 Way requirements to lower false positives: 10 11 - the way has to have at least 5 nodes 11 - maximum node distance is 2x of the average 12 In my testing, they give good results. 12 - segment length must be higher than a specific value, calculated as follows: 13 14 default `threshold` 15 - power=line -> `1.6` 16 - power=minor_line -> `1.4` 17 if `(mean / stdDev) < 4` (high inconsistency) an extra `0.2` threshold value added. 18 19 If any segment length exceeds `mean * threshold`, the warning fired. In my testing, they give good results. 13 20 14 21 ==== Usage 15 Run the validator ,as usual, an extra warning appears if the issue detected.22 Run the validator as usual, an extra warning appears if the issue detected.


