forked from osm-fr/osmose-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
analyser_merge_public_transport_FR_idfm.py
72 lines (62 loc) · 4.53 KB
/
analyser_merge_public_transport_FR_idfm.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
#!/usr/bin/env python
#-*- coding: utf-8 -*-
###########################################################################
## ##
## Copyrights Frédéric Rodrigo 2016 ##
## ##
## 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, Source, SHP, LoadGeomCentroid, Conflate, Select, Mapping
class _Analyser_Merge_Public_Transport_FR_IdFM(Analyser_Merge_Point):
def __init__(self, config, logger, clas, conflationDistance, select, osmTags, defaultTag, label):
Analyser_Merge_Point.__init__(self, config, logger)
place = "IdFM"
self.def_class_missing_official(item = 8040, id = 1+10*clas, level = 3, tags = ['merge', 'railway', 'public transport', 'fix:survey', 'fix:picture'],
title = T_('{0} from {1} not integrated', label, place))
self.def_class_possible_merge(item = 8041, id = 3+10*clas, level = 3, tags = ['merge', 'railway', 'public transport', 'fix:chair'],
title = T_('{0} from {1}, integration suggestion', label, place))
self.init(
"https://data.iledefrance-mobilites.fr/explore/dataset/referentiel-arret-tc-idf",
"Référentiel des arrêts : fichiers SIG",
SHP(Source(attribution = 'Île-de-France Mobilités', millesime = '01/2024',
fileUrl = 'https://eu.ftp.opendatasoft.com/stif/Reflex/REF_ArR.zip'),
zip = '*.shp'),
LoadGeomCentroid(
select = {"type_arret": select}),
Conflate(
select = Select(
types = ["nodes", "ways"],
tags = osmTags),
osmRef = "ref:FR:STIF",
conflationDistance = conflationDistance,
mapping = Mapping(
static1 = defaultTag,
static2 = {"source": self.source},
mapping1 = {"ref:FR:STIF": lambda fields: fields["id_refa"] and int(fields["id_refa"] or None)},
mapping2 = {"name": "nom_lda"},
text = lambda tags, fields: T_("{0} stop of {1}", place, tags["name"]) )))
class Analyser_Merge_IdFM_Bus(_Analyser_Merge_Public_Transport_FR_IdFM):
def __init__(self, config, logger = None):
_Analyser_Merge_Public_Transport_FR_IdFM.__init__(self, config, logger, 3, 100, "Arrêt de bus", {"highway": "bus_stop"}, {"highway": "bus_stop", "public_transport": "platform", "bus": "yes"}, "Arrêt de bus")
class Analyser_Merge_IdFM_Metro(_Analyser_Merge_Public_Transport_FR_IdFM):
def __init__(self, config, logger = None):
_Analyser_Merge_Public_Transport_FR_IdFM.__init__(self, config, logger, 0, 200, "Station de métro", {"railway": "platform"}, {"railway": "platform"}, "Quai de métro")
#class Analyser_Merge_IdFM_Train(_Analyser_Merge_Public_Transport_FR_IdFM):
# def __init__(self, config, logger = None):
# _Analyser_Merge_Public_Transport_FR_IdFM.__init__(self, config, logger, 1, 500, "Station ferrée / Val", {"railway": "platform"}, {"railway": "platform"}, "Quai de RER ou Transilien")
class Analyser_Merge_IdFM_Tram(_Analyser_Merge_Public_Transport_FR_IdFM):
def __init__(self, config, logger = None):
_Analyser_Merge_Public_Transport_FR_IdFM.__init__(self, config, logger, 2, 100, "Arrêt de tram", {"railway": "platform"}, {"public_transport": "platform", "tram": "yes"}, "Quai de tram")