@wemap/routers 12.10.8 → 12.10.9
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.
- package/dist/helpers/InstructionManager.d.ts +20 -0
- package/dist/helpers/InstructionManagerV1.d.ts +7 -0
- package/{index.ts → dist/index.d.ts} +1 -11
- package/dist/index.js +1 -5099
- package/dist/index.js.map +1 -1
- package/dist/src/ItineraryInfoManager.d.ts +31 -0
- package/dist/src/RoutingError.d.ts +24 -0
- package/{src/StatusCode.ts → dist/src/StatusCode.d.ts} +2 -3
- package/dist/src/Utils.d.ts +6 -0
- package/dist/src/graph/Edge.d.ts +32 -0
- package/dist/src/graph/Graph.d.ts +40 -0
- package/dist/src/graph/GraphProjection.d.ts +11 -0
- package/dist/src/graph/GraphProjectionOptions.d.ts +7 -0
- package/dist/src/graph/GraphRoute.d.ts +19 -0
- package/dist/src/graph/GraphRouter.d.ts +20 -0
- package/dist/src/graph/GraphRouterEngine.d.ts +77 -0
- package/{src/graph/GraphRouterOptions.ts → dist/src/graph/GraphRouterOptions.d.ts} +5 -7
- package/dist/src/graph/GraphRouterOptionsBuilder.d.ts +20 -0
- package/dist/src/graph/NoRouteFoundError.d.ts +12 -0
- package/dist/src/graph/Vertex.d.ts +19 -0
- package/dist/src/model/Itinerary.d.ts +81 -0
- package/dist/src/model/Leg.d.ts +66 -0
- package/dist/src/model/LevelChange.d.ts +7 -0
- package/dist/src/model/RouterRequest.d.ts +40 -0
- package/dist/src/model/Step.d.ts +42 -0
- package/dist/src/model/StepExtra.d.ts +3 -0
- package/dist/src/model/StepsBuilder.d.ts +16 -0
- package/dist/src/model/TransitMode.d.ts +5 -0
- package/{src/model/TravelMode.ts → dist/src/model/TravelMode.d.ts} +1 -2
- package/dist/src/model/generateSteps.d.ts +0 -0
- package/{src/remote/RemoteRouter.ts → dist/src/remote/RemoteRouter.d.ts} +2 -7
- package/dist/src/remote/RemoteRouterManager.d.ts +731 -0
- package/dist/src/remote/RemoteRouterUtils.d.ts +6 -0
- package/dist/src/remote/cityway/CitywayRemoteRouter.d.ts +109 -0
- package/dist/src/remote/deutsche-bahn/DeutscheBahnRemoteRouter.d.ts +31 -0
- package/dist/src/remote/geovelo/GeoveloRemoteRouter.d.ts +106 -0
- package/dist/src/remote/idfm/IdfmRemoteRouter.d.ts +123 -0
- package/dist/src/remote/navitia/NavitiaRemoteRouter.d.ts +34 -0
- package/dist/src/remote/navitia/types.d.ts +87 -0
- package/dist/src/remote/osrm/OsrmRemoteRouter.d.ts +70 -0
- package/dist/src/remote/otp/OtpRemoteRouter.d.ts +69 -0
- package/dist/src/remote/wemap-multi/WemapMultiRemoteRouter.d.ts +19 -0
- package/dist/src/types.d.ts +31 -0
- package/dist/src/wemap-multi/CustomGraphMap.d.ts +56 -0
- package/dist/src/wemap-multi/CustomGraphMapTester.d.ts +39 -0
- package/dist/src/wemap-multi/WemapMultiRouter.d.ts +14 -0
- package/dist/src/wemap-osm/OsmGraphUtils.d.ts +11 -0
- package/dist/tests/CommonTest.d.ts +8 -0
- package/package.json +11 -8
- package/assets/biocbon-bergere-rdc-network.osm +0 -163
- package/assets/bureaux-wemap-montpellier-network.osm +0 -174
- package/assets/components.osm +0 -146
- package/assets/elevator-models-4.osm +0 -89
- package/assets/elevator-models.osm +0 -354
- package/assets/exit-graph.osm +0 -25
- package/assets/gare-de-lest-network-pp-bounds.osm +0 -1613
- package/assets/gare-de-lyon-extract.osm +0 -174
- package/assets/geovelo-montpellier.json +0 -1144
- package/assets/horizontal-elevator.osm +0 -12
- package/assets/itinerary-deutsche-bahn-1.json +0 -368
- package/assets/itinerary-grenoble-otp-1.json +0 -1536
- package/assets/itinerary-grenoble-otp-2.json +0 -1092
- package/assets/itinerary-info-two-points-proj.osm +0 -39
- package/assets/itinerary-info-two-points.osm +0 -24
- package/assets/itinerary-lehavre-cityway-1.json +0 -6799
- package/assets/itinerary-lehavre-cityway-2.json +0 -2133
- package/assets/itinerary-lehavre-cityway-3.json +0 -12577
- package/assets/itinerary-lehavre-cityway-4.json +0 -1451
- package/assets/itinerary-lehavre-cityway-5.json +0 -5925
- package/assets/itinerary-lemans-navitia.json +0 -7768
- package/assets/itinerary-montpellier-osrm-3.json +0 -185
- package/assets/itinerary-montpellier-outdoor-without-steps.json +0 -110
- package/assets/itinerary-montpellier-outdoor.json +0 -513
- package/assets/itinerary-paris-idfm-2.json +0 -1838
- package/assets/itinerary-paris-idfm.json +0 -27727
- package/assets/itinerary-step-not-on-path-osrm.json +0 -457
- package/assets/itinerary-with-duplicate-nodes.json +0 -110
- package/assets/network-conveying-backward.osm +0 -74
- package/assets/network-elevator.osm +0 -48
- package/assets/network-escalators.osm +0 -50
- package/assets/network-simple.osm +0 -27
- package/assets/network-steps-same-level.osm +0 -283
- package/assets/network-with-modifiers.osm +0 -39
- package/assets/one-way.osm +0 -46
- package/assets/report-map-1.osm +0 -36
- package/assets/report-map-2.osm +0 -29
- package/assets/report-map-3.osm +0 -15
- package/assets/rr-wemap-multi-indoor-outdoor-indoor.json +0 -1352
- package/assets/rr-wemap-multi-indoor-outdoor.json +0 -145
- package/assets/rr-wemap-multi-multi-level.json +0 -262
- package/assets/rr-wemap-multi-outdoor-indoor.json +0 -145
- package/assets/rr-wemap-multi-outdoor-outdoor.json +0 -207
- package/assets/rr-wemap-multi-remote-indoor-indoor.json +0 -155
- package/assets/rr-wemap-multi-remote-indoor-outdoor-indoor.json +0 -668
- package/assets/rr-wemap-multi-remote-indoor-outdoor.json +0 -154
- package/assets/rr-wemap-multi-remote-outdoor-indoor.json +0 -179
- package/assets/rr-wemap-multi-remote-outdoor-outdoor.json +0 -109
- package/assets/stairs-and-exit.osm +0 -47
- package/helpers/InstructionManager.ts +0 -184
- package/helpers/InstructionManagerV1.ts +0 -95
- package/src/ItineraryInfoManager.spec.ts +0 -183
- package/src/ItineraryInfoManager.ts +0 -181
- package/src/RoutingError.ts +0 -60
- package/src/Utils.ts +0 -8
- package/src/graph/Edge.spec.ts +0 -32
- package/src/graph/Edge.ts +0 -64
- package/src/graph/Graph.spec.ts +0 -509
- package/src/graph/Graph.ts +0 -272
- package/src/graph/GraphProjection.ts +0 -15
- package/src/graph/GraphProjectionOptions.ts +0 -8
- package/src/graph/GraphRoute.spec.ts +0 -15
- package/src/graph/GraphRoute.ts +0 -43
- package/src/graph/GraphRouter.spec.ts +0 -317
- package/src/graph/GraphRouter.ts +0 -229
- package/src/graph/GraphRouterEngine.ts +0 -248
- package/src/graph/GraphRouterOptionsBuilder.ts +0 -98
- package/src/graph/NoRouteFoundError.ts +0 -39
- package/src/graph/Vertex.spec.ts +0 -42
- package/src/graph/Vertex.ts +0 -45
- package/src/model/Itinerary.spec.ts +0 -134
- package/src/model/Itinerary.ts +0 -370
- package/src/model/Leg.spec.ts +0 -107
- package/src/model/Leg.ts +0 -224
- package/src/model/LevelChange.spec.ts +0 -50
- package/src/model/LevelChange.ts +0 -14
- package/src/model/RouterRequest.ts +0 -33
- package/src/model/Step.spec.ts +0 -99
- package/src/model/Step.ts +0 -90
- package/src/model/StepExtra.ts +0 -1
- package/src/model/StepsBuilder.ts +0 -242
- package/src/model/TransitMode.spec.ts +0 -31
- package/src/model/TransitMode.ts +0 -28
- package/src/model/generateSteps.ts +0 -102
- package/src/remote/RemoteRouterManager.spec.ts +0 -178
- package/src/remote/RemoteRouterManager.ts +0 -72
- package/src/remote/RemoteRouterUtils.ts +0 -25
- package/src/remote/cityway/CitywayRemoteRouter.spec.ts +0 -122
- package/src/remote/cityway/CitywayRemoteRouter.ts +0 -435
- package/src/remote/deutsche-bahn/DeutscheBahnRemoteRouter.spec.ts +0 -52
- package/src/remote/deutsche-bahn/DeutscheBahnRemoteRouter.ts +0 -85
- package/src/remote/geovelo/GeoveloRemoteRouter.spec.ts +0 -54
- package/src/remote/geovelo/GeoveloRemoteRouter.ts +0 -293
- package/src/remote/idfm/IdfmRemoteRouter.spec.ts +0 -102
- package/src/remote/idfm/IdfmRemoteRouter.ts +0 -523
- package/src/remote/navitia/NavitiaRemoteRouter.spec.ts +0 -116
- package/src/remote/navitia/NavitiaRemoteRouter.ts +0 -445
- package/src/remote/navitia/types.ts +0 -73
- package/src/remote/osrm/OsrmRemoteRouter.spec.ts +0 -127
- package/src/remote/osrm/OsrmRemoteRouter.ts +0 -303
- package/src/remote/otp/OtpRemoteRouter.spec.ts +0 -103
- package/src/remote/otp/OtpRemoteRouter.ts +0 -223
- package/src/remote/wemap-multi/WemapMultiRemoteRouter.spec.ts +0 -103
- package/src/remote/wemap-multi/WemapMultiRemoteRouter.ts +0 -56
- package/src/types.ts +0 -32
- package/src/wemap-multi/CustomGraphMap.spec.ts +0 -40
- package/src/wemap-multi/CustomGraphMap.ts +0 -213
- package/src/wemap-multi/CustomGraphMapTester.spec.ts +0 -48
- package/src/wemap-multi/CustomGraphMapTester.ts +0 -90
- package/src/wemap-multi/WemapMultiRouter.spec.ts +0 -138
- package/src/wemap-multi/WemapMultiRouter.ts +0 -329
- package/src/wemap-osm/OsmGraphUtils.spec.ts +0 -165
- package/src/wemap-osm/OsmGraphUtils.ts +0 -173
- package/src/wemap-osm/OsmRouter.elevators.spec.ts +0 -106
- package/src/wemap-osm/OsmRouter.spec.ts +0 -292
- package/tests/CommonTest.ts +0 -78
- package/tsconfig.json +0 -3
- package/vite.config.ts +0 -4
package/assets/components.osm
DELETED
|
@@ -1,146 +0,0 @@
|
|
|
1
|
-
<?xml version='1.0' encoding='UTF-8'?>
|
|
2
|
-
<osm version='0.6' generator='JOSM'>
|
|
3
|
-
<node id='-161218670596205' action='modify' visible='true' lat='45.19343691244' lon='5.71669745344' />
|
|
4
|
-
<node id='-161218670596206' action='modify' visible='true' lat='45.193278084' lon='5.71670229287' />
|
|
5
|
-
<node id='-161218670596207' action='modify' visible='true' lat='45.19328319976' lon='5.71704036911' />
|
|
6
|
-
<node id='-161218670596208' action='modify' visible='true' lat='45.19344202819' lon='5.71703552968' />
|
|
7
|
-
<node id='-161218670596209' action='modify' visible='true' lat='45.19339744873' lon='5.71676589717'>
|
|
8
|
-
<tag k='name' v='p1' />
|
|
9
|
-
</node>
|
|
10
|
-
<node id='-161218670596210' action='modify' visible='true' lat='45.19339817953' lon='5.71679735347'>
|
|
11
|
-
<tag k='name' v='p2' />
|
|
12
|
-
</node>
|
|
13
|
-
<node id='-161218670596211' action='modify' visible='true' lat='45.19337869139' lon='5.71679873616'>
|
|
14
|
-
<tag k='name' v='p3' />
|
|
15
|
-
</node>
|
|
16
|
-
<node id='-161218670596212' action='modify' visible='true' lat='45.19337747338' lon='5.71675656398'>
|
|
17
|
-
<tag k='name' v='p4' />
|
|
18
|
-
</node>
|
|
19
|
-
<node id='-161218670596215' action='modify' visible='true' lat='45.19340061555' lon='5.71685646366'>
|
|
20
|
-
<tag k='name' v='p21' />
|
|
21
|
-
</node>
|
|
22
|
-
<node id='-161218670596216' action='modify' visible='true' lat='45.19340232076' lon='5.71692594406'>
|
|
23
|
-
<tag k='name' v='p22' />
|
|
24
|
-
</node>
|
|
25
|
-
<node id='-161218670596217' action='modify' visible='true' lat='45.19336456249' lon='5.7169345859'>
|
|
26
|
-
<tag k='name' v='p31' />
|
|
27
|
-
</node>
|
|
28
|
-
<node id='-161218670596218' action='modify' visible='true' lat='45.19332436816' lon='5.71693562293'>
|
|
29
|
-
<tag k='highway' v='elevator' />
|
|
30
|
-
<tag k='name' v='p32' />
|
|
31
|
-
</node>
|
|
32
|
-
<node id='-161218670596219' action='modify' visible='true' lat='45.19332315015' lon='5.71686372281'>
|
|
33
|
-
<tag k='name' v='p33' />
|
|
34
|
-
</node>
|
|
35
|
-
<node id='-161218670596220' action='modify' visible='true' lat='45.19329367429' lon='5.71686441416'>
|
|
36
|
-
<tag k='name' v='p34' />
|
|
37
|
-
</node>
|
|
38
|
-
<node id='-161218670596221' action='modify' visible='true' lat='45.19334458713' lon='5.71673374952'>
|
|
39
|
-
<tag k='name' v='p11' />
|
|
40
|
-
</node>
|
|
41
|
-
<node id='-161218670596222' action='modify' visible='true' lat='45.19334531793' lon='5.71679355106'>
|
|
42
|
-
<tag k='name' v='p12' />
|
|
43
|
-
</node>
|
|
44
|
-
<node id='-161218670596223' action='modify' visible='true' lat='45.19331364967' lon='5.71679493375'>
|
|
45
|
-
<tag k='name' v='p13' />
|
|
46
|
-
</node>
|
|
47
|
-
<node id='-161218670596224' action='modify' visible='true' lat='45.19331145725' lon='5.71674342838'>
|
|
48
|
-
<tag k='name' v='p14' />
|
|
49
|
-
</node>
|
|
50
|
-
<node id='-161218670596225' action='modify' visible='true' lat='45.19340037195' lon='5.71697122731'>
|
|
51
|
-
<tag k='name' v='p41' />
|
|
52
|
-
</node>
|
|
53
|
-
<node id='-161218670596226' action='modify' visible='true' lat='45.19340158996' lon='5.71701478219'>
|
|
54
|
-
<tag k='name' v='p42' />
|
|
55
|
-
</node>
|
|
56
|
-
<node id='-161218670596227' action='modify' visible='true' lat='45.19337747338' lon='5.71701581921'>
|
|
57
|
-
<tag k='name' v='p43' />
|
|
58
|
-
</node>
|
|
59
|
-
<node id='-161218670596228' action='modify' visible='true' lat='45.19337771699' lon='5.71697295568'>
|
|
60
|
-
<tag k='name' v='p44' />
|
|
61
|
-
</node>
|
|
62
|
-
<node id='-161218670596230' action='modify' visible='true' lat='45.19334848476' lon='5.71697986915'>
|
|
63
|
-
<tag k='name' v='p48' />
|
|
64
|
-
</node>
|
|
65
|
-
<node id='-161218670596231' action='modify' visible='true' lat='45.19332241934' lon='5.7169805605'>
|
|
66
|
-
<tag k='name' v='p47' />
|
|
67
|
-
</node>
|
|
68
|
-
<node id='-161218670596232' action='modify' visible='true' lat='45.19332363736' lon='5.71702307836'>
|
|
69
|
-
<tag k='name' v='p46' />
|
|
70
|
-
</node>
|
|
71
|
-
<node id='-161218670596233' action='modify' visible='true' lat='45.19334945917' lon='5.71702065864'>
|
|
72
|
-
<tag k='name' v='p45' />
|
|
73
|
-
</node>
|
|
74
|
-
<way id='-921430905467925' action='modify' visible='true'>
|
|
75
|
-
<nd ref='-161218670596205' />
|
|
76
|
-
<nd ref='-161218670596206' />
|
|
77
|
-
<nd ref='-161218670596207' />
|
|
78
|
-
<nd ref='-161218670596208' />
|
|
79
|
-
<nd ref='-161218670596205' />
|
|
80
|
-
<tag k='wemap:routing-bounds' v='yes' />
|
|
81
|
-
</way>
|
|
82
|
-
<way id='-921430905467948' action='modify' visible='true'>
|
|
83
|
-
<nd ref='-161218670596209' />
|
|
84
|
-
<nd ref='-161218670596210' />
|
|
85
|
-
<nd ref='-161218670596211' />
|
|
86
|
-
<tag k='highway' v='footway' />
|
|
87
|
-
</way>
|
|
88
|
-
<way id='-921430905467953' action='modify' visible='true'>
|
|
89
|
-
<nd ref='-161218670596215' />
|
|
90
|
-
<nd ref='-161218670596216' />
|
|
91
|
-
<tag k='highway' v='footway' />
|
|
92
|
-
</way>
|
|
93
|
-
<way id='-921430905467954' action='modify' visible='true'>
|
|
94
|
-
<nd ref='-161218670596218' />
|
|
95
|
-
<nd ref='-161218670596219' />
|
|
96
|
-
<nd ref='-161218670596220' />
|
|
97
|
-
<tag k='highway' v='footway' />
|
|
98
|
-
<tag k='level' v='0' />
|
|
99
|
-
</way>
|
|
100
|
-
<way id='-921430905467957' action='modify' visible='true'>
|
|
101
|
-
<nd ref='-161218670596217' />
|
|
102
|
-
<nd ref='-161218670596218' />
|
|
103
|
-
<tag k='highway' v='footway' />
|
|
104
|
-
<tag k='level' v='1' />
|
|
105
|
-
</way>
|
|
106
|
-
<way id='-921430905467960' action='modify' visible='true'>
|
|
107
|
-
<nd ref='-161218670596221' />
|
|
108
|
-
<nd ref='-161218670596222' />
|
|
109
|
-
<nd ref='-161218670596223' />
|
|
110
|
-
<tag k='highway' v='footway' />
|
|
111
|
-
<tag k='level' v='0' />
|
|
112
|
-
</way>
|
|
113
|
-
<way id='-921430905467963' action='modify' visible='true'>
|
|
114
|
-
<nd ref='-161218670596225' />
|
|
115
|
-
<nd ref='-161218670596226' />
|
|
116
|
-
<nd ref='-161218670596227' />
|
|
117
|
-
<nd ref='-161218670596228' />
|
|
118
|
-
<nd ref='-161218670596225' />
|
|
119
|
-
<tag k='highway' v='footway' />
|
|
120
|
-
</way>
|
|
121
|
-
<way id='-921430905467967' action='modify' visible='true'>
|
|
122
|
-
<nd ref='-161218670596230' />
|
|
123
|
-
<nd ref='-161218670596231' />
|
|
124
|
-
<nd ref='-161218670596232' />
|
|
125
|
-
<nd ref='-161218670596233' />
|
|
126
|
-
<nd ref='-161218670596230' />
|
|
127
|
-
<tag k='highway' v='footway' />
|
|
128
|
-
</way>
|
|
129
|
-
<way id='-921430905467985' action='modify' visible='true'>
|
|
130
|
-
<nd ref='-161218670596233' />
|
|
131
|
-
<nd ref='-161218670596227' />
|
|
132
|
-
<tag k='highway' v='footway' />
|
|
133
|
-
<tag k='oneway' v='yes' />
|
|
134
|
-
</way>
|
|
135
|
-
<way id='-921430905468123' action='modify' visible='true'>
|
|
136
|
-
<nd ref='-161218670596223' />
|
|
137
|
-
<nd ref='-161218670596224' />
|
|
138
|
-
<tag k='highway' v='footway' />
|
|
139
|
-
<tag k='level' v='1' />
|
|
140
|
-
</way>
|
|
141
|
-
<way id='-921430905468128' action='modify' visible='true'>
|
|
142
|
-
<nd ref='-161218670596211' />
|
|
143
|
-
<nd ref='-161218670596212' />
|
|
144
|
-
<tag k='highway' v='footway' />
|
|
145
|
-
</way>
|
|
146
|
-
</osm>
|
|
@@ -1,89 +0,0 @@
|
|
|
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>
|
|
@@ -1,354 +0,0 @@
|
|
|
1
|
-
<?xml version='1.0' encoding='UTF-8'?>
|
|
2
|
-
<osm version='0.6' generator='JOSM'>
|
|
3
|
-
<node id='-144749' action='modify' visible='true' lat='43.46581979762' lon='5.32865289098' />
|
|
4
|
-
<node id='-144750' action='modify' visible='true' lat='43.4658202912' lon='5.32869310224'>
|
|
5
|
-
<tag k='door' v='*' />
|
|
6
|
-
<tag k='level' v='1' />
|
|
7
|
-
<tag k='name' v='t5b' />
|
|
8
|
-
<tag k='repeat_on' v='3;5' />
|
|
9
|
-
</node>
|
|
10
|
-
<node id='-144751' action='modify' visible='true' lat='43.46584913825' lon='5.32862238103' />
|
|
11
|
-
<node id='-144752' action='modify' visible='true' lat='43.46583903069' lon='5.32862330085'>
|
|
12
|
-
<tag k='name' v='s2' />
|
|
13
|
-
</node>
|
|
14
|
-
<node id='-144753' action='modify' visible='true' lat='43.46588228606' lon='5.32856079109'>
|
|
15
|
-
<tag k='name' v='f1a' />
|
|
16
|
-
</node>
|
|
17
|
-
<node id='-144754' action='modify' visible='true' lat='43.4658675595' lon='5.32858608608' />
|
|
18
|
-
<node id='-144755' action='modify' visible='true' lat='43.46588327658' lon='5.32867389111'>
|
|
19
|
-
<tag k='name' v='f3a' />
|
|
20
|
-
</node>
|
|
21
|
-
<node id='-144756' action='modify' visible='true' lat='43.46582035584' lon='5.32867836656' />
|
|
22
|
-
<node id='-144757' action='modify' visible='true' lat='43.46581966568' lon='5.32863796849'>
|
|
23
|
-
<tag k='door' v='*' />
|
|
24
|
-
<tag k='level' v='1' />
|
|
25
|
-
<tag k='name' v='t4c' />
|
|
26
|
-
<tag k='note' v='Alternative possible: level=3 repeat_on=5;1' />
|
|
27
|
-
<tag k='repeat_on' v='3;5' />
|
|
28
|
-
</node>
|
|
29
|
-
<node id='-144758' action='modify' visible='true' lat='43.46588387116' lon='5.32868699353'>
|
|
30
|
-
<tag k='name' v='f3b' />
|
|
31
|
-
</node>
|
|
32
|
-
<node id='-144759' action='modify' visible='true' lat='43.4658332345' lon='5.32867945425'>
|
|
33
|
-
<tag k='name' v='f5a' />
|
|
34
|
-
</node>
|
|
35
|
-
<node id='-144760' action='modify' visible='true' lat='43.46585342717' lon='5.32858372035' />
|
|
36
|
-
<node id='-144761' action='modify' visible='true' lat='43.46579840441' lon='5.32862340067' />
|
|
37
|
-
<node id='-144762' action='modify' visible='true' lat='43.46584940214' lon='5.32865222601' />
|
|
38
|
-
<node id='-144763' action='modify' visible='true' lat='43.46584927019' lon='5.32863730352'>
|
|
39
|
-
<tag k='door' v='*' />
|
|
40
|
-
<tag k='entrance' v='yes' />
|
|
41
|
-
<tag k='level' v='4' />
|
|
42
|
-
<tag k='name' v='t2a' />
|
|
43
|
-
</node>
|
|
44
|
-
<node id='-144764' action='modify' visible='true' lat='43.46585983485' lon='5.32863712618'>
|
|
45
|
-
<tag k='highway' v='elevator' />
|
|
46
|
-
<tag k='level' v='1;3;4;5' />
|
|
47
|
-
<tag k='name' v='t2b' />
|
|
48
|
-
</node>
|
|
49
|
-
<node id='-144765' action='modify' visible='true' lat='43.46584939895' lon='5.32868789701'>
|
|
50
|
-
<tag k='door' v='*' />
|
|
51
|
-
<tag k='entrance' v='yes' />
|
|
52
|
-
<tag k='level' v='4' />
|
|
53
|
-
<tag k='name' v='t3a' />
|
|
54
|
-
</node>
|
|
55
|
-
<node id='-144766' action='modify' visible='true' lat='43.46579935684' lon='5.32869346015'>
|
|
56
|
-
<tag k='door' v='*' />
|
|
57
|
-
<tag k='entrance' v='yes' />
|
|
58
|
-
<tag k='level' v='4' />
|
|
59
|
-
<tag k='name' v='t5a' />
|
|
60
|
-
<tag k='railway' v='train_station_entrance' />
|
|
61
|
-
</node>
|
|
62
|
-
<node id='-144767' action='modify' visible='true' lat='43.4658703995' lon='5.32863694885'>
|
|
63
|
-
<tag k='door' v='*' />
|
|
64
|
-
<tag k='level' v='1' />
|
|
65
|
-
<tag k='name' v='t2c' />
|
|
66
|
-
<tag k='note' v='Alternative possible: level=3 repeat_on=5;1' />
|
|
67
|
-
<tag k='repeat_on' v='3;5' />
|
|
68
|
-
</node>
|
|
69
|
-
<node id='-144768' action='modify' visible='true' lat='43.46588268223' lon='5.32869936822'>
|
|
70
|
-
<tag k='name' v='f3c' />
|
|
71
|
-
</node>
|
|
72
|
-
<node id='-144769' action='modify' visible='true' lat='43.4657994904' lon='5.32870856621' />
|
|
73
|
-
<node id='-144770' action='modify' visible='true' lat='43.46583221281' lon='5.3286481597'>
|
|
74
|
-
<tag k='name' v='f4c' />
|
|
75
|
-
</node>
|
|
76
|
-
<node id='-144771' action='modify' visible='true' lat='43.4657986683' lon='5.32865324565' />
|
|
77
|
-
<node id='-144772' action='modify' visible='true' lat='43.46588294662' lon='5.32864714006'>
|
|
78
|
-
<tag k='name' v='f2c' />
|
|
79
|
-
</node>
|
|
80
|
-
<node id='-144773' action='modify' visible='true' lat='43.46583906198' lon='5.32867389598'>
|
|
81
|
-
<tag k='name' v='s3' />
|
|
82
|
-
</node>
|
|
83
|
-
<node id='-144774' action='modify' visible='true' lat='43.46583260898' lon='5.32862432049'>
|
|
84
|
-
<tag k='name' v='f4a' />
|
|
85
|
-
</node>
|
|
86
|
-
<node id='-144775' action='modify' visible='true' lat='43.46586049357' lon='5.32858499388'>
|
|
87
|
-
<tag k='highway' v='elevator' />
|
|
88
|
-
<tag k='level' v='1;3;4;5' />
|
|
89
|
-
<tag k='name' v='Modèle sans indoor' />
|
|
90
|
-
</node>
|
|
91
|
-
<node id='-144776' action='modify' visible='true' lat='43.46582061973' lon='5.32870821154' />
|
|
92
|
-
<node id='-144777' action='modify' visible='true' lat='43.46580910102' lon='5.32863814582'>
|
|
93
|
-
<tag k='highway' v='elevator' />
|
|
94
|
-
<tag k='level' v='1;3;4;5' />
|
|
95
|
-
<tag k='name' v='t4b' />
|
|
96
|
-
</node>
|
|
97
|
-
<node id='-144778' action='modify' visible='true' lat='43.46587066182' lon='5.3287026484' />
|
|
98
|
-
<node id='-144779' action='modify' visible='true' lat='43.46578829685' lon='5.32862432049'>
|
|
99
|
-
<tag k='name' v='s4' />
|
|
100
|
-
</node>
|
|
101
|
-
<node id='-144780' action='modify' visible='true' lat='43.4658333354' lon='5.32863796894'>
|
|
102
|
-
<tag k='name' v='f4b' />
|
|
103
|
-
</node>
|
|
104
|
-
<node id='-144781' action='modify' visible='true' lat='43.46588334278' lon='5.32862330085'>
|
|
105
|
-
<tag k='name' v='f2a' />
|
|
106
|
-
</node>
|
|
107
|
-
<node id='-144782' action='modify' visible='true' lat='43.46588255038' lon='5.32858453916'>
|
|
108
|
-
<tag k='name' v='f1b' />
|
|
109
|
-
</node>
|
|
110
|
-
<node id='-144783' action='modify' visible='true' lat='43.46583382908' lon='5.32869255667'>
|
|
111
|
-
<tag k='name' v='f5b' />
|
|
112
|
-
</node>
|
|
113
|
-
<node id='-144784' action='modify' visible='true' lat='43.4658826824' lon='5.32860392005'>
|
|
114
|
-
<tag k='name' v='f1c' />
|
|
115
|
-
</node>
|
|
116
|
-
<node id='-144785' action='modify' visible='true' lat='43.46579922651' lon='5.32867872123' />
|
|
117
|
-
<node id='-144786' action='modify' visible='true' lat='43.46579853635' lon='5.32863832316'>
|
|
118
|
-
<tag k='door' v='*' />
|
|
119
|
-
<tag k='entrance' v='yes' />
|
|
120
|
-
<tag k='level' v='4' />
|
|
121
|
-
<tag k='name' v='t4a' />
|
|
122
|
-
<tag k='railway' v='train_station_entrance' />
|
|
123
|
-
</node>
|
|
124
|
-
<node id='-144787' action='modify' visible='true' lat='43.46583264015' lon='5.32870493136'>
|
|
125
|
-
<tag k='name' v='f5c' />
|
|
126
|
-
</node>
|
|
127
|
-
<node id='-144788' action='modify' visible='true' lat='43.46584926862' lon='5.32867315809' />
|
|
128
|
-
<node id='-144789' action='modify' visible='true' lat='43.46587026755' lon='5.32862202636' />
|
|
129
|
-
<node id='-144790' action='modify' visible='true' lat='43.46587053144' lon='5.32865187134' />
|
|
130
|
-
<node id='-144791' action='modify' visible='true' lat='43.46588406921' lon='5.3286369493'>
|
|
131
|
-
<tag k='name' v='f2b' />
|
|
132
|
-
</node>
|
|
133
|
-
<node id='-144792' action='modify' visible='true' lat='43.46586769157' lon='5.32858290144' />
|
|
134
|
-
<node id='-144793' action='modify' visible='true' lat='43.46578901986' lon='5.32867945912'>
|
|
135
|
-
<tag k='name' v='s5' />
|
|
136
|
-
</node>
|
|
137
|
-
<node id='-144794' action='modify' visible='true' lat='43.46587039793' lon='5.32867280342' />
|
|
138
|
-
<node id='-144795' action='modify' visible='true' lat='43.46584120998' lon='5.32856415757'>
|
|
139
|
-
<tag k='name' v='s1' />
|
|
140
|
-
</node>
|
|
141
|
-
<node id='-144796' action='modify' visible='true' lat='43.46584953251' lon='5.32870300307' />
|
|
142
|
-
<node id='-144797' action='modify' visible='true' lat='43.46587033329' lon='5.32868753911'>
|
|
143
|
-
<tag k='door' v='*' />
|
|
144
|
-
<tag k='level' v='1' />
|
|
145
|
-
<tag k='name' v='t3b' />
|
|
146
|
-
<tag k='repeat_on' v='3;5' />
|
|
147
|
-
</node>
|
|
148
|
-
<node id='-144798' action='modify' visible='true' lat='43.46581953373' lon='5.328623046' />
|
|
149
|
-
<way id='-119001' action='modify' visible='true'>
|
|
150
|
-
<nd ref='-144786' />
|
|
151
|
-
<nd ref='-144777' />
|
|
152
|
-
<tag k='highway' v='footway' />
|
|
153
|
-
<tag k='level' v='4' />
|
|
154
|
-
</way>
|
|
155
|
-
<way id='-119002' action='modify' visible='true'>
|
|
156
|
-
<nd ref='-144752' />
|
|
157
|
-
<nd ref='-144763' />
|
|
158
|
-
<tag k='highway' v='footway' />
|
|
159
|
-
<tag k='level' v='4' />
|
|
160
|
-
</way>
|
|
161
|
-
<way id='-119003' action='modify' visible='true'>
|
|
162
|
-
<nd ref='-144756' />
|
|
163
|
-
<nd ref='-144750' />
|
|
164
|
-
<nd ref='-144776' />
|
|
165
|
-
<nd ref='-144769' />
|
|
166
|
-
<nd ref='-144766' />
|
|
167
|
-
<nd ref='-144785' />
|
|
168
|
-
<nd ref='-144756' />
|
|
169
|
-
<tag k='highway' v='elevator' />
|
|
170
|
-
<tag k='indoor' v='room' />
|
|
171
|
-
<tag k='level' v='1;2;3;4;5' />
|
|
172
|
-
<tag k='name' v='Modèle conforme au Wiki OSM, variante entrée de gare' />
|
|
173
|
-
<tag k='note' v='Alternative possible : level=1-5' />
|
|
174
|
-
</way>
|
|
175
|
-
<way id='-119004' action='modify' visible='true'>
|
|
176
|
-
<nd ref='-144775' />
|
|
177
|
-
<nd ref='-144782' />
|
|
178
|
-
<tag k='highway' v='footway' />
|
|
179
|
-
<tag k='level' v='3' />
|
|
180
|
-
</way>
|
|
181
|
-
<way id='-119005' action='modify' visible='true'>
|
|
182
|
-
<nd ref='-144767' />
|
|
183
|
-
<nd ref='-144764' />
|
|
184
|
-
<tag k='highway' v='footway' />
|
|
185
|
-
<tag k='level' v='1' />
|
|
186
|
-
<tag k='note' v='Alternative possible: level=3 repeat_on=5;1' />
|
|
187
|
-
<tag k='repeat_on' v='3;5' />
|
|
188
|
-
</way>
|
|
189
|
-
<way id='-119006' action='modify' visible='true'>
|
|
190
|
-
<nd ref='-144784' />
|
|
191
|
-
<nd ref='-144754' />
|
|
192
|
-
<nd ref='-144775' />
|
|
193
|
-
<tag k='highway' v='footway' />
|
|
194
|
-
<tag k='level' v='5' />
|
|
195
|
-
</way>
|
|
196
|
-
<way id='-119007' action='modify' visible='true'>
|
|
197
|
-
<nd ref='-144755' />
|
|
198
|
-
<nd ref='-144797' />
|
|
199
|
-
<tag k='highway' v='footway' />
|
|
200
|
-
<tag k='level' v='1' />
|
|
201
|
-
</way>
|
|
202
|
-
<way id='-119008' action='modify' visible='true'>
|
|
203
|
-
<nd ref='-144798' />
|
|
204
|
-
<nd ref='-144757' />
|
|
205
|
-
<nd ref='-144749' />
|
|
206
|
-
<nd ref='-144771' />
|
|
207
|
-
<nd ref='-144786' />
|
|
208
|
-
<nd ref='-144761' />
|
|
209
|
-
<nd ref='-144798' />
|
|
210
|
-
<tag k='elevator' v='yes' />
|
|
211
|
-
<tag k='indoor' v='room' />
|
|
212
|
-
<tag k='level' v='1;2;3;4;5' />
|
|
213
|
-
<tag k='name' v='Modèle Transilien : variante entrée de gare' />
|
|
214
|
-
<tag k='note' v='Alternative possible : level=1-5' />
|
|
215
|
-
</way>
|
|
216
|
-
<way id='-119009' action='modify' visible='true'>
|
|
217
|
-
<nd ref='-144791' />
|
|
218
|
-
<nd ref='-144767' />
|
|
219
|
-
<tag k='highway' v='footway' />
|
|
220
|
-
<tag k='level' v='3' />
|
|
221
|
-
</way>
|
|
222
|
-
<way id='-119010' action='modify' visible='true'>
|
|
223
|
-
<nd ref='-144759' />
|
|
224
|
-
<nd ref='-144750' />
|
|
225
|
-
<tag k='highway' v='footway' />
|
|
226
|
-
<tag k='level' v='1' />
|
|
227
|
-
</way>
|
|
228
|
-
<way id='-119011' action='modify' visible='true'>
|
|
229
|
-
<nd ref='-144753' />
|
|
230
|
-
<nd ref='-144792' />
|
|
231
|
-
<nd ref='-144775' />
|
|
232
|
-
<tag k='highway' v='footway' />
|
|
233
|
-
<tag k='level' v='1' />
|
|
234
|
-
</way>
|
|
235
|
-
<way id='-119012' action='modify' visible='true'>
|
|
236
|
-
<nd ref='-144795' />
|
|
237
|
-
<nd ref='-144760' />
|
|
238
|
-
<nd ref='-144775' />
|
|
239
|
-
<tag k='highway' v='footway' />
|
|
240
|
-
<tag k='level' v='4' />
|
|
241
|
-
</way>
|
|
242
|
-
<way id='-119013' action='modify' visible='true'>
|
|
243
|
-
<nd ref='-144772' />
|
|
244
|
-
<nd ref='-144767' />
|
|
245
|
-
<tag k='highway' v='footway' />
|
|
246
|
-
<tag k='level' v='5' />
|
|
247
|
-
</way>
|
|
248
|
-
<way id='-119014' action='modify' visible='true'>
|
|
249
|
-
<nd ref='-144770' />
|
|
250
|
-
<nd ref='-144757' />
|
|
251
|
-
<tag k='highway' v='footway' />
|
|
252
|
-
<tag k='level' v='5' />
|
|
253
|
-
</way>
|
|
254
|
-
<way id='-119015' action='modify' visible='true'>
|
|
255
|
-
<nd ref='-144793' />
|
|
256
|
-
<nd ref='-144766' />
|
|
257
|
-
<tag k='highway' v='footway' />
|
|
258
|
-
</way>
|
|
259
|
-
<way id='-119016' action='modify' visible='true'>
|
|
260
|
-
<nd ref='-144774' />
|
|
261
|
-
<nd ref='-144757' />
|
|
262
|
-
<tag k='highway' v='footway' />
|
|
263
|
-
<tag k='level' v='1' />
|
|
264
|
-
</way>
|
|
265
|
-
<way id='-119017' action='modify' visible='true'>
|
|
266
|
-
<nd ref='-144763' />
|
|
267
|
-
<nd ref='-144764' />
|
|
268
|
-
<tag k='highway' v='footway' />
|
|
269
|
-
<tag k='level' v='4' />
|
|
270
|
-
</way>
|
|
271
|
-
<way id='-119018' action='modify' visible='true'>
|
|
272
|
-
<nd ref='-144757' />
|
|
273
|
-
<nd ref='-144777' />
|
|
274
|
-
<tag k='highway' v='footway' />
|
|
275
|
-
<tag k='level' v='1' />
|
|
276
|
-
<tag k='note' v='Alternative possible: level=3 repeat_on=5;1' />
|
|
277
|
-
<tag k='repeat_on' v='3;5' />
|
|
278
|
-
</way>
|
|
279
|
-
<way id='-119019' action='modify' visible='true'>
|
|
280
|
-
<nd ref='-144789' />
|
|
281
|
-
<nd ref='-144767' />
|
|
282
|
-
<nd ref='-144790' />
|
|
283
|
-
<nd ref='-144762' />
|
|
284
|
-
<nd ref='-144763' />
|
|
285
|
-
<nd ref='-144751' />
|
|
286
|
-
<nd ref='-144789' />
|
|
287
|
-
<tag k='elevator' v='yes' />
|
|
288
|
-
<tag k='indoor' v='room' />
|
|
289
|
-
<tag k='level' v='1;2;3;4;5' />
|
|
290
|
-
<tag k='name' v='Modèle Transilien' />
|
|
291
|
-
<tag k='note' v='Alternative possible : level=1-5' />
|
|
292
|
-
</way>
|
|
293
|
-
<way id='-119020' action='modify' visible='true'>
|
|
294
|
-
<nd ref='-144779' />
|
|
295
|
-
<nd ref='-144786' />
|
|
296
|
-
<tag k='highway' v='footway' />
|
|
297
|
-
</way>
|
|
298
|
-
<way id='-119021' action='modify' visible='true'>
|
|
299
|
-
<nd ref='-144758' />
|
|
300
|
-
<nd ref='-144797' />
|
|
301
|
-
<tag k='highway' v='footway' />
|
|
302
|
-
<tag k='level' v='3' />
|
|
303
|
-
</way>
|
|
304
|
-
<way id='-119022' action='modify' visible='true'>
|
|
305
|
-
<nd ref='-144781' />
|
|
306
|
-
<nd ref='-144767' />
|
|
307
|
-
<tag k='highway' v='footway' />
|
|
308
|
-
<tag k='level' v='1' />
|
|
309
|
-
</way>
|
|
310
|
-
<way id='-119023' action='modify' visible='true'>
|
|
311
|
-
<nd ref='-144787' />
|
|
312
|
-
<nd ref='-144750' />
|
|
313
|
-
<tag k='highway' v='footway' />
|
|
314
|
-
<tag k='level' v='5' />
|
|
315
|
-
</way>
|
|
316
|
-
<way id='-119024' action='modify' visible='true'>
|
|
317
|
-
<nd ref='-144773' />
|
|
318
|
-
<nd ref='-144765' />
|
|
319
|
-
<tag k='highway' v='footway' />
|
|
320
|
-
<tag k='level' v='4' />
|
|
321
|
-
</way>
|
|
322
|
-
<way id='-119025' action='modify' visible='true'>
|
|
323
|
-
<nd ref='-144794' />
|
|
324
|
-
<nd ref='-144797' />
|
|
325
|
-
<nd ref='-144778' />
|
|
326
|
-
<nd ref='-144796' />
|
|
327
|
-
<nd ref='-144765' />
|
|
328
|
-
<nd ref='-144788' />
|
|
329
|
-
<nd ref='-144794' />
|
|
330
|
-
<tag k='highway' v='elevator' />
|
|
331
|
-
<tag k='indoor' v='room' />
|
|
332
|
-
<tag k='level' v='1;2;3;4;5' />
|
|
333
|
-
<tag k='name' v='Modèle conforme au Wiki OSM' />
|
|
334
|
-
<tag k='note' v='Alternative possible : level=1-5' />
|
|
335
|
-
</way>
|
|
336
|
-
<way id='-119026' action='modify' visible='true'>
|
|
337
|
-
<nd ref='-144768' />
|
|
338
|
-
<nd ref='-144797' />
|
|
339
|
-
<tag k='highway' v='footway' />
|
|
340
|
-
<tag k='level' v='5' />
|
|
341
|
-
</way>
|
|
342
|
-
<way id='-119027' action='modify' visible='true'>
|
|
343
|
-
<nd ref='-144783' />
|
|
344
|
-
<nd ref='-144750' />
|
|
345
|
-
<tag k='highway' v='footway' />
|
|
346
|
-
<tag k='level' v='3' />
|
|
347
|
-
</way>
|
|
348
|
-
<way id='-119028' action='modify' visible='true'>
|
|
349
|
-
<nd ref='-144780' />
|
|
350
|
-
<nd ref='-144757' />
|
|
351
|
-
<tag k='highway' v='footway' />
|
|
352
|
-
<tag k='level' v='3' />
|
|
353
|
-
</way>
|
|
354
|
-
</osm>
|
package/assets/exit-graph.osm
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
<?xml version='1.0' encoding='UTF-8'?>
|
|
2
|
-
<osm version='0.6' generator='JOSM'>
|
|
3
|
-
<node id='-1' action='modify' visible='true' lat='0.0' lon='1.0'>
|
|
4
|
-
<tag k='name' v='p1' />
|
|
5
|
-
</node>
|
|
6
|
-
<node id='-2' action='modify' visible='true' lat='0.0' lon='2.0'>
|
|
7
|
-
<tag k='name' v='p2' />
|
|
8
|
-
</node>
|
|
9
|
-
<node id='-3' action='modify' visible='true' lat='0.0' lon='3.0'>
|
|
10
|
-
<tag k='name' v='p3' />
|
|
11
|
-
</node>
|
|
12
|
-
<way id='-4' action='modify' visible='true'>
|
|
13
|
-
<nd ref='-1' />
|
|
14
|
-
<nd ref='-2' />
|
|
15
|
-
<tag k='name' v='e1' />
|
|
16
|
-
<tag k='highway' v='footway' />
|
|
17
|
-
<tag k='level' v='0' />
|
|
18
|
-
</way>
|
|
19
|
-
<way id='-5' action='modify' visible='true'>
|
|
20
|
-
<nd ref='-2' />
|
|
21
|
-
<nd ref='-3' />
|
|
22
|
-
<tag k='name' v='e2' />
|
|
23
|
-
<tag k='highway' v='footway' />
|
|
24
|
-
</way>
|
|
25
|
-
</osm>
|