forked from osm-fr/osmose-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
analyser_merge_defibrillators_FR.py
114 lines (108 loc) · 6.76 KB
/
analyser_merge_defibrillators_FR.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#!/usr/bin/env python
#-*- coding: utf-8 -*-
###########################################################################
## ##
## Copyrights Adrien Pavie 2020 ##
## ##
## 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 .Analyser_Merge import Analyser_Merge_Point, SourceDataGouv, GeoJSON, Load_XY, Conflate, Select, Mapping
import unidecode
import re
from modules import reaccentue
class Analyser_merge_defibrillators_FR(Analyser_Merge_Point):
def normalizeEtage(self, etg):
if etg is None:
return None
else:
etg = unidecode.unidecode(etg.lower().replace("-", "").replace(".", "").replace(" ", ""))
if etg == "0":
return None
elif etg in ["rezdechaussee", "rezdechausse", "reddechaussee", "rdc"]:
return "0"
elif re.compile(r"^r\+\d$").match(etg):
return etg[2:]
elif re.compile(r"^niveau -?\d+$").match(etg):
return etg[7:]
elif re.compile(r"^-?\d+ e.*$").match(etg):
return etg.split(" ")[0]
elif re.compile(r"^-?\d+e.*$").match(etg):
return etg.split("e")[0]
elif re.compile(r"^-?\d+$").match(etg):
return etg
else:
return None
def normalizeHours(self, jours, heures):
if jours == "{7j/7}" and heures == "{24h/24}":
return "24/7"
else:
return None
def __init__(self, config, logger = None):
Analyser_Merge_Point.__init__(self, config, logger)
self.def_class_missing_official(item = 8370, id = 120, level = 3, tags = ["merge", "emergency", "fix:picture", "fix:survey"],
title = T_("Defibrillator not integrated"),
trap = T_("Location of defibrillators from this dataset can be very approximative. Check carefully the position before adding to OSM."))
self.def_class_possible_merge(item = 8371, id = 13, level = 3, tags = ['merge', 'emergency', 'fix:chair', 'fix:picture'],
title = T_('Defibrillator integration suggestion'),
trap = T_("Location of defibrillators from this dataset can be very approximative. Check carefully the position before adding to OSM."))
self.def_class_update_official(item = 8372, id = 14, level = 3, tags = ['merge', 'emergency', 'fix:picture', 'fix:survey'],
title = T_('Defibrillator update'))
self.init(
"https://www.data.gouv.fr/fr/datasets/geodae-base-nationale-des-defibrillateurs/",
"Géo'DAE - Base Nationale des Défibrillateurs",
GeoJSON(
SourceDataGouv(
attribution="Ministère de la Santé",
dataset="61556e1e9d6adb2df86eb0fc",
resource="86ea48a0-dd94-4a23-b71c-80d3041d7db2")),
Load_XY("geom_x", "geom_y",
select = {"c_etat_fonct": "En fonctionnement", "c_doublon": "f"}),
Conflate(
select = Select(
types = ["nodes"],
tags = {"emergency": "defibrillator"}),
osmRef = "ref:FR:GeoDAE",
conflationDistance = 100,
mapping = Mapping(
static1 = {"emergency": "defibrillator"},
mapping1 = {
"ref:FR:GeoDAE": "c_gid",
"indoor": lambda res: "yes" if res["c_acc"] == "Intérieur" else "no" if res["c_acc"] == "Extérieur" else None,
"access": lambda res: "yes" if res["c_acc_lib"] == "t" else "permissive" if res["c_acc_lib"] == "f" else None,
"level": lambda res: self.normalizeEtage(res["c_acc_etg"]),
"opening_hours": lambda res: self.normalizeHours(res["c_disp_j"], res["c_disp_h"])
},
mapping2 = {
"name": lambda res: reaccentue.reaccentue(res["c_nom"]) if res["c_nom"] and res["c_acc_complt"] else None,
"operator": lambda res: reaccentue.reaccentue(res["c_expt_rais"]) if "c_expt_rais" in res else None,
"source": lambda res: ("Direction Générale de la Santé - " + res["c__edit_datemaj|timePosition"].split("T")[0]),
"defibrillator:location": lambda res: res["c_acc_complt"] if "c_acc_complt" in res else reaccentue.reaccentue(res["c_nom"]) if res["c_nom"] else None,
"start_date": "c_date_instal|timePosition",
"security_desk": lambda res: "yes" if res["c_acc_pcsec"] == "t" else "no" if res["c_acc_pcsec"] == "f" else None,
"reception_desk": lambda res: "yes" if res["c_acc_acc"] == "t" else "no" if res["c_acc_acc"] == "f" else None,
"operator:ref:FR:SIREN": lambda res: res["c_expt_siren"] if "c_expt_siren" in res else None
},
text = lambda tags, fields: {"en": " - ".join(filter(lambda x: x, [
"POSITION APPROXIMATIVE À VÉRIFIER" if fields["c_etat_valid"] == "en attente de validation" else None,
fields["c_nom"],
"Horaires : "+fields["c_disp_j"][1:-1]+" "+fields["c_disp_h"][1:-1] if fields["c_disp_j"] and fields["c_disp_h"] else None,
" ".join(filter(lambda x: x, [
fields["c_adr_num"],
fields["c_adr_voie"],
fields["c_com_cp"],
fields["c_com_nom"]
]))
]))} )))