forked from osm-fr/osmose-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
analyser_merge_parapharmacy_IT.py
66 lines (61 loc) · 3.95 KB
/
analyser_merge_parapharmacy_IT.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
#!/usr/bin/env python
#-*- coding: utf-8 -*-
###########################################################################
## ##
## Copyrights Francesco Ansanelli 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 .Analyser_Merge import Analyser_Merge, Source, CSV, Load, Mapping, Select, Generate
from .modules import italian_strings
class Analyser_Merge_Parapharmacy_IT(Analyser_Merge):
def __init__(self, config, logger = None):
Analyser_Merge.__init__(self, config, logger)
self.missing_official = self.def_class(item = 8210, id = 21, level = 3, tags = ['merge', 'highway'],
title = T_('Pharmacy not integrated'))
self.missing_osm = self.def_class(item = 7150, id = 22, level = 3, tags = ['merge', 'highway'],
title = T_('Pharmacy without tag `ref:msal` or invalid'))
self.possible_merge = self.def_class(item = 8211, id = 23, level = 3, tags = ['merge', 'highway'],
title = T_('Pharmacy integration suggestion'))
self.update_official = self.def_class(item = 8212, id = 24, level = 3, tags = ['merge', 'highway'],
title = T_('Pharmacy update'))
self.init(
'http://www.dati.salute.gov.it/dataset/parafarmacie.jsp',
'Ministero della Salute',
CSV(Source(attribution = 'Ministero della Salute', fileUrl = 'http://www.dati.salute.gov.it/imgs/C_17_dataset_7_download_itemDownload0_upFile.CSV'),
separator = ';'),
Load('LONGITUDINE', 'LATITUDINE',
xFunction = lambda x: self.float_comma(x.replace('\'', '')),# '9,258444
yFunction = self.float_comma,
where = lambda row: row['DATAFINEVALIDITA'] == '-' and row['LONGITUDINE'] != '-' and row['LATITUDINE'] != '-'),
Mapping(
select = Select(
types = ['nodes', 'ways'],
tags = {
'amenity': 'pharmacy',
'dispensing': 'no'}),
osmRef = 'ref:msal',
conflationDistance = 80,
generate = Generate(
static1 = {
'amenity': 'pharmacy',
'dispensing': 'no'},
static2 = {'source': self.source},
mapping1 = {
'ref:msal': 'CODICEIDENTIFICATIVOSITO',
'ref:vatin': lambda res: italian_strings.osmRefVatin(res['PARTITAIVA']),
'start_date': lambda res: self.date_format(res['DATAINIZIOVALIDITA'])},
mapping2 = {'operator': lambda res: italian_strings.normalize_pharmacy(res['DENOMINAZIONESITOLOGISTICO'])},
text = lambda tags, fields: {'en': '%s, %s' % (fields['INDIRIZZO'], fields['DESCRIZIONECOMUNE'])} )))