-
Notifications
You must be signed in to change notification settings - Fork 114
/
analyser_merge_bicycle_parking_FR_paris.py
131 lines (119 loc) · 6.6 KB
/
analyser_merge_bicycle_parking_FR_paris.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#!/usr/bin/env python
#-*- coding: utf-8 -*-
###########################################################################
## ##
## Copyrights Phyks (Lucas Verney) 2018 ##
## ##
## 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, SourceOpenDataSoft, CSV, Load_XY, Conflate, Select, Mapping
STANDS_TYPES = {
"Arceau autre": "stands",
"Arceau St-Germain": "wide_stands",
"Epingle vélo": "stands",
"Sans": "floor",
}
tag_mapping = {
"capacity": (
lambda res: None if res["Nombre places calculées"] in (None, "0", "-1") else res["Nombre places calculées"]
),
"bicycle_parking": (
lambda res: STANDS_TYPES.get(res['Type mobilier'], None)
)
}
class Analyser_Merge_Bicycle_Parking_FR_Paris(Analyser_Merge_Point):
def __init__(self, config, logger = None):
Analyser_Merge_Point.__init__(self, config, logger)
self.def_class_missing_official(item = 8150, id = 21, level = 3, tags = ['merge', 'public equipment', 'bicycle', 'fix:survey', 'fix:picture'],
title = T_('Paris bicycle parking not integrated'))
self.init(
"https://opendata.paris.fr/explore/dataset/stationnement-voie-publique-emplacements/information/",
"Stationnement sur voie publique - emplacements vélos",
CSV(SourceOpenDataSoft(
attribution="Ville de Paris",
url="https://opendata.paris.fr/explore/dataset/stationnement-voie-publique-emplacements")),
Load_XY("geo_point_2d", "geo_point_2d",
select = {
"Régime prioritaire": "2 ROUES",
"Régime particulier": "Vélos",
},
xFunction = lambda x: Load_XY.float_comma(x.split(',')[1]),
yFunction = lambda y: Load_XY.float_comma(y.split(',')[0])
),
Conflate(
select = Select(
types = ["nodes", "ways"],
tags = {"amenity": "bicycle_parking"}),
conflationDistance = 20,
mapping = Mapping(
static1 = {"amenity": "bicycle_parking"},
static2 = {"source": self.source},
mapping1 = tag_mapping )))
class Analyser_Merge_Motorcycle_Parking_FR_Paris(Analyser_Merge_Point):
def __init__(self, config, logger = None):
Analyser_Merge_Point.__init__(self, config, logger)
self.def_class_missing_official(item = 8150, id = 31, level = 3, tags = ['merge', 'public equipment', 'motorcycle', 'fix:survey', 'fix:picture'],
title = T_('Paris motorcycle parking not integrated'))
self.init(
"https://opendata.paris.fr/explore/dataset/stationnement-voie-publique-emplacements/information/",
"Stationnement sur voie publique - emplacements motos",
CSV(SourceOpenDataSoft(attribution = "Ville de Paris",
url="https://opendata.paris.fr/explore/dataset/stationnement-voie-publique-emplacements")),
Load_XY("geo_point_2d", "geo_point_2d",
select = {
"Régime prioritaire": "2 ROUES",
"Régime particulier": "Motos",
},
xFunction = lambda x: Load_XY.float_comma(x.split(',')[1]),
yFunction = lambda y: Load_XY.float_comma(y.split(',')[0])
),
Conflate(
select = Select(
types = ["nodes", "ways"],
tags = {"amenity": "motorcycle_parking"}),
conflationDistance = 20,
mapping = Mapping(
static1 = {"amenity": "motorcycle_parking"},
static2 = {"source": self.source},
mapping1 = tag_mapping )))
class Analyser_Merge_Bicycle_Motorcycle_Parking_FR_Paris(Analyser_Merge_Point):
def __init__(self, config, logger = None):
Analyser_Merge_Point.__init__(self, config, logger)
self.def_class_missing_official(item = 8150, id = 41, level = 3, tags = ['merge', 'public equipment', 'bicycle', 'motorcycle', 'fix:survey', 'fix:picture'],
title = T_('Paris motorcycle/shared motorcycle parking not integrated'))
self.init(
"https://opendata.paris.fr/explore/dataset/stationnement-voie-publique-emplacements/information/",
"Stationnement sur voie publique - emplacements deux roues",
CSV(SourceOpenDataSoft(attribution = "Ville de Paris",
url="https://opendata.paris.fr/explore/dataset/stationnement-voie-publique-emplacements")),
Load_XY("geo_point_2d", "geo_point_2d",
select = {
"Régime prioritaire": "2 ROUES",
"Régime particulier": "Mixte",
},
xFunction = lambda x: Load_XY.float_comma(x.split(',')[1]),
yFunction = lambda y: Load_XY.float_comma(y.split(',')[0])
),
Conflate(
select = Select(
types = ["nodes", "ways"],
tags = {"amenity": ["bicycle_parking",
"motorcycle_parking"]}),
conflationDistance = 20,
mapping = Mapping(
static1 = {"amenity": "motorcycle_parking", "bicycle": "yes"},
static2 = {"source": self.source},
mapping1 = tag_mapping )))