forked from osm-fr/osmose-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdministrative_TooManyWays.py
93 lines (79 loc) · 3.95 KB
/
Administrative_TooManyWays.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# -*- coding: utf-8 -*-
###########################################################################
# ##
# Copyrights Yoann Arnaud <yarnaud@crans.org> 2009 ##
# ##
# This program is free software: you can redistribute it and/or modify ##
# it under the terms of the GNU General Public License as published by ##
# the Free Software Foundation, either version 3 of the License, or ##
# (at your option) any later version. ##
# ##
# This program is distributed in the hope that it will be useful, ##
# but WITHOUT ANY WARRANTY; without even the implied warranty of ##
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ##
# GNU General Public License for more details. ##
# ##
# You should have received a copy of the GNU General Public License ##
# along with this program. If not, see <http://www.gnu.org/licenses/>. ##
# ##
###########################################################################
from modules.OsmoseTranslation import T_
from plugins.Plugin import Plugin
class Administrative_TooManyWays(Plugin):
def init(self, logger):
Plugin.init(self, logger)
self.errors[504] = self.def_class(
item=6020,
level=3,
tags=["boundary", "fix:chair"],
title=T_("Duplicated way in relation"),
detail=T_("""In a relation, a way should be present only once."""),
fix=T_(
"""Most often, this is a user issue that added several times the same way.
The editor JOSM can easily visualize the relationships and see duplicates
(in colour)."""
),
trap=T_(
"""Double check the ways roles in the relation before deleting.
Caution: in a route, a path can be taken several times. The multiple
presence of this path in the relation `type=route` is not then an issue.
Then ensure the roles `forward` and `backward`."""
),
)
def relation(self, data, tags, members):
if tags.get("boundary", "") != "administrative":
return
w = [m["ref"] for m in members if m["type"] == "way"]
if len(w) != len(set(w)):
return {"class": 504}
# if tags.get(u"admin_level", u"") != u"8":
# return
# n_limit = 15
# n = len(data[u"member"])
# if n >= n_limit:
# return {"class": 503, "subclass": 0, "text": T_("More than {0} ways in admin_level=8 relation ({1})", str(n_limit), str(n))}
###########################################################################
from plugins.Plugin import TestPluginCommon
class Test(TestPluginCommon):
def setUp(self):
TestPluginCommon.setUp(self)
self.p = Administrative_TooManyWays(None)
self.p.init(None)
def test(self):
w1_0 = {"ref": 1, "role": "xx", "type": "way"}
w1_1 = {"ref": 1, "role": "yy", "type": "way"}
w2 = {"ref": 2, "role": "xx", "type": "way"}
w3 = {"ref": 2, "role": "xx", "type": "way"}
n1 = {"ref": 1, "role": "xx", "type": "node"}
self.check_err(
self.p.relation(None, {"boundary": "administrative"}, [w1_0, w1_1])
)
self.check_err(
self.p.relation(
None, {"boundary": "administrative"}, [w1_0, w1_1, w2, w3, n1]
)
)
assert not self.p.relation(None, {"boundary": "administrative"}, [w1_0, w2])
assert not self.p.relation(None, {"boundary": "administrative"}, [w1_0, n1])
assert not self.p.relation(None, {}, [w1_0, w1_1])
assert not self.p.relation(None, {}, [w1_0, w1_1])