-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathDeckPlans-Example_train.xml
More file actions
5104 lines (5061 loc) · 264 KB
/
DeckPlans-Example_train.xml
File metadata and controls
5104 lines (5061 loc) · 264 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<PublicationDelivery xmlns="http://www.netex.org.uk/netex" xmlns:siri="http://www.siri.org.uk/siri" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2.2" xsi:schemaLocation="http://www.netex.org.uk/netex ../../../xsd/NeTEx_publication.xsd">
<!-- Example DECK PLAN for a Railway train with NAVIGATION PATHS to access
This example provides a dense example of describing a TRAIN with its composition of carriages (TRAIN ELEMENTs) and detailed layout (DECK PLANs, DECks and PASSENGER SPACEs) of the carriages. The train is a sleeper train with couchettes that have different Day and Night configurations ,a buffet and nad some car transporter carriages.
It also describes
(1) DECK PLANs to specify vehicle seating and layout for a specific TRAIN (TYPE) and its TRAIN ELEMENT (TYPES0s
(1.1) Association of the DECK PLAN wih a specific SERVICE JOURNEY made up of two JOURNEY PARTs using a two different DECK PLAN configuration (night vs day) for each journey part
(1.2) Association of certain FACILITIES with just part of the journey (buffet)
(2) Use of DECK PLANs for trip navigation
(2.1) Alignment of the train and its individual carriages with the platforms (QUAYs) and BOARDING POSITIONs at one specific station for a SERVICE JOURNEY that is using the TRAIN and its DECK PLANs.
(2.2) TRAIN ASSIGNMENts to block boarding and alighting from the rear passenger carriages from the specific QUAY because of a short platform.
(2.3) Navigation (NAVIGATION PATH) using the stairs through the one specific station to reach the train at a specific BOARDING POSITION on a specific platform (QUAY) in order in order to access a specific carriage aligned with that BOARDING POSITION
(2.4 Navigation (NAVIGATION PATH) without using steps through the one specific station to reach the train at a specific BOARDING POSITION on a specific platform (QUAY) in order in order to access a specifc carriage aligned with that BOARDING POSITION.
(2.5) Navigation on board the train from a specific carriage door to reach a specific seat in a specific carriage (DECK NAVIGATION PATH to PASSENGER SPOT).
(3) Use of detailed EQUIPMENT and FACILITY attributes, including thoese describing accessibility:
(3.1) The STOP PLACE ELEMENTs (ACCESS SPACEs, QUAYs, ENTRANCEs, SITE PATH LINKs, etc) are populated with EQUIPMENT and FACILITY SET definitions including appropriate attributes to describe the very detailed accessibility characteristics of the station . Note however that not all the physical dimensions are populated.
(3.2) The DECK PLAN elements (PASSENGER SPACEs, DECK PATH LINKs, etc) are populated with appropriate EQUIPMENT and FACILITY SET definitions to described teh onboard environment, including accesibility characteristics.
(3.3) The STOP PLACE ELEMENTs (ACCESS SPACEs, QUAYs, ENTRANCEs, SITE PATH LINKs, etc) are populated with CHECK CONSTRAINTs and CHECH CONSTRAINT DELAYs to indicate the extra time needed to allow for certain processes, e.g. use of lift.
-->
<!-- Train and Train Makeup
We describe DECK PLANS for three different wagon types : a sleeper car and car transport wagon and a buffet car
We describe a TRAIN Comprising a buffet car, three sleeper wagons and two car transport wagons, pulled by an engine.
The sleeper wagons and buffet are coupled as an unsplittable rake with walk through access between carriages.
The engines and car transport can be separated and not accessibel from teh other carriages by the public.
When darwn up in the specifc station, because of the very short platform, only the front two passneger carriages are accessible from the platfrom..
DECK PLANs [Vehicles]=:=[Vehicles]=:=[[Sleeper]=====[Buffet ]======[Sleeper]=====[Sleeper]]=:=[Engine]
TRAIN
====================|=============================================================================================
TRAIN COMPONENT | #7 |=N=| #6 |=N=| #5 |=Thru=| #4 |=Thru=| #3 |=Thru=| #2 |=N=| #1 |
TRAIN ELEMENT TYPE | V620 | | V620 | | S645 | | B766 | | S645 | | S645 | | X444 |
Orientation |backwards| |backward| |forward| |forward| |forward| |forward| |forwards|
Carriage Label | V02 | | V02 | | F04 | | F03 | | F02 | | F01 | | n/a |
====================|=============================================================================================
ROLLING STOCK ITEM | N8756 | | N8156 | | N7456 | | B4044 | | N7482 | | N7955 | | E888 |
| | trailing| |trailing| |trailing| |trailing| |trailing| |trailing| |trailing|
====================|=============================================================================================
====================|=============================================================================================
| | x | | x | | N N | | N N | | N Y | | Y Y | | n/a |
Doors accessible at | none | | none | | none | | none | | front | | both | | n/a |
station765 Erewhon | none | | none | |(short)| |(short)| | left | | doors | | n/a |
====================|=============================================================================================
Alignment of QUAY2 | x | | x | | x x | | x x | | x C | | B A | | x |
Boarding for | x | | x | | x x | | x x | | x 01-36 13-36 0-12 | |
====================|=============================================================================================
-->
<!-- === Sleeper Wagon
Seats 01-12 Enter by forward door
Seats 13-36 Enter by forward door
Day Time Configuration
===========/:::::::\==========
|@@@@@@@@@@ /__\ @@@@@@@@@@@|
|@@@@@ Front @@@@@@|
|@@@@@ Entrance @@@@@@|
/ Entrance Entrance\ Entrance for 01-12
/ Forward Forward \
| Left Right @|
|@@@@@@@@@@@@@@@@@@ @|
| WC @ @|
|@ [toilet] \ @|
|@ Entrance / @| Night time Configuration
|@ [Door @ Corridor@|
|@@@@@@@@@@@@@@@@@@ @| |@@@@@@@@@@@@@@@@@@:::::::::@|
|@@ A B C D @@@@ @| |@@ A B C @@@@ @|
|@@@@@@@@@@@@@@@@@@ @| |@@@@@@@@@@@@@@@@@@:::::::::@|
|@ 01 [seat] @ @| |@ 01 [bed] @ @| r01 backwards
|> Compartment 1 \ <| |> Compartment 1 \ <|
|> 1st Class @ <| |> 1st Class @ <|
|@ 02 [seat] @ r02 @| |@ 02 [bed] @ @| r02 forwards
|@@@@@@@@@@@@@@@@@@ @| |@@@@@@@@@@@@@@@@@@ @|
|@ 03 [seat] @ r03 @| |@ 03 [bed] @ @| r03 backwards
|> Compartment 2 \ <| |> Compartment 2 \ @|
|> 1st Class @ <| |> 1st Class @ <|
|@ 04 [seat] @ r04 @| |@ 04 [bed] @ @| r04 forwards
|@@@@@@@@@@@@@@@@@@ @| |@@@@@@@@@@@@@@@@@@ @|
|@ 05 06 07 (08) @ r05 @| |@ 05 06 07 xx @ @| r05 backwards
|@ [seats] @ @| |@[bed] bed][bed] @ @|
|> Compartment 3 \ <| |> Compartment 3 \ <|
|> 2nd Class @ <| |> 2nd Class @ <|
|@ 09 10 11 (12) @ r06 @| |@ 09 10 11 xx @ @| r06 forwards
|@ [seats] @ @| |@[bed] bed][bed] @ @|
|@@@@@@@@@@@@@@@@@@ @| |@@@@@@@@@@@@@@@@@@ @|
|@ 13 14 15 (16) @ r07 @| |@ 13 14 15 xx @ @| r07 backwards
|@ [seats] @ @| |@[bed] bed][bed] @ @|
|> Compartment 4 \ <| |> Compartment 4 \ <|
|> 2nd Class @ <| |> 2nd Class @ <|
|@ 17 18 19 (20) @ r08 @| |@ 17 18 19 xx @ @| r08 forwards
|@ [seats] @ @| |@[bed] bed][bed] @ @|
|@@@@@@@@@@@@@@@@@@ @| |@@@@@@@@@@@@@@@@@@ @|
|@ 21 22 23 (24) @ r09 @| |@ 21 22 23 xx @ @| r09 backwards
|@ [seats] @ @| |@[bed] bed][bed] @ @|
|> Compartment 5 \ <| |> Compartment 5 \ <|
|> 2nd Class @ <| |> 2nd Class @ <|
|@ 25 26 27 (28) @ r10 @| |@ 25 26 27 xx @ @| r10 forwards
|@ [seats] @ @| |@[bed] bed][bed] @ @|
|@@@@@@@@@@@@@@@@@@ @| |@@@@@@@@@@@@@@@@@@ @|
|@ 29 30 31 (32) @ r11 @| |@ 29 30 31 xx @ @| r11 backwards
|@ [seats] @ @| |@[bed] bed][bed] @ @|
|> Compartment 6 \ <| |> Compartment 6 \ <|
|> 2nd Class @ <| |> 2nd Class @ <|
|@ 33 34 35 (36) @ r12 @| |@ 33 34 35 xx @ @| r12 forwards
|@ [seats] @ @| |@[bed] bed][bed] @ @|
|@@@@@@@@@@@@@@@@@@ @| |@@@@@@@@@@@@@@@@@@:::::::::@|
|@ \ @|
|@ Luggage van / <|
|@ [cycles] @ <|
|@ C01 C02 C03 @ @|
@@@@@@@@@@@@@@@@@@@ @|
|@ [Bin] @|
/ Entrance ENtrance\
/ Rear Rear \ Entrance for 13-36
|@ Left Right @|
|@@@@@@@@@@ Back @@@@@@@@@@@|
============\::::::/===========
-->
<!-- === Buffet car wagon ###
============/::::::\==========
|@@@@@@@@@@@ /__ \ @@@@@@@@|
|@@@@@@ Front @@@@@|
|@@@@@@ Entrance @@@@@|
/ Entrance Entrance\
/ Forward Forward \ Entrance for 01-24
|@ Left Right @|
|@@@@@@@@@@@@ @|
|@ WC @ @|
|@ @ @|
|@ Entrance / @|
|@ [Door @ @|
|@@@@@@@@@@@@ @|
|@ Luggage @|
|@ Seating @|
|@@@@@@@@@@@ @@@@@@@@@@@|
|@ A B C D @|
|@>::::::::+ +:::::::::<|
|@ 01 + 02 + + 03 + 04 @| r01 forwards
|@++++++++++ ++++++++++@|
|@>::::::::+ +:::::::::<|
|@ 05 + 06 + + 07 + 08 @| r02 forwards
|@++++++++++ ++++++++++@|
|@>::::::::+ +:::::::::<|
|@ 09 + 10 + + 11 + 12 @| r03 forwards
|@>::::::::+ +:::::::::<|
|@ 13 + 14 + + 15 + 16 @| r04 backwards
|@>[table]++ ++[table]<@|
|@ 17 + 18 + + 19 + 20 @| r05 forwards
|@++++++++++ ++++++++++@|
|@>::::::::+ +:::::::::<|
|@ 21 + 22 + + 23 + 24 @| r06 forwards
|@++++++++++ ++++++++++@| ==========
|@>::::::::+ +:::::::::<|
|@ 25 + 26 + + 27 + 28 @| r07 forwards
|@++++++++++ ++++++++++@|
|@>::::::::+ +:::::::::<|
|@ 29 + 30 + + 31 + 32 @| r08 forwards
|@++++++++++ ++++++++++@|
|@>::::::::+ +:::::::::<|
|@ 33 + 34 + + 35 + 36 @| r09 forwards
|@++++++++++ ++++++++++@|
|@ 37 + 38 + + 39 + 40 @| r10 backwards
|>[table]++ ++[table]+<|
|@ 41 + 42 + + 43 + 44 @| r11 forwards
|@@+++++++++/:::::\@@@@@@@@@@@|
|@ 45 46 + @| r12 backwards
|@ [foldup] @|
|@ [Wheelchair] @|
|@@@@@@@@@@@@@@@:::::::::::::@|
|@ ::@ @|
|@ ::@ ::::<|
|@ Galley \ ++++@|
|@ \ SNACK ++++@|
|@ ::@ TABLES::::<|
|@ ::@ ::::<|
|@@:::::::::@@@@@ ++++@|
|@ ::@ ++++@|
|@ ::@ ::::<|
|@ ::@ ::::<|
|@ ::@ ++++@|
|@ BUFFET ::@ ++++@|
|@ ::@ ::::<|
|@ ::@ ::::<|
|@ ::@ ++++@|
|@ ::@ ++++@|
|@ ::@ ::::<|
|@@@@@@@@@@@@@@@@ ++++@|
|@ [Bin] @@@@@@|
/ Entrance ENtrance\
/ Rear Rear \ Entrance for 25-46
|@ Left Right @|
|@@@@@@@@@@ Back @@@@@@@@@@|
============\:::::::/==========
-->
<!-- === Motor rail Wagon ====
Two decks with drive through entrance at front or rear decks
TO DO add steps between decks
Lower deck
====/::::::::::::::::::::\====
@@@/:::::::::::::::::::::\@@@|
|@ Front Vehicle @|
|@ Entrance @@|
\ Passenger Passenger \
\ Entrance Entrance \
@| left right @| Alt config
|@++++++++++++++++++++++++++@| |@+++++++++++++++++++++++++++|
|@ 01 @| |@ 01-02 @|
|@ @| |@ @|
|@ @| |@ @|
|@++++++++++++++++++++++++++@| |@ @|
|@ @| |@ @|
|@ 02 @| |@ @|
|@ @| |@ @|
|@ @| |@ @|
|@++++++++++++++++++++++++++@| |@+++++++++++++++++++++++++++|
|@ @| |@ @|
|@ 03 @| |@ 03-04 @|
|@ @| |@ @|
|@ @| |@ @|
|@++++++++++++++++++++++++++@| |@ @|
|@ @| |@ @|
|@ 04 @| |@ @|
|@ @| |@ @|
|@ @| |@ @|
|@++++++++++++++++++++++++++@| |@+++++++++++++++++++++++++++|
|@ Lower deck back @|
|@ Entrance @|
|@@@\::::::::::::::::::::/@@@|
=====\:::::::::::::::::::/====
Upper deck with drive through entrance at front and rear
Small cars only
=====/===================\====
|@@@/::::::::::::::::::::\@@@|
|@ Upper deck Front @|
|@ Entrance @|
|@ @|
|@ @|
|@ 01 @|
|@ @|
|@ @|
|@++++++++++++++++++++++++++@|
|@ @|
|@ 02 @|
|@ @|
|@ @|
|@++++++++++++++++++++++++++@|
|@ @|
|@ 03 @|
|@ @|
|@ @|
|@++++++++++++++++++++++++++@|
|@ @|
|@ 04 @|
|@ @|
|@ @|
|@ Upper deck Back @|
|@ Entrance @|
|@@@/::::::::::::::::::::\@@@|
=====\:::::::::::::::::::/====
-->
<!-- === Stop boarding position and Navigation paths for accessing sleeper wagon ===
The Train hasa default
We assign the deck plans to a specific SERVICE JOURNEY , with different configuratiosn for each journey part
A PASSENGER STOP ASSIGNMENT with individual PASSENGER BOARDING POSITION ASSIGNMENTs specify which carriages are aligned with which BOARDING POSITION
NAVIGATION PATH + DECK NAVIGATION PATH to reach a seat
(Site) NAVIGATION PATH through station from main entrance to boarding position on platform
+ DECK NAVIGATION PATH from coach rear door to compartment /seat
Main ENTRANCE Street
===========/:::::::X:::::\===========v==================================================================| | + + + + + + + + + + + + +
|= v [Exit] |: Lift to =| | +++++++++++++++++++++++++++++++++
|= ERewhon Hbf v Wheelchair NAVIGATION PATH / Q1 and Q2 =| | + + + + + + + + + + + + +
|= X >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> x \ x >>>>>>. =| | +++++++++++++++++++++++++++++++++
|= STOP PLACE v |: v =| | + + + + + + + + + + + + +
|= Ticekt machines v ========================================-\::/========| =============================. . .
|= v NAVIGATION PATH : ||||||||||| : v [Exit] : QUAY 1 (SSP_0015W) X
|= .>>>>>>>>>>>>>>>>>>>>>>>>x>>>>>>>>>>>>>>>>>>>>>x>>>X<<<<<<<<<<<<<<<<<<<<<<<. >>>>>> X >>>>>>>>>>>>>>>>>>>>>>>>>>>>>.
|= Ticket Hall Street LEVEL [to Platform1] : ||||||||||| : v :
|==================================================================::::v:::::::::========================|===========================================|
|= (Lower LEVEL) QUAY 2 (SSP_0015E) | v DECK NAVIGATION PATH =|=|
|=...........................|..................................|......v................................=|=|
|= Boarding Position A | Boarding Position B | v Boarding Position C =|=|
|======================================================================X===================================| SHORT PLATFORM! SHORT PLATFORM!
to 01-12 :::: to 13-36 :::: to 01-36 no Access no Access
@@@@@@@@@@@ |@@@@@/::\@@@@@@@@@@@@@@@@@@@@@@@. . . @@@@@@@@@@@/:x\@@@@| |@@@@/::\@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@. . @@@@@@___@@| |@@. . .
++++++@| #1 @ |@ right TRAIN ELEMENT #2 F01 . . . V @|==|@ TRAIN ELEMENT#3 -F02 . . . right @|==|@ . .
+ + @| @==|| DECK PLAN Sleeper Corridor x<<<..<<<<<<<<<<<<<X \==/ x DECK PLAN Sleeper Corridor . X \==/ . .
+ + @| ENGINE+ @==|| front X =/:====/:===/:====/:===. . .===-/:== back :: front =/:====/:===/:====/:====-/:== . . . . back :: . .
+ + @| @==|| | WC| C1 | C2 | C3 |. . . | C6 | /==\ | WC| C1 | C2 | C3 | C4 |. . . . /==\ . .
++++++@| @ |@ forward | WC|01-02|03-04|05-12|. . . | 28-36| rear @|==|@ Forward | WC|01-02|03-04|05-12|13-20|. . . left @|==|@ . .
@@@@@@@@@@@ |@@@@@____@@@@@@@@@@@@@@@@@@@@@@@@. . . @@@@@@@@@@____@@@@| |@@@@____@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@. . @@@@@@___@@| |@@. . .
left
TRAIN TRAIN COMPONENT TRAIN COMPONENT TRAIN COMPONENT
The Train arrives going forwards from the right, ie to the left of a passenger standing on Quay 2
The train reverse in the station and departs, oriented backwards to the right
TRAIN direction #1:forwards =:= #2:[F01]:forwards forwards
<<<< Arrival Direction forwards forwards
>>>> Departure DIrection backwards backwards
-->
<!-- Service Journey and parts
(intermediate stops ommitted)
|=================================================================================|
| SCHEDULED STOP POINT | Dep | SERVICE JOURNEY | JOURNEY PART | Train Orientation Note
|=================================================================================|
| stop_001 Pas de Ville |d18:30 | x | Part 1 (Day) | forwards |
| ....... | | | | Part 1 (Day) | forwards |
| | | \|/ | Part 1 (Day) | forwards |
| stop_015 Erewhon Hbf |a20:30 | X | Part 1 (Day) | forwards | Connect to | stop_015 Erewhon Hbf |d20:30 |
| ....... |d20:45 | | | Part 2 (Night) | backwards | Reverses | ....... |d20:45 |
| | | \|/ | Part 2 (Night) | backwards | | stop_101 Novado |a06:50 |
| stop_017 Cockagyne |d11:45 | X | Part 2 (Night) | backwards |
| ....... |d11:50 | | | Part 2 (Night) | backwards |
| | | \|/ | Part 2 (Night) | backwards |
| stop_021 Keinstadt |a06:50 | X | Part 2 (Night) | backwards |
|=================================================================================|
(C) CEN 2024
-->
<PublicationTimestamp>2020-12-17T09:30:47.0Z</PublicationTimestamp>
<ParticipantRef>SYS001</ParticipantRef>
<!-- ======WHAT WAS REQUESTED ========== -->
<PublicationRequest version="1.0">
<RequestTimestamp>2020-12-17T09:30:46.0Z</RequestTimestamp>
<ParticipantRef>SYS002</ParticipantRef>
</PublicationRequest>
<PublicationRefreshInterval>P1M</PublicationRefreshInterval>
<Description>Example of DeckPlans</Description>
<!-- =============== RESULTS =========== -->
<dataObjects>
<CompositeFrame version="1.0" id="rc:CF-deck_plan_example_rail" responsibilitySetRef="rc:RS-service_data">
<ValidBetween>
<FromDate>2023-01-01T00:00:00</FromDate>
<ToDate>2023-12-31T12:00:00</ToDate>
</ValidBetween>
<Name>Deck Plan Example</Name>
<Description>This is an example showing how one might encode a Deck plan for a train in NeTEx. It Also shows how the Deck plan can be related to the train in a specific station.</Description>
<!--==== CODESPACEs ==== -->
<codespaces>
<Codespace id="CS-rc_data">
<Xmlns>rc</Xmlns>
<XmlnsUrl>http://www.frail.eu/</XmlnsUrl>
<Description>Frail rail data</Description>
</Codespace>
</codespaces>
<!--==== FRAME DEFAULTS ==== -->
<FrameDefaults>
<!--- The default means that actually we could leave off all id s that belong to the mb: namespace. -->
<DefaultCodespaceRef ref="CS-rc_data"/>
</FrameDefaults>
<frames>
<!--==== VEHICLE TYPES and DECK PLANS ==== -->
<ResourceFrame version="1.0" id="rc:RF-deck_plan_example_rail" responsibilitySetRef="rc:RS-vehicle_data">
<Name>Rail examples of sleeper train with motor rail transport</Name>
<Description>Describes a train with sleeper wagons, a buffet car and car transport carriages.</Description>
<typesOfValue>
<ValueSet version="any" id="rc:VS-Wheelchair_types" classOfValues="TypeOfWheelchair">
<values>
<TypeOfWheelchair version="any" id="rc:TWC-bfc_small_wheelchair">
<Name>Large Wheelchair</Name>
</TypeOfWheelchair>
<TypeOfWheelchair version="any" id="rc:TWC-bfc_large_wheelchair">
<Name>Large Wheelchair</Name>
</TypeOfWheelchair>
</values>
</ValueSet>
</typesOfValue>
<organisations>
<!-- ==== ORGANISATIONS ==== -->
<Operator version="any" id="rc:OP-mrc_123">
<PublicCode>MRC</PublicCode>
<Name>Motor Rail CO</Name>
<ShortName>Moto</ShortName>
<TradingName>Motovacation SA</TradingName>
<OrganisationType>operator</OrganisationType>
<Address>
<Street>Prince Rupert Street</Street>
<Town>Strelsau</Town>
<PostCode>z354</PostCode>
<PostalRegion>Ruritania</PostalRegion>
</Address>
<PrimaryMode>bus</PrimaryMode>
</Operator>
</organisations>
<!-- ==== EQUIPMENT ==== -->
<equipments>
<!-- === Door Related === -->
<EntranceEquipment version="any" id="rc:EE-external_door">
<Name>Passenger Train door</Name>
<SafeForGuideDog>true</SafeForGuideDog>
<DoorType>hingedSingle</DoorType>
<AutomaticDoor>true</AutomaticDoor>
<WheelchairPassable>true</WheelchairPassable>
<WheelchairUnaided>false</WheelchairUnaided>
</EntranceEquipment>
<EntranceEquipment version="any" id="rc:EE-slw_compartment_door">
<Name>Sliding door to compartment</Name>
<SafeForGuideDog>true</SafeForGuideDog>
<DoorType>slidingSingle</DoorType>
<AutomaticDoor>false</AutomaticDoor>
<WheelchairPassable>true</WheelchairPassable>
<WheelchairUnaided>true</WheelchairUnaided>
</EntranceEquipment>
<EntranceEquipment version="any" id="rc:EE-toilet_door">
<Name>Hinged door to compartment</Name>
<SafeForGuideDog>true</SafeForGuideDog>
<DoorType>hingedSingle</DoorType>
<AutomaticDoor>false</AutomaticDoor>
<WheelchairPassable>true</WheelchairPassable>
<WheelchairUnaided>true</WheelchairUnaided>
</EntranceEquipment>
<EntranceEquipment version="any" id="rc:EE-ctw_external_door">
<Name>Passenger Train dor on car transporter</Name>
<SafeForGuideDog>false</SafeForGuideDog>
<DoorType>hingedSingle</DoorType>
<AutomaticDoor>false</AutomaticDoor>
<WheelchairPassable>false</WheelchairPassable>
</EntranceEquipment>
<EntranceSensor version="any" id="rc:ES-external_door_sensor">
<Name>External Door sensor</Name>
<CommunicationMethod>cable</CommunicationMethod>
</EntranceSensor>
<EntranceEquipment version="any" id="rc:EE-inter_wagon_passenger_door">
<SafeForGuideDog>true</SafeForGuideDog>
<DoorType>slidingPair</DoorType>
<AutomaticDoor>true</AutomaticDoor>
<WheelchairPassable>true</WheelchairPassable>
<WheelchairUnaided>true</WheelchairUnaided>
</EntranceEquipment>
<EntranceSensor version="any" id="rc:ES-internal_door_sensor">
<Name>External Door sensor</Name>
<CommunicationMethod>cable</CommunicationMethod>
</EntranceSensor>
<!-- seating_area Related -->
<SeatEquipment version="any" id="rc:SEq-couchette_single_bed">
<Name>Bottom seat in couchette</Name>
<HeightFromFloor>0.48</HeightFromFloor>
<SeatBackHeight>0.50</SeatBackHeight>
<SeatDepth>0.50</SeatDepth>
<IsFoldup>false</IsFoldup>
</SeatEquipment>
<SeatEquipment version="any" id="rc:SEq-couchette_seat">
<Name>Bottom seat in couchette</Name>
<HeightFromFloor>0.48</HeightFromFloor>
<SeatBackHeight>0.50</SeatBackHeight>
<SeatDepth>0.50</SeatDepth>
<IsFoldup>false</IsFoldup>
</SeatEquipment>
<BedEquipment version="any" id="rc:BE-couchette_bottom_bunk">
<Name>Bottom bed in couchette</Name>
<HeightFromFloor>0.48</HeightFromFloor>
<HasPowerSupply>true</HasPowerSupply>
<HasUsbPowerSocket>true</HasUsbPowerSocket>
<BedType>bottomBunk</BedType>
<IsStowable>false</IsStowable>
<Headroom>1.0</Headroom>
<BedLength>0.50</BedLength>
</BedEquipment>
<BedEquipment version="any" id="rc:BE-couchette_middle_bunk">
<Name>Middle bed in couchette</Name>
<HeightFromFloor>2.0</HeightFromFloor>
<HasPowerSupply>true</HasPowerSupply>
<BedType>middleBunk</BedType>
<IsStowable>true</IsStowable>
<Headroom>1.0</Headroom>
<BedLength>0.50</BedLength>
</BedEquipment>
<BedEquipment version="any" id="rc:BE-couchette_top_bunk">
<Name>Top bed in couchette</Name>
<HeightFromFloor>3.0</HeightFromFloor>
<HasUsbPowerSocket>true</HasUsbPowerSocket>
<BedType>topBunk</BedType>
<IsStowable>true</IsStowable>
<Headroom>1.2</Headroom>
<BedLength>0.50</BedLength>
</BedEquipment>
<SeatEquipment version="any" id="rc:SEq-standard_chair">
<Name>Standard carriage seate</Name>
<HeightFromFloor>0.48</HeightFromFloor>
<SeatBackHeight>0.50</SeatBackHeight>
<SeatDepth>0.50</SeatDepth>
<IsFoldup>false</IsFoldup>
</SeatEquipment>
<SeatEquipment version="any" id="rc:SEq-fold_down_chair">
<Name>Bold down chaire</Name>
<HeightFromFloor>0.48</HeightFromFloor>
<SeatBackHeight>0.50</SeatBackHeight>
<SeatDepth>0.50</SeatDepth>
<IsFoldup>true</IsFoldup>
</SeatEquipment>
<WheelchairVehicleEquipment version="any" id="rc:WVE-bfc_wheelchair_location">
<HasWheelchairSpaces>true</HasWheelchairSpaces>
<NumberOfWheelchairAreas>1</NumberOfWheelchairAreas>
<WidthOfAccessArea>2.00</WidthOfAccessArea>
<HeightOfAccessArea>1.80</HeightOfAccessArea>
<WheelchairTurningCircle>2.00</WheelchairTurningCircle>
<CompanionSeat>true</CompanionSeat>
<suitableFor>
<TypeOfWheelchairRef version="any" ref="rc:TWC-bfc_large_wheelchair"/>
<TypeOfWheelchairRef version="any" ref="rc:TWC-bfc_small_wheelchair"/>
</suitableFor>
</WheelchairVehicleEquipment>
<!-- Luggage Related -->
<LuggageSpotEquipment version="any" id="rc:LSE-couchette_luggage_area">
<Name>luggage area</Name>
<Width>4.00</Width>
<Length>1.25</Length>
<Height>0.40</Height>
<HeightFromFloor>1.90</HeightFromFloor>
<LuggageSpotType>luggageBay</LuggageSpotType>
<HeadroomForLuggage>0.40</HeadroomForLuggage>
<IsLockable>false</IsLockable>
</LuggageSpotEquipment>
<LuggageSpotEquipment version="any" id="rc:LSE-cycle_rack">
<Name>luggage area</Name>
<Width>2.00</Width>
<Length>0.20</Length>
<Height>1.50</Height>
<LuggageSpotType>cycleRack</LuggageSpotType>
<IsLockable>false</IsLockable>
</LuggageSpotEquipment>
<!-- Other -->
<SanitaryEquipment version="any" id="rc:SEq-train_toilet">
<SanitaryFacilityList>toilet washbasin</SanitaryFacilityList>
<NumberOfToilets>1</NumberOfToilets>
<FreeToUse>true</FreeToUse>
</SanitaryEquipment>
</equipments>
<!-- == FACILITY SETS ===-->
<serviceFacilitySets>
<!-- Sleeper wagon -->
<ServiceFacilitySet version="any" id="rc:SFS-slw_general_facilities">
<Description>General facilities</Description>
<FareClasses> firstClass standardClass</FareClasses>
<MobilityFacilityList>suitableForWheelchairs</MobilityFacilityList>
<NuisanceFacilityList>mobilePhoneFreeZone mobilePhoneUseZone noSmoking</NuisanceFacilityList>
<PassengerCommsFacilityList>publicWifi powerSupplySockets</PassengerCommsFacilityList>
<PassengerInformationFacilityList>nextStopIndicator passengerInformationDisplay realTimeConnections stopAnnouncements</PassengerInformationFacilityList>
<SanitaryFacilityList>toilet wheelchairAccessToilet</SanitaryFacilityList>
<AccommodationFacilityList> couchette seating sleeper</AccommodationFacilityList>
<CouchetteFacilityList> C2 C6 T2</CouchetteFacilityList>
<LuggageCarriageFacilityList> baggageStorage baggageVan cyclesAllowedWithReservation luggageRacks</LuggageCarriageFacilityList>
</ServiceFacilitySet>
<ServiceFacilitySet version="any" id="rc:SFS-slw_1st_class_facilities">
<Description>First class facilities</Description>
<CateringFacilityList>breakfastInCar</CateringFacilityList>
<ClimateControlList>airConditioning heating</ClimateControlList>
<FareClasses> firstClass</FareClasses>
<LightingControlFacilityList>blinds tintedWindows </LightingControlFacilityList>
<PassengerCommsFacilityList>powerSupplySockets publicWifi freeWifi</PassengerCommsFacilityList>
<AccommodationAccessList>reservation</AccommodationAccessList>
<AccommodationFacilityList> sleeper </AccommodationFacilityList>
<accommodations>
<Accommodation version="any" id="rc:AC-slw_1st_class_facilities@singleSleeper">
<FareClass>firstClass</FareClass>
<AccommodationFacility>sleeper</AccommodationFacility>
<MaximumNumberOfBerths>1</MaximumNumberOfBerths>
<BerthFacility>lower</BerthFacility>
<NuisanceFacilityList>noSmoking mobilePhoneFreeZone</NuisanceFacilityList>
<PassengerCommsFacilityList>freeWifi</PassengerCommsFacilityList>
</Accommodation>
<Accommodation version="any" id="rc:AC-slw_1st_class_facilities@doubleSleeper">
<FareClass>firstClass</FareClass>
<AccommodationFacility>doubleSleeper</AccommodationFacility>
<CouchetteFacility>C2</CouchetteFacility>
<MaximumNumberOfBerths>2</MaximumNumberOfBerths>
<PassengerCommsFacilityList>freeWifi</PassengerCommsFacilityList>
</Accommodation>
</accommodations>
<onboardStays>
<OnboardStay version="any" id="rc:OS-slw_1st_class_facilities@earlyBoardingPossibleBeforeDeparture">
<FareClass>firstClass</FareClass>
<BoardingPermission>earlyBoardingPossibleBeforeDeparture</BoardingPermission>
<Period>PT1H</Period>
</OnboardStay>
<OnboardStay version="any" id="rc:OS-slw_1st_class_facilities@overnightStayOnboardAllowed">
<FareClass>firstClass</FareClass>
<BoardingPermission>overnightStayOnboardAllowed</BoardingPermission>
<Period>PT9H</Period>
</OnboardStay>
</onboardStays>
</ServiceFacilitySet>
<ServiceFacilitySet version="any" id="rc:SFS-slw_2nd_class_facilities">
<Description>Second class facilities</Description>
<CateringFacilityList>buffet</CateringFacilityList>
<ClimateControlList>airConditioning heating</ClimateControlList>
<FareClasses>standardClass</FareClasses>
<LightingControlFacilityList>blinds tintedWindows </LightingControlFacilityList>
<PassengerCommsFacilityList>powerSupplySockets publicWifi</PassengerCommsFacilityList>
<AccommodationAccessList>reservation</AccommodationAccessList>
<AccommodationFacilityList>couchette</AccommodationFacilityList>
<accommodations>
<Accommodation version="any" id="rc:AC-slw_2nd_class_facilities@couchette_C6">
<FareClass>secondClass</FareClass>
<AccommodationFacility>couchette</AccommodationFacility>
<CouchetteFacility>C6</CouchetteFacility>
<MaximumNumberOfBerths>6</MaximumNumberOfBerths>
<BerthFacility>all</BerthFacility>
<PassengerCommsFacilityList>freeWifi</PassengerCommsFacilityList>
</Accommodation>
</accommodations>
</ServiceFacilitySet>
<ServiceFacilitySet version="any" id="rc:SFS-slw_buffet">
<Description>Buffet facilities</Description>
<CateringFacilityList>buffet </CateringFacilityList>
</ServiceFacilitySet>
<!-- Car Transporter -->
<ServiceFacilitySet version="any" id="rc:SFS-ctw_general_facilities">
<Description>General facilities</Description>
<CarServiceFacilityList>recharging</CarServiceFacilityList>
</ServiceFacilitySet>
</serviceFacilitySets>
<vehicleTypes>
<!-- == Trains ==== -->
<Train version="any" id="rco:Tr-rail_sleeper_train_1">
<Name> 4 carriage sleeper train with 2 Motorrail </Name>
<Description>[Vehicles2] [Velicles1] [Sleeper3] [Buffet1] [Sleeper1] [Sleeper1] [Engine]</Description>
<SelfPropelled> true</SelfPropelled>
<PropulsionType>electric</PropulsionType>
<capacities>
<PassengerCapacity version="any" id="rco:PC-rst_rail_sleeper_train_1@passenger_capacity">
<!-- seated 62 x 3 carriages-->
<TotalCapacity>186</TotalCapacity>
<!-- seated 42 x 3 carriages-->
<SeatingCapacity>126</SeatingCapacity>
<!-- standing 60 x 3 carriages -->
<StandingCapacity>60</StandingCapacity>
</PassengerCapacity>
<PassengerVehicleCapacity version="any" id="rco:PVC-rst_rail_sleeper_train_1@vehicle_capacity">
<!-- [2 x 4 ] x 2 levels x 2 carriages -->
<VehicleCapacity>32</VehicleCapacity>
</PassengerVehicleCapacity>
</capacities>
<LowFloor>false</LowFloor>
<HasLiftOrRamp>true</HasLiftOrRamp>
<BoardingHeight>0.40</BoardingHeight>
<facilities>
<ServiceFacilitySetRef version="any" ref="rc:SFS-slw_general_facilities"/>
<ServiceFacilitySetRef version="any" ref="rc:SFS-slw_1st_class_facilities"/>
</facilities>
<components>
<TrainComponent version="any" id="rco:TC-rail_sleeper_train_1-1">
<Label>Engine </Label>
<Description>Engine</Description>
<TractiveElementTypeRef version="any" ref="rco:TraET-X444"/>
<OperationalOrientation>forwards</OperationalOrientation>
<ForwardCoupling>
<Splittable>true</Splittable>
<ThroughAccess>noThroughAccess</ThroughAccess>
</ForwardCoupling>
</TrainComponent>
<TrainComponent version="any" id="rco:TC-rail_sleeper_train_1-2">
<Label>F01</Label>
<Description>Sleeper</Description>
<TrailingElementTypeRef version="any" ref="rco:TriET-S645"/>
<OperationalOrientation>forwards</OperationalOrientation>
<ForwardCoupling>
<Splittable>false</Splittable>
<ThroughAccess>door</ThroughAccess>
</ForwardCoupling>
</TrainComponent>
<TrainComponent version="any" id="rco:TC-rail_sleeper_train_1-3">
<Label>F02</Label>
<Description>Sleeper</Description>
<TrailingElementTypeRef version="any" ref="rco:TriET-S645"/>
<OperationalOrientation>forwards</OperationalOrientation>
<ForwardCoupling>
<Splittable>false</Splittable>
<ThroughAccess>door</ThroughAccess>
</ForwardCoupling>
</TrainComponent>
<TrainComponent version="any" id="rco:TC-rail_sleeper_train_1-4">
<Label>F03</Label>
<Description>Buffet car</Description>
<TrailingElementTypeRef version="any" ref="rco:TriET-B766"/>
<OperationalOrientation>forwards</OperationalOrientation>
<ForwardCoupling>
<Splittable>false</Splittable>
<ThroughAccess>door</ThroughAccess>
</ForwardCoupling>
</TrainComponent>
<TrainComponent version="any" id="rco:TC-rail_sleeper_train_1-5">
<Label>F04</Label>
<Description>Sleeper</Description>
<TrailingElementTypeRef version="any" ref="rco:TriET-S645"/>
<OperationalOrientation>forwards</OperationalOrientation>
<ForwardCoupling>
<Splittable>false</Splittable>
<ThroughAccess>door</ThroughAccess>
</ForwardCoupling>
</TrainComponent>
<TrainComponent version="any" id="rco:TC-rail_sleeper_train_1-6">
<Label>V01</Label>
<TrailingElementTypeRef version="any" ref="rco:TriET-V620"/>
<OperationalOrientation>backwards</OperationalOrientation>
<ForwardCoupling>
<Splittable>true</Splittable>
<ThroughAccess>noThroughAccess</ThroughAccess>
</ForwardCoupling>
</TrainComponent>
<TrainComponent version="any" id="rco:TC-rail_sleeper_train_1-7">
<Label>V02</Label>
<TrailingElementTypeRef version="any" ref="rco:TriET-V620"/>
<OperationalOrientation>backwards</OperationalOrientation>
<ForwardCoupling>
<Splittable>true</Splittable>
<ThroughAccess>noThroughAccess</ThroughAccess>
</ForwardCoupling>
</TrainComponent>
</components>
</Train>
</vehicleTypes>
<trainElementTypes>
<TractiveElementType version="any" id="rco:TraET-X444">
<Name>Engine</Name>
<TrainElementType>engine</TrainElementType>
<Length>10</Length>
<Width>3.5</Width>
<Height>4</Height>
<Weight>1000</Weight>
</TractiveElementType>
<TrailingElementType version="any" id="rco:TriET-S645">
<Name>Sleeper Waggon</Name>
<TrainElementType>sleeperCarriage</TrainElementType>
<FareClasses>firstClass economyClass</FareClasses>
<LowFloor>false</LowFloor>
<HasLiftOrRamp>true</HasLiftOrRamp>
<BoardingHeight>0.15</BoardingHeight>
<Length>25</Length>
<Width>3.5</Width>
<Height>4</Height>
<Weight>1000</Weight>
<DeckPlanRef version="any" ref="rc:DP-slw_sleeper_coach"/>
</TrailingElementType>
<TrailingElementType version="any" id="rco:TriET-B766">
<Name>Buffet car</Name>
<TrainElementType>sleeperCarriage</TrainElementType>
<FareClasses>firstClass standardClass</FareClasses>
<DeckPlanRef version="any" ref="rc:DP-bfc_buffet_car"/>
</TrailingElementType>
<TrailingElementType version="any" id="rco:TriET-V620">
<Name>Vehicle Wagon</Name>
<TrainElementType>sleeperCarriage</TrainElementType>
<FareClasses>any</FareClasses>
<DeckPlanRef version="any" ref="rc:DP-ctw_car_transporter_wagon"/>
</TrailingElementType>
</trainElementTypes>
<rollingStockInventories>
<RollingStockInventory version="any" id="rc:RSI-rolling_stock">
<Name>Example rail stock</Name>
<rollingStockItems>
<TractiveRollingStockItem version="any" id="rco:TriRSI-E888">
<Name>Engine</Name>
<TractiveElementTypeRef version="any" ref="rco:TraET-X444"/>
</TractiveRollingStockItem>
<TrailingRollingStockItem version="any" id="rco:TriRSI-W8156">
<Name>car transporter</Name>
<TrailingElementTypeRef version="any" ref="rco:TriET-V620"/>
</TrailingRollingStockItem>
<TrailingRollingStockItem version="any" id="rco:TriRSI-W8756">
<Name>car transporter</Name>
<TrailingElementTypeRef version="any" ref="rco:TriET-V620"/>
</TrailingRollingStockItem>
<TrailingRollingStockItem version="any" id="rco:TriRSI-N7955">
<Name>Sleeper</Name>
<TrailingElementTypeRef version="any" ref="rco:TriET-S645"/>
</TrailingRollingStockItem>
<TrailingRollingStockItem version="any" id="rco:TriRSI-B4044 ">
<Name>buffet</Name>
<TrailingElementTypeRef version="any" ref="rco:TriET-B766"/>
</TrailingRollingStockItem>
<TrailingRollingStockItem version="any" id="rco:TriRSI-N7482">
<Name>Sleeper</Name>
<TrailingElementTypeRef version="any" ref="rco:TriET-S645"/>
</TrailingRollingStockItem>
<TrailingRollingStockItem version="any" id="rco:TriRSI-N7456">
<Name>Sleeper</Name>
<TrailingElementTypeRef version="any" ref="rco:TriET-S645"/>
</TrailingRollingStockItem>
</rollingStockItems>
</RollingStockInventory>
</rollingStockInventories>
<deckPlans>
<DeckPlan version="any" id="rc:DP-slw_sleeper_coach">
<Name>Rail sleeper wagon</Name>
<configurationConditions>
<ValidityCondition version="any" id="rc:VC-slw_sleeper_coach@dayTime_configuration">
<Name>Day Configuration</Name>
<Description>Couchettes used as seats 8 per seconf class compartment</Description>
</ValidityCondition>
<ValidityCondition version="any" id="rc:VC-slw_sleeper_coach@nightTime_configuration">
<Name>Night Time confguration</Name>
<Description>Couchettes used as bunk beds 6 per seconf class compartment</Description>
</ValidityCondition>
<!-- foudd up seays seats -->
<ValidityCondition version="any" id="rc:VC-as_fold_down_seat">
<Name>Folded down</Name>
<Description>Wheel chair space used a fold down seat</Description>
</ValidityCondition>
<ValidityCondition version="any" id="rc:VC-as_wheelchair">
<Name>Folded up for wheelchair</Name>
<Description>Wheel chair space used for wheel chair </Description>
</ValidityCondition>
</configurationConditions>
<decks>
<Deck version="any" id="rc:Dk-slw_deck_1">
<Name>Sleeper wagon Passenger deck</Name>
<Label>1</Label>
<deckSpaces>
<PassengerSpace version="any" id="rc:PS-slw_deck_1@corridor">
<Name>Corridor</Name>
<ServiceFacilitySetRef version="any" ref="rc:SFS-slw_general_facilities"/>
<SmokingAllowed>false</SmokingAllowed>
<deckEntrances>
<!-- external doors to carriage -->
<PassengerEntrance version="any" id="rc:PE-slw_deck_1@forward_external_left">
<Label>FL</Label>
<Name>Left Front Door</Name>
<Width>1.00</Width>
<Height>1.90</Height>
<actualVehicleEquipments>
<ActualVehicleEquipment version="any" id="rc:AVE-slw_deck_1@forward_external_left@door">
<Units>1</Units>
<EntranceEquipmentRef version="any" ref="rc:EE-external_door"/>
</ActualVehicleEquipment>
<ActualVehicleEquipment version="any" id="rc:AVE-slw_deck_1@forward_external_left@sensor">
<Units>1</Units>
<EntranceSensorRef version="any" ref="rc:ES-external_door_sensor"/>
</ActualVehicleEquipment>
<ActualVehicleEquipment version="any" id="rc:AVE-slw_deck_1@forward_external_left@door_button">
<!-- ROO -->
</ActualVehicleEquipment>
</actualVehicleEquipments>
<PublicUse>true</PublicUse>
<VehicleSide>leftSide</VehicleSide>
<SequenceFromFront>1</SequenceFromFront>
<HeightFromGround>0.20</HeightFromGround>
<DeckEntranceType>external</DeckEntranceType>
<IsEmergencyExit>true</IsEmergencyExit>
<HasDoor>true</HasDoor>
<IsAutomatic>true</IsAutomatic>
<sensorsInEntrance>
<SensorInEntrance version="any" id="rc:SIE-slw_deck_1@forward_external_left">
<EntranceSensorRef version="any" ref="rc:ES-external_door_sensor"/>
</SensorInEntrance>
</sensorsInEntrance>
</PassengerEntrance>
<PassengerEntrance version="any" id="rc:PE-slw_deck_1@forward_external_right">
<Label>FR</Label>
<Name>Front Right External Door</Name>
<Width>1.00</Width>
<Height>1.90</Height>
<actualVehicleEquipments>
<ActualVehicleEquipment version="any" id="rc:AVE-slw_deck_1@forward_external@door">
<Units>1</Units>
<EntranceEquipmentRef version="any" ref="rc:EE-external_door"/>
</ActualVehicleEquipment>
<ActualVehicleEquipment version="any" id="rc:AVE-slw_deck_1@forward_external@sensor">
<Units>1</Units>
<EntranceSensorRef version="any" ref="rc:ES-external_door_sensor"/>
</ActualVehicleEquipment>
</actualVehicleEquipments>
<PublicUse>true</PublicUse>
<VehicleSide>rightSide</VehicleSide>
<SequenceFromFront>1</SequenceFromFront>
<HeightFromGround>0.20</HeightFromGround>
<DeckEntranceType>external</DeckEntranceType>
<IsEmergencyExit>true</IsEmergencyExit>
<HasDoor>true</HasDoor>
<IsAutomatic>true</IsAutomatic>
<sensorsInEntrance>
<SensorInEntrance version="any" id="rc:SIE-slw_deck_1@forward_external_right">
<EntranceSensorRef version="any" ref="rc:ES-external_door_sensor"/>
</SensorInEntrance>
</sensorsInEntrance>
</PassengerEntrance>
<PassengerEntrance version="any" id="rc:PE-slw_deck_1@rear_external_left">
<Label>RL</Label>
<Name>Rear External Door</Name>
<Width>0.95</Width>
<Height>1.90</Height>
<actualVehicleEquipments>
<ActualVehicleEquipment version="any" id="rc:AVE-slw_deck_1@rear_external_left@door">
<Units>1</Units>
<EntranceEquipmentRef version="any" ref="rc:EE-external_door"/>
</ActualVehicleEquipment>
<ActualVehicleEquipment version="any" id="rc:AVE-slw_deck_1@rear_external_left@sensor">
<EntranceSensorRef version="any" ref="rc:ES-external_door_sensor"/>
</ActualVehicleEquipment>
<ActualVehicleEquipment version="any" id="rc:AVE-slw_deck_1@rear_external_left@door_button">
<!-- ROO -->
</ActualVehicleEquipment>
</actualVehicleEquipments>
<PublicUse>true</PublicUse>
<VehicleSide>leftSide</VehicleSide>
<SequenceFromFront>2</SequenceFromFront>
<HeightFromGround>0.20</HeightFromGround>
<DeckEntranceType>external</DeckEntranceType>
<IsEmergencyExit>true</IsEmergencyExit>
<HasDoor>true</HasDoor>
<IsAutomatic>true</IsAutomatic>
<sensorsInEntrance>
<SensorInEntrance version="any" id="rc:SIE-slw_deck_1@rear_external_left">
<EntranceSensorRef version="any" ref="rc:ES-external_door_sensor"/>
</SensorInEntrance>
</sensorsInEntrance>
</PassengerEntrance>
<PassengerEntrance version="any" id="rc:PE-slw_deck_1@rear_external_right">
<Label>RR</Label>
<Name>Rear Right External Door</Name>
<Width>0.95</Width>
<Height>1.90</Height>
<actualVehicleEquipments>
<ActualVehicleEquipment version="any" id="rc:AVE-slw_deck_1@rear_external_right@door">
<Units>1</Units>
<EntranceEquipmentRef version="any" ref="rc:EE-external_door"/>
</ActualVehicleEquipment>
<ActualVehicleEquipment version="any" id="rc:AVE-slw_deck_1@rear_external_right@sensor">
<EntranceSensorRef version="any" ref="rc:ES-external_door_sensor"/>
</ActualVehicleEquipment>
</actualVehicleEquipments>
<PublicUse>true</PublicUse>
<VehicleSide>rightSide</VehicleSide>
<SequenceFromFront>2</SequenceFromFront>
<HeightFromGround>0.20</HeightFromGround>
<DeckEntranceType>external</DeckEntranceType>
<IsEmergencyExit>true</IsEmergencyExit>
<HasDoor>true</HasDoor>
<IsAutomatic>true</IsAutomatic>
<sensorsInEntrance>
<SensorInEntrance version="any" id="rc:SIE-slw_deck_1@rear_external_right">
<EntranceSensorRef version="any" ref="rc:ES-external_door_sensor"/>
</SensorInEntrance>
</sensorsInEntrance>
</PassengerEntrance>
<!-- end doors to next carriage -->
<PassengerEntrance version="any" id="rc:PE-slw_deck_1@front_end_connecting">
<Label>FE</Label>
<Name>Rear end door connecting to next carriage</Name>
<Width>0.80</Width>
<Height>1.90</Height>
<actualVehicleEquipments>
<ActualVehicleEquipment version="any" id="rc:AVE-slw_deck_1@front_end_connecting@door">
<EntranceEquipmentRef version="any" ref="rc:EE-inter_wagon_passenger_door"/>
</ActualVehicleEquipment>
</actualVehicleEquipments>
<PublicUse>true</PublicUse>
<VehicleSide>frontEnd</VehicleSide>
<DeckEntranceType>communicating</DeckEntranceType>
<IsEmergencyExit>false</IsEmergencyExit>
<HasDoor>true</HasDoor>
<IsAutomatic>true</IsAutomatic>
<sensorsInEntrance>
<SensorInEntrance version="any" id="rc:SIE-slw_deck_1@front_end_connecting@sensor">
<EntranceSensorRef version="any" ref="rc:ES-external_door_sensor"/>
</SensorInEntrance>
</sensorsInEntrance>
</PassengerEntrance>
<PassengerEntrance version="any" id="rc:PE-slw_deck_1@back_end_connecting">
<Label>RE</Label>
<Name>Rear end door connecting to next carriage</Name>
<Width>0.80</Width>
<Height>1.90</Height>
<actualVehicleEquipments>