mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-16 13:59:27 +02:00
Read icons from qa_errors.json when building data
Also adds support for the following error types: - Objects mapped as both node/area or way/area - Power lines that lead to nowhere - Extra nodes in power lines (which should only go from support to support to endpoint) - Power line supports with no power lines
This commit is contained in:
@@ -869,6 +869,18 @@ en:
|
||||
3250-32501:
|
||||
title: 'Invalid Opening Hours'
|
||||
description: '{0} has an invalid value for the "opening_hours" tag.'
|
||||
4080:
|
||||
title: 'Object Mapped Twice'
|
||||
description: '{0} and {1} both appear to represent the same object.'
|
||||
7040:
|
||||
title: 'Unfinished Power Line'
|
||||
description: 'A power line appears to be unfinished at {0}.'
|
||||
7040-1:
|
||||
title: 'Lone Power Support'
|
||||
description: '{0} is a power tower or pole with no connected power lines.'
|
||||
7040-4:
|
||||
title: 'Extra Power Line Node'
|
||||
description: 'Power lines only have nodes at connections and {0} is not tagged as a power line support.'
|
||||
8300:
|
||||
title: 'Traffic Sign Suggestion'
|
||||
description: 'Traffic signs detected by Mapillary suggest there may be an unmapped {0} nearby.'
|
||||
|
||||
+22
-1
@@ -34,7 +34,7 @@
|
||||
}
|
||||
},
|
||||
"osmose": {
|
||||
"items": ["0", "1040", "1050", "1070", "1150", "1280", "3161", "3250", "8300", "8360"],
|
||||
"items": ["0", "1040", "1050", "1070", "1150", "1280", "3161", "3250", "4080", "7040", "8300", "8360"],
|
||||
"errorTypes": {
|
||||
"0-1": {
|
||||
"icon": "maki-home"
|
||||
@@ -87,6 +87,27 @@
|
||||
"3250-32501": {
|
||||
"icon": "maki-watch"
|
||||
},
|
||||
"4080-1": {
|
||||
"icon": "far-dot-circle"
|
||||
},
|
||||
"4080-2": {
|
||||
"icon": "far-dot-circle"
|
||||
},
|
||||
"4080-3": {
|
||||
"icon": "far-dot-circle"
|
||||
},
|
||||
"7040-1": {
|
||||
"icon": "temaki-power_tower"
|
||||
},
|
||||
"7040-2": {
|
||||
"icon": "temaki-power"
|
||||
},
|
||||
"7040-4": {
|
||||
"icon": "maki-marker"
|
||||
},
|
||||
"7040-6": {
|
||||
"icon": "temaki-power"
|
||||
},
|
||||
"8300-20": {
|
||||
"icon": "temaki-height_restrictor"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user