@wemap/routers 11.8.7 → 12.0.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/assets/biocbon-bergere-rdc-network.osm +163 -0
  2. package/assets/bureaux-wemap-montpellier-network.osm +174 -0
  3. package/assets/elevator-models-4.osm +89 -0
  4. package/assets/elevator-models.osm +354 -0
  5. package/assets/exit-graph.osm +25 -0
  6. package/assets/gare-de-lest-network-pp-bounds.osm +1613 -0
  7. package/assets/gare-de-lyon-extract.osm +174 -0
  8. package/assets/network-conveying-backward.osm +74 -0
  9. package/assets/network-elevator.osm +48 -0
  10. package/assets/network-simple.osm +27 -0
  11. package/assets/network-steps-same-level.osm +283 -0
  12. package/assets/network-with-modifiers.osm +39 -0
  13. package/assets/one-way.osm +46 -0
  14. package/dist/index.js +1019 -530
  15. package/dist/index.js.map +1 -1
  16. package/dist/index.mjs +1019 -530
  17. package/dist/index.mjs.map +1 -1
  18. package/helpers/InstructionManager.ts +24 -5
  19. package/index.ts +13 -4
  20. package/package.json +5 -5
  21. package/src/ItineraryInfoManager.spec.ts +18 -15
  22. package/src/ItineraryInfoManager.ts +13 -10
  23. package/src/graph/Edge.spec.ts +32 -0
  24. package/src/graph/Edge.ts +61 -0
  25. package/src/graph/Graph.spec.ts +509 -0
  26. package/src/graph/Graph.ts +234 -0
  27. package/src/graph/GraphProjection.ts +15 -0
  28. package/src/graph/GraphProjectionOptions.ts +8 -0
  29. package/src/graph/GraphRoute.spec.ts +15 -0
  30. package/src/graph/GraphRoute.ts +43 -0
  31. package/src/graph/GraphRouter.spec.ts +310 -0
  32. package/src/graph/GraphRouter.ts +227 -0
  33. package/src/graph/GraphRouterEngine.ts +160 -0
  34. package/src/graph/GraphRouterOptions.ts +17 -0
  35. package/src/graph/GraphRouterOptionsBuilder.ts +88 -0
  36. package/src/graph/NoRouteFoundError.ts +39 -0
  37. package/src/graph/Vertex.spec.ts +41 -0
  38. package/src/graph/Vertex.ts +35 -0
  39. package/src/model/Itinerary.ts +16 -15
  40. package/src/model/Leg.ts +20 -79
  41. package/src/model/StepsBuilder.ts +269 -0
  42. package/src/model/generateSteps.ts +75 -75
  43. package/src/remote/RemoteRouterUtils.ts +1 -2
  44. package/src/remote/cityway/CitywayRemoteRouter.ts +11 -8
  45. package/src/remote/deutsche-bahn/DeutscheBahnRemoteRouter.ts +1 -1
  46. package/src/remote/idfm/IdfmRemoteRouter.ts +9 -8
  47. package/src/remote/osrm/OsrmRemoteRouter.ts +15 -10
  48. package/src/remote/otp/OtpRemoteRouter.ts +13 -9
  49. package/src/remote/wemap-multi/WemapMultiRemoteRouter.spec.ts +1 -1
  50. package/src/remote/wemap-multi/WemapMultiRemoteRouter.ts +2 -2
  51. package/src/types.ts +13 -0
  52. package/src/wemap-multi/CustomNetworkMap.spec.ts +40 -0
  53. package/src/wemap-multi/CustomNetworkMap.ts +53 -47
  54. package/src/wemap-multi/WemapMultiRouter.spec.ts +19 -17
  55. package/src/wemap-multi/WemapMultiRouter.ts +52 -46
  56. package/src/wemap-osm/OsmGraphUtils.spec.ts +124 -0
  57. package/src/wemap-osm/OsmGraphUtils.ts +166 -0
  58. package/src/wemap-osm/OsmRouter.elevators.spec.ts +21 -20
  59. package/src/wemap-osm/OsmRouter.spec.ts +61 -58
  60. package/src/wemap-osm/OsmRouterOptions.ts +1 -0
  61. package/tests/CommonTest.ts +78 -0
  62. package/src/wemap-osm/OsmGraph.spec.ts +0 -99
  63. package/src/wemap-osm/OsmGraph.ts +0 -255
  64. package/src/wemap-osm/OsmRouter.ts +0 -296
@@ -0,0 +1,163 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <osm version='0.6' generator='JOSM'>
3
+ <node id='-460666' action='modify' visible='true' lat='48.87260236152' lon='2.34329666635' />
4
+ <node id='-460667' action='modify' visible='true' lat='48.87250549777' lon='2.34328663305' />
5
+ <node id='-460668' action='modify' visible='true' lat='48.87254375114' lon='2.34328204154' />
6
+ <node id='-460669' action='modify' visible='true' lat='48.87256254226' lon='2.34328272177' />
7
+ <node id='-460670' action='modify' visible='true' lat='48.87256546238' lon='2.3433422765' />
8
+ <node id='-460671' action='modify' visible='true' lat='48.87249229923' lon='2.34346145052' />
9
+ <node id='-460672' action='modify' visible='true' lat='48.87250820089' lon='2.34335069759' />
10
+ <node id='-460673' action='modify' visible='true' lat='48.87250633659' lon='2.34330651324' />
11
+ <node id='-460674' action='modify' visible='true' lat='48.87249106885' lon='2.34330823015' />
12
+ <node id='-460675' action='modify' visible='true' lat='48.87248804885' lon='2.34333390859' />
13
+ <node id='-460676' action='modify' visible='true' lat='48.87250347283' lon='2.34338322091' />
14
+ <node id='-460677' action='modify' visible='true' lat='48.87247865327' lon='2.3433874762' />
15
+ <node id='-460678' action='modify' visible='true' lat='48.87246936955' lon='2.34345396806' />
16
+ <node id='-460679' action='modify' visible='true' lat='48.8725047148' lon='2.34346519175' />
17
+ <node id='-460680' action='modify' visible='true' lat='48.87252014738' lon='2.34328487468' />
18
+ <node id='-460681' action='modify' visible='true' lat='48.87252306794' lon='2.34334851119' />
19
+ <node id='-460682' action='modify' visible='true' lat='48.87254679656' lon='2.34334502157' />
20
+ <node id='-460683' action='modify' visible='true' lat='48.87255583689' lon='2.34334369207' />
21
+ <node id='-460684' action='modify' visible='true' lat='48.87255247559' lon='2.34338781631' />
22
+ <node id='-460685' action='modify' visible='true' lat='48.872553574' lon='2.34337339741' />
23
+ <node id='-460686' action='modify' visible='true' lat='48.87258124098' lon='2.34333589031' />
24
+ <node id='-460687' action='modify' visible='true' lat='48.8725647793' lon='2.34345056694' />
25
+ <node id='-460688' action='modify' visible='true' lat='48.87256316665' lon='2.3432954559' />
26
+ <node id='-460689' action='modify' visible='true' lat='48.87259140004' lon='2.34329003417' />
27
+ <node id='-460690' action='modify' visible='true' lat='48.87257537018' lon='2.34337678796' />
28
+ <node id='-460691' action='modify' visible='true' lat='48.87259587423' lon='2.34338390486' />
29
+ <node id='-460692' action='modify' visible='true' lat='48.87258513645' lon='2.34345736901' />
30
+ <node id='-460693' action='modify' visible='true' lat='48.87249947934' lon='2.34334343153' />
31
+ <node id='-460694' action='modify' visible='true' lat='48.87249408198' lon='2.34338483096' />
32
+ <node id='-460695' action='modify' visible='true' lat='48.8725017692' lon='2.34336624663' />
33
+ <node id='-460696' action='modify' visible='true' lat='48.87258943336' lon='2.34352007038' />
34
+ <node id='-460697' action='modify' visible='true' lat='48.87245061393' lon='2.34347443088' />
35
+ <node id='-460698' action='modify' visible='true' lat='48.8726203618' lon='2.3433075471' />
36
+ <node id='-460699' action='modify' visible='true' lat='48.87247787613' lon='2.34327167268' />
37
+ <node id='-460700' action='modify' visible='true' lat='48.87259588375' lon='2.34325390292' />
38
+ <node id='-460702' action='modify' visible='true' lat='48.87262168252' lon='2.34327125172'>
39
+ <tag k='wemap:routing-io' v='yes' />
40
+ </node>
41
+ <way id='-460630' action='modify' visible='true'>
42
+ <nd ref='-460666' />
43
+ <nd ref='-460686' />
44
+ <nd ref='-460670' />
45
+ <nd ref='-460683' />
46
+ <nd ref='-460682' />
47
+ <nd ref='-460681' />
48
+ <nd ref='-460672' />
49
+ <nd ref='-460673' />
50
+ <nd ref='-460667' />
51
+ <nd ref='-460680' />
52
+ <nd ref='-460668' />
53
+ <nd ref='-460669' />
54
+ <nd ref='-460688' />
55
+ <nd ref='-460670' />
56
+ <tag k='highway' v='footway' />
57
+ </way>
58
+ <way id='-460631' action='modify' visible='true'>
59
+ <nd ref='-460671' />
60
+ <nd ref='-460676' />
61
+ <nd ref='-460672' />
62
+ <tag k='highway' v='footway' />
63
+ </way>
64
+ <way id='-460632' action='modify' visible='true'>
65
+ <nd ref='-460673' />
66
+ <nd ref='-460674' />
67
+ <nd ref='-460675' />
68
+ <nd ref='-460693' />
69
+ <nd ref='-460672' />
70
+ <tag k='highway' v='footway' />
71
+ </way>
72
+ <way id='-460633' action='modify' visible='true'>
73
+ <nd ref='-460676' />
74
+ <nd ref='-460694' />
75
+ <nd ref='-460677' />
76
+ <nd ref='-460678' />
77
+ <nd ref='-460671' />
78
+ <tag k='highway' v='footway' />
79
+ </way>
80
+ <way id='-460634' action='modify' visible='true'>
81
+ <nd ref='-460671' />
82
+ <nd ref='-460679' />
83
+ <tag k='highway' v='footway' />
84
+ </way>
85
+ <way id='-460635' action='modify' visible='true'>
86
+ <nd ref='-460680' />
87
+ <nd ref='-460681' />
88
+ <tag k='highway' v='footway' />
89
+ </way>
90
+ <way id='-460636' action='modify' visible='true'>
91
+ <nd ref='-460668' />
92
+ <nd ref='-460682' />
93
+ <tag k='highway' v='footway' />
94
+ </way>
95
+ <way id='-460637' action='modify' visible='true'>
96
+ <nd ref='-460683' />
97
+ <nd ref='-460685' />
98
+ <nd ref='-460684' />
99
+ <nd ref='-460685' />
100
+ <tag k='highway' v='footway' />
101
+ </way>
102
+ <way id='-460638' action='modify' visible='true'>
103
+ <nd ref='-460685' />
104
+ <nd ref='-460681' />
105
+ <tag k='highway' v='footway' />
106
+ </way>
107
+ <way id='-460639' action='modify' visible='true'>
108
+ <nd ref='-460685' />
109
+ <nd ref='-460682' />
110
+ <tag k='highway' v='footway' />
111
+ </way>
112
+ <way id='-460640' action='modify' visible='true'>
113
+ <nd ref='-460691' />
114
+ <nd ref='-460686' />
115
+ <nd ref='-460690' />
116
+ <nd ref='-460687' />
117
+ <tag k='highway' v='footway' />
118
+ </way>
119
+ <way id='-460641' action='modify' visible='true'>
120
+ <nd ref='-460688' />
121
+ <nd ref='-460689' />
122
+ <nd ref='-460666' />
123
+ <tag k='highway' v='footway' />
124
+ </way>
125
+ <way id='-460642' action='modify' visible='true'>
126
+ <nd ref='-460690' />
127
+ <nd ref='-460691' />
128
+ <nd ref='-460692' />
129
+ <tag k='highway' v='footway' />
130
+ </way>
131
+ <way id='-460643' action='modify' visible='true'>
132
+ <nd ref='-460666' />
133
+ <nd ref='-460691' />
134
+ <tag k='highway' v='footway' />
135
+ </way>
136
+ <way id='-460644' action='modify' visible='true'>
137
+ <nd ref='-460676' />
138
+ <nd ref='-460695' />
139
+ <nd ref='-460693' />
140
+ <nd ref='-460694' />
141
+ <tag k='highway' v='footway' />
142
+ </way>
143
+ <way id='-460645' action='modify' visible='true'>
144
+ <nd ref='-460672' />
145
+ <nd ref='-460695' />
146
+ <nd ref='-460694' />
147
+ <tag k='highway' v='footway' />
148
+ </way>
149
+ <way id='-460646' action='modify' visible='true'>
150
+ <nd ref='-460700' />
151
+ <nd ref='-460698' />
152
+ <nd ref='-460696' />
153
+ <nd ref='-460697' />
154
+ <nd ref='-460699' />
155
+ <nd ref='-460700' />
156
+ <tag k='wemap:routing-bounds' v='yes' />
157
+ </way>
158
+ <way id='-460648' action='modify' visible='true'>
159
+ <nd ref='-460666' />
160
+ <nd ref='-460702' />
161
+ <tag k='highway' v='footway' />
162
+ </way>
163
+ </osm>
@@ -0,0 +1,174 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <osm version='0.6' generator='JOSM'>
3
+ <node id='-440460' action='modify' visible='true' lat='43.60927603206' lon='3.88424673798'>
4
+ <tag k='name' v='p7' />
5
+ </node>
6
+ <node id='-440462' action='modify' visible='true' lat='43.60913609818' lon='3.88411091795'>
7
+ <tag k='name' v='p3' />
8
+ </node>
9
+ <node id='-440464' action='modify' visible='true' lat='43.60929353543' lon='3.88425183223'>
10
+ <tag k='name' v='p8' />
11
+ </node>
12
+ <node id='-440466' action='modify' visible='true' lat='43.60930219142' lon='3.88427017086'>
13
+ <tag k='name' v='p9' />
14
+ </node>
15
+ <node id='-440468' action='modify' visible='true' lat='43.60911942685' lon='3.88422017773'>
16
+ <tag k='name' v='p4' />
17
+ </node>
18
+ <node id='-440470' action='modify' visible='true' lat='43.60935581261' lon='3.88428577699'>
19
+ <tag k='name' v='p22' />
20
+ </node>
21
+ <node id='-440472' action='modify' visible='true' lat='43.60919651074' lon='3.88412853633'>
22
+ <tag k='name' v='p1' />
23
+ </node>
24
+ <node id='-440474' action='modify' visible='true' lat='43.60931199709' lon='3.88413083832'>
25
+ <tag k='name' v='p25' />
26
+ </node>
27
+ <node id='-440476' action='modify' visible='true' lat='43.60917494597' lon='3.88421731753'>
28
+ <tag k='name' v='p6' />
29
+ </node>
30
+ <node id='-440478' action='modify' visible='true' lat='43.60918883875' lon='3.88412626772'>
31
+ <tag k='name' v='p2' />
32
+ </node>
33
+ <node id='-440480' action='modify' visible='true' lat='43.60936726345' lon='3.88427546746'>
34
+ <tag k='name' v='p23' />
35
+ </node>
36
+ <node id='-440482' action='modify' visible='true' lat='43.60917216742' lon='3.8842355275'>
37
+ <tag k='name' v='p5' />
38
+ </node>
39
+ <node id='-440484' action='modify' visible='true' lat='43.60931231268' lon='3.8842731166'>
40
+ <tag k='name' v='p10' />
41
+ </node>
42
+ <node id='-440486' action='modify' visible='true' lat='43.60932336323' lon='3.884200898'>
43
+ <tag k='name' v='p11' />
44
+ </node>
45
+ <node id='-440488' action='modify' visible='true' lat='43.6093629216' lon='3.884212726'>
46
+ <tag k='name' v='p12' />
47
+ </node>
48
+ <node id='-440490' action='modify' visible='true' lat='43.60935965678' lon='3.8842335535'>
49
+ <tag k='name' v='p13' />
50
+ </node>
51
+ <node id='-440492' action='modify' visible='true' lat='43.60932022256' lon='3.88422176261'>
52
+ <tag k='name' v='p14' />
53
+ </node>
54
+ <node id='-440494' action='modify' visible='true' lat='43.60931232238' lon='3.88427309743'>
55
+ <tag k='name' v='p15' />
56
+ </node>
57
+ <node id='-440496' action='modify' visible='true' lat='43.60936673756' lon='3.88428907078'>
58
+ <tag k='name' v='p24' />
59
+ </node>
60
+ <node id='-440498' action='modify' visible='true' lat='43.60926807571' lon='3.884260391'>
61
+ <tag k='name' v='p16' />
62
+ </node>
63
+ <node id='-441184' action='modify' visible='true' lat='43.60932786117' lon='3.88427765877'>
64
+ <tag k='name' v='p18' />
65
+ </node>
66
+ <node id='-441187' action='modify' visible='true' lat='43.60933232537' lon='3.88424831515'>
67
+ <tag k='highway' v='elevator' />
68
+ <tag k='level' v='0;2' />
69
+ <tag k='name' v='p19' />
70
+ </node>
71
+ <node id='-441210' action='modify' visible='true' lat='43.60932786111' lon='3.8842776591'>
72
+ <tag k='name' v='p17' />
73
+ </node>
74
+ <node id='-441270' action='modify' visible='true' lat='43.6093032' lon='3.8844388'>
75
+ <tag k='name' v='p21' />
76
+ </node>
77
+ <node id='-441273' action='modify' visible='true' lat='43.6095297' lon='3.8845039'>
78
+ <tag k='name' v='p26' />
79
+ </node>
80
+ <node id='-441286' action='modify' visible='true' lat='43.6095624' lon='3.8845134'>
81
+ <tag k='name' v='p27' />
82
+ </node>
83
+ <way id='-440499' action='modify' visible='true'>
84
+ <nd ref='-440476' />
85
+ <nd ref='-440460' />
86
+ <nd ref='-440464' />
87
+ <nd ref='-440474' />
88
+ <tag k='highway' v='footway' />
89
+ <tag k='level' v='2' />
90
+ <tag k='name' v='w2' />
91
+ </way>
92
+ <way id='-440500' action='modify' visible='true'>
93
+ <nd ref='-440464' />
94
+ <nd ref='-440466' />
95
+ <nd ref='-440484' />
96
+ <nd ref='-441184' />
97
+ <nd ref='-440470' />
98
+ <nd ref='-440480' />
99
+ <tag k='highway' v='footway' />
100
+ <tag k='level' v='2' />
101
+ <tag k='name' v='w3' />
102
+ </way>
103
+ <way id='-440501' action='modify' visible='true'>
104
+ <nd ref='-440472' />
105
+ <nd ref='-440478' />
106
+ <nd ref='-440462' />
107
+ <nd ref='-440468' />
108
+ <nd ref='-440482' />
109
+ <nd ref='-440476' />
110
+ <nd ref='-440478' />
111
+ <tag k='highway' v='footway' />
112
+ <tag k='level' v='2' />
113
+ <tag k='name' v='w1' />
114
+ </way>
115
+ <way id='-440502' action='modify' visible='true'>
116
+ <nd ref='-440486' />
117
+ <nd ref='-440488' />
118
+ <nd ref='-440490' />
119
+ <nd ref='-440492' />
120
+ <tag k='highway' v='steps' />
121
+ <tag k='level' v='1;2' />
122
+ <tag k='name' v='w6' />
123
+ </way>
124
+ <way id='-440503' action='modify' visible='true'>
125
+ <nd ref='-440484' />
126
+ <nd ref='-440486' />
127
+ <tag k='highway' v='footway' />
128
+ <tag k='level' v='2' />
129
+ <tag k='name' v='w5' />
130
+ </way>
131
+ <way id='-440504' action='modify' visible='true'>
132
+ <nd ref='-440492' />
133
+ <nd ref='-440494' />
134
+ <nd ref='-441210' />
135
+ <nd ref='-440496' />
136
+ <tag k='highway' v='footway' />
137
+ <tag k='level' v='1' />
138
+ <tag k='name' v='w7' />
139
+ </way>
140
+ <way id='-440505' action='modify' visible='true'>
141
+ <nd ref='-440494' />
142
+ <nd ref='-440498' />
143
+ <tag k='highway' v='footway' />
144
+ <tag k='level' v='1' />
145
+ <tag k='name' v='w9' />
146
+ </way>
147
+ <way id='-441188' action='modify' visible='true'>
148
+ <nd ref='-441184' />
149
+ <nd ref='-441187' />
150
+ <tag k='highway' v='footway' />
151
+ <tag k='level' v='2' />
152
+ <tag k='name' v='w4' />
153
+ </way>
154
+ <way id='-441214' action='modify' visible='true'>
155
+ <nd ref='-441210' />
156
+ <nd ref='-441187' />
157
+ <tag k='highway' v='footway' />
158
+ <tag k='level' v='1' />
159
+ <tag k='name' v='w8' />
160
+ </way>
161
+ <way id='-441263' action='modify' visible='true'>
162
+ <nd ref='-441187' />
163
+ <nd ref='-441270' />
164
+ <nd ref='-441273' />
165
+ <tag k='highway' v='footway' />
166
+ <tag k='level' v='0' />
167
+ <tag k='name' v='w10' />
168
+ </way>
169
+ <way id='-441268' action='modify' visible='true'>
170
+ <nd ref='-441273' />
171
+ <nd ref='-441286' />
172
+ <tag k='highway' v='footway' />
173
+ </way>
174
+ </osm>
@@ -0,0 +1,89 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <osm version='0.6' generator='JOSM'>
3
+ <node id='-1610618489065308' action='modify' visible='true' lat='43.46581979762' lon='5.32865289098' />
4
+ <node id='-1610618489065316' action='modify' visible='true' lat='43.46581966568' lon='5.32863796849'>
5
+ <tag k='door' v='*' />
6
+ <tag k='level' v='1' />
7
+ <tag k='name' v='t4c' />
8
+ <tag k='note' v='Alternative possible: level=3 repeat_on=5;1' />
9
+ <tag k='repeat_on' v='3;5' />
10
+ </node>
11
+ <node id='-1610618489065320' action='modify' visible='true' lat='43.46579840441' lon='5.32862340067' />
12
+ <node id='-1610618489065329' action='modify' visible='true' lat='43.46583221281' lon='5.3286481597'>
13
+ <tag k='name' v='f4c' />
14
+ </node>
15
+ <node id='-1610618489065330' action='modify' visible='true' lat='43.4657986683' lon='5.32865324565' />
16
+ <node id='-1610618489065333' action='modify' visible='true' lat='43.46583260898' lon='5.32862432049'>
17
+ <tag k='name' v='f4a' />
18
+ </node>
19
+ <node id='-1610618489065336' action='modify' visible='true' lat='43.46580910102' lon='5.32863814582'>
20
+ <tag k='highway' v='elevator' />
21
+ <tag k='level' v='1;3;4;5' />
22
+ <tag k='name' v='t4b' />
23
+ </node>
24
+ <node id='-1610618489065338' action='modify' visible='true' lat='43.46578829685' lon='5.32862432049'>
25
+ <tag k='name' v='s4' />
26
+ </node>
27
+ <node id='-1610618489065339' action='modify' visible='true' lat='43.4658333354' lon='5.32863796894'>
28
+ <tag k='name' v='f4b' />
29
+ </node>
30
+ <node id='-1610618489065345' action='modify' visible='true' lat='43.46579853635' lon='5.32863832316'>
31
+ <tag k='door' v='*' />
32
+ <tag k='entrance' v='yes' />
33
+ <tag k='level' v='4' />
34
+ <tag k='name' v='t4a' />
35
+ <tag k='railway' v='train_station_entrance' />
36
+ </node>
37
+ <node id='-1610618489065357' action='modify' visible='true' lat='43.46581953373' lon='5.328623046' />
38
+ <way id='-921430905801527' action='modify' visible='true'>
39
+ <nd ref='-1610618489065345' />
40
+ <nd ref='-1610618489065336' />
41
+ <tag k='highway' v='footway' />
42
+ <tag k='level' v='4' />
43
+ </way>
44
+ <way id='-921430905801534' action='modify' visible='true'>
45
+ <nd ref='-1610618489065357' />
46
+ <nd ref='-1610618489065316' />
47
+ <nd ref='-1610618489065308' />
48
+ <nd ref='-1610618489065330' />
49
+ <nd ref='-1610618489065345' />
50
+ <nd ref='-1610618489065320' />
51
+ <nd ref='-1610618489065357' />
52
+ <tag k='elevator' v='yes' />
53
+ <tag k='indoor' v='room' />
54
+ <tag k='level' v='1;2;3;4;5' />
55
+ <tag k='name' v='Modèle Transilien : variante entrée de gare' />
56
+ <tag k='note' v='Alternative possible : level=1-5' />
57
+ </way>
58
+ <way id='-921430905801540' action='modify' visible='true'>
59
+ <nd ref='-1610618489065329' />
60
+ <nd ref='-1610618489065316' />
61
+ <tag k='highway' v='footway' />
62
+ <tag k='level' v='5' />
63
+ </way>
64
+ <way id='-921430905801542' action='modify' visible='true'>
65
+ <nd ref='-1610618489065333' />
66
+ <nd ref='-1610618489065316' />
67
+ <tag k='highway' v='footway' />
68
+ <tag k='level' v='1' />
69
+ </way>
70
+ <way id='-921430905801544' action='modify' visible='true'>
71
+ <nd ref='-1610618489065316' />
72
+ <nd ref='-1610618489065336' />
73
+ <tag k='highway' v='footway' />
74
+ <tag k='level' v='1' />
75
+ <tag k='note' v='Alternative possible: level=3 repeat_on=5;1' />
76
+ <tag k='repeat_on' v='3;5' />
77
+ </way>
78
+ <way id='-921430905801546' action='modify' visible='true'>
79
+ <nd ref='-1610618489065338' />
80
+ <nd ref='-1610618489065345' />
81
+ <tag k='highway' v='footway' />
82
+ </way>
83
+ <way id='-921430905801554' action='modify' visible='true'>
84
+ <nd ref='-1610618489065339' />
85
+ <nd ref='-1610618489065316' />
86
+ <tag k='highway' v='footway' />
87
+ <tag k='level' v='3' />
88
+ </way>
89
+ </osm>