-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathNetex_SimpleNetwork_1.xml
More file actions
1575 lines (1557 loc) · 71.2 KB
/
Netex_SimpleNetwork_1.xml
File metadata and controls
1575 lines (1557 loc) · 71.2 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"?>
<!-- ==== SImple Network Example ======
This example shows the encoding of a simple bus infrastructure network in NeTEx XML
Line 66 : has two branches comprising five STOP PLACEs
- D
A - B - C <
- E
Stops A, D, E use the same QUAY in both directions
Stop B has QUAYs Ba, Bb for the two different directions
Stop C has QUAYs Ca, Cb for the two different directions
There are SCHEDULED STOP POINTs Aa Ba, Bb, Ca, Cb, D, E
Aa SCHEDULED STOP POINT hde:SSP0001A
Ba SCHEDULED STOP POINT hde:SSP0002B_a
Bb SCHEDULED STOP POINT hde:SSP0002B_b
Ca SCHEDULED STOP POINT hde:SSP0003C_a
Cb SCHEDULED STOP POINT hde:SSP0003C_b
D SCHEDULED STOP POINT hde:SSP0004D
E SCHEDULED STOP POINT hde:SSP0005E
STOP PLACEs A, B, C ,D, E
A STOP PLACE mybus:SP001A
QUAY mybus:Q_SP001A@1
B STOP PLACE mybus:SP002B
QUAY mybus:Q_SP002B@1
QUAY mybus:Q_SP002B@2
C STOP PLACE mybus:SP003C
QUAY mybus:Q_SP002C@1
QUAY mybus:Q_SP002C@2
D STOP PLACE mybus:SP004D
QUAY mybus:Q_SP002D@1
E STOP PLACE mybus:SP005E
QUAY mybus:Q_SP002E@1
ROUTEs in each DIRECTION: : Additional ROUTE POINTs are centreline of Road so are use din both directions .
A - B - C - D
RT001o seven points A - [rp21 - Ba - rp22 -rp2 5 - Ca - D
RT001i seven points D - Cb - rp25 - rp22 Bb - rp21 - A
A - B - C - E
RT001o seven points A - rp21 - Ba - rp22 -rp2 5 - Ca - E
RT001i seven points E - Cb - 25 - rp22 - Bb - rp21 - A
SERVICE PATTERNs in each direction:
A - B - C - D
SvP001o: A - Ba - Ca - D
Points A, Ba, C, D
Links A-Ba, Ba-Ca, Ca-D
SvP001i: D - Cb - Bb -A : Ba,
Links D -Cb, Cb-Bb, Bb - A
A - B - C - E
SvP002o: A - Ba - Ca - E
Points A, Ba, C, D
Links A-Ba, Ba-Ca, Ca-E
SvP002i: E - Cb - Bb -A : Ba,
Links E -Cb, Cb-Bb, Bb - A
TIMING PATTERNs in each direction
A - B - C - D
TP001o A -Ba - TP51 -Ca - D
TP001i D -Cb -Bb -A
A - B - C - E
TP002o A -Ba - TP51 -Ca - E
TP002i E -Cb -Bb -A
JOURNEY PATTERNs in each direction
A - B - C - D
JP001o A -Ba -C -D;
JP001i D C -Bb -A
A - B - C - E
JP002o A -Ba - C -E;
JP002i E- C -Bb -A
TIME DEMAND TYPEs TP001 peak
Two different RESPONSIBILITY SETs
mybus:RS_10, hde:RS_22
INFRASTRUCTURE elements
Road 1 FooSt 2 BarLane 3 FumAv 4 FI cresc
rdj001 - rdj003 - rdj003.. ..30mC
A - - - B -
Infrastucture restrictions
Network Elements
A RESOURCE FRAME is used to contain the fixed code elements and RESPONSIBILITY SETs
An INFRASTRUCTURE FRAME is used to group the Road ELEMENTs.
A SITE FRAME is used to contain the STOP PLACE elements
A SERVICE FRAME is used to contain the route network elements
A COMPOSITE FRAME Is used to group the above frames as a cohernet version.
v1.1 revised ids
(C) COpyright CEN, Crown Copyright 2010-2019
-->
<PublicationDelivery xmlns="http://www.netex.org.uk/netex" xmlns:siri="http://www.siri.org.uk/siri" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:gml="http://www.opengis.net/gml/3.2" version="1.0" xsi:schemaLocation="http://www.netex.org.uk/netex ../../../xsd/NeTEx_publication.xsd">
<PublicationTimestamp>2010-12-17T09:30:47.0Z</PublicationTimestamp>
<ParticipantRef>SYS001</ParticipantRef>
<!--- ======WHAT WAS REQUESTED ========== -->
<PublicationRequest version="1.0">
<RequestTimestamp>2010-12-17T09:30:47.0Z</RequestTimestamp>
<ParticipantRef>SYS002</ParticipantRef>
<topics>
<NetworkFrameTopic>
<Current/>
<InfrastructureFrameRef ref="mybus:ifwkf001">REQUEST</InfrastructureFrameRef>
<ServiceFrameRef ref="mybus:ntwkf001">REQUEST</ServiceFrameRef>
</NetworkFrameTopic>
</topics>
</PublicationRequest>
<PublicationRefreshInterval>P7D</PublicationRefreshInterval>
<Description>Netex basic Versioning Example Step 05</Description>
<!--- =============== RESULTS =========== -->
<dataObjects>
<CompositeFrame version="1" id="mybus:SVC_01@composite">
<!--- ======= CODESPACEs======== -->
<codespaces>
<Codespace id="mybus">
<Xmlns>mybus</Xmlns>
<XmlnsUrl>http://www.mybuses.eu/stuff</XmlnsUrl>
<Description>My buses</Description>
</Codespace>
<Codespace id="hde">
<Xmlns>hde</Xmlns>
<XmlnsUrl>http://www.halt.de/</XmlnsUrl>
<Description>Stop data data</Description>
</Codespace>
<Codespace id="gis">
<Xmlns>gis</Xmlns>
<XmlnsUrl>http://www.gisdata.com/data</XmlnsUrl>
<Description>GIS data</Description>
</Codespace>
</codespaces>
<!--- =======FRAME DEFAULTS======== -->
<FrameDefaults>
<DefaultCodespaceRef ref="mybus"/>
</FrameDefaults>
<frames>
<!-- === SITE : STOP PLACEs & QUAYs======= -->
<SiteFrame version="024" created="2010-05-17T09:30:47.0Z" changed="2010-05-22T10:30:51.0Z" modification="revise" derivedFromVersionRef="0023" id="mybus:SVC_01@site">
<FrameDefaults>
<DefaultResponsibilitySetRef ref="mybus:RS_10"/>
</FrameDefaults>
<prerequisites>
<ResourceFrameRef version="1.0" ref="mybus:SVC_01@resources"/>
</prerequisites>
<stopPlaces>
<StopPlace version="any" created="2006-09-11T15:42:00" id="mybus:SP001A">
<Name>St George's Road (SW19)</Name>
<ShortName>Place A </ShortName>
<Centroid>
<Location>
<gml:pos srsName="UKOS">524811 170666 </gml:pos>
</Location>
</Centroid>
<RoadAddress version="any" id="mybus:RAd_SP001A@01">
<RoadName>Alexandra Road</RoadName>
</RoadAddress>
<TransportMode>bus</TransportMode>
<StopPlaceType>onstreetBus</StopPlaceType>
<quays>
<Quay version="any" created="2010-04-17T09:30:47Z" id="mybus:Q_SP001A@1">
<Name>PlaceA</Name>
<Description>Stop A is termiuis serves both directions</Description>
<Centroid>
<Location>
<Longitude>-0.2071397147</Longitude>
<Latitude>51.4217482061</Latitude>
</Location>
</Centroid>
<Covered>indoors</Covered>
<Label>Stop A</Label>
<PublicCode>1-3454 </PublicCode>
<CompassOctant>S</CompassOctant>
<QuayType>busStop</QuayType>
</Quay>
</quays>
</StopPlace>
<StopPlace version="any" created="2006-09-11T15:42:00" id="mybus:SP002B">
<Name>St George's Road (SW19)</Name>
<ShortName>Place B</ShortName>
<Centroid>
<Location>
<gml:pos srsName="UKOS">524811 170666 </gml:pos>
</Location>
</Centroid>
<RoadAddress version="any" id="mybus:RAd_SP002B@01">
<RoadName>Alexandra Road</RoadName>
</RoadAddress>
<StopPlaceType>onstreetBus</StopPlaceType>
<quays>
<Quay version="any" id="mybus:Q_SP002B@1">
<Name>Place B, Northbound</Name>
<Description>Stop Ba is paired with Stop Bb </Description>
<Centroid>
<Location>
<Longitude>-0.2071397147</Longitude>
<Latitude>51.4217482061</Latitude>
</Location>
</Centroid>
<Covered>outdoors</Covered>
<Label>Stop Ba</Label>
<PublicCode>1-3456 </PublicCode>
<CompassOctant>S</CompassOctant>
<QuayType>busStop</QuayType>
</Quay>
<Quay version="any" created="2010-04-17T09:30:47Z" id="mybus:Q_SP002B@2">
<Name>Place B, SOuthbound</Name>
<Description>Stop Ba is paired with Stop Bb </Description>
<Centroid>
<Location>
<Longitude>-0.2071397147</Longitude>
<Latitude>51.4217482061</Latitude>
</Location>
</Centroid>
<Covered>outdoors</Covered>
<Label>Stop Bb</Label>
<PublicCode>1-3457 </PublicCode>
<CompassOctant>N</CompassOctant>
<QuayType>busStop</QuayType>
</Quay>
</quays>
</StopPlace>
<StopPlace version="any" created="2006-09-11T15:42:00" id="mybus:SP003C">
<Name>Place C</Name>
<ShortName>Place C</ShortName>
<Centroid>
<Location>
<gml:pos srsName="UKOS">524811 170666 </gml:pos>
</Location>
</Centroid>
<RoadAddress version="any" id="mybus:RAd_SP002C@01">
<RoadName>Foo Road</RoadName>
</RoadAddress>
<TransportMode>bus</TransportMode>
<StopPlaceType>onstreetBus</StopPlaceType>
<quays>
<Quay version="any" created="2010-04-17T09:30:47Z" id="mybus:Q_SP002C@1">
<Name>Place C</Name>
<Description>StopCa is paired with Stop Cb </Description>
<Centroid>
<Location>
<Longitude>-0.2071397147</Longitude>
<Latitude>51.4217482061</Latitude>
</Location>
</Centroid>
<Covered>outdoors</Covered>
<Label>Stop Ca</Label>
<PublicCode>1-3454 </PublicCode>
<CompassOctant>NE</CompassOctant>
<QuayType>busStop</QuayType>
</Quay>
<Quay version="any" created="2010-04-17T09:30:47Z" id="mybus:Q_SP002C@2">
<Name>Place C</Name>
<Description>Stop Cb is paired with Stop Ca </Description>
<Centroid>
<Location>
<Longitude>-0.2071397147</Longitude>
<Latitude>51.4217482061</Latitude>
</Location>
</Centroid>
<Covered>outdoors</Covered>
<Label>Stop Cb</Label>
<PublicCode>1-3454 </PublicCode>
<CompassOctant>SE</CompassOctant>
<QuayType>busStop</QuayType>
</Quay>
</quays>
</StopPlace>
<StopPlace version="any" created="2006-09-11T15:42:00" id="mybus:SP004D">
<Name>Place D</Name>
<ShortName>Place D</ShortName>
<Centroid>
<Location>
<gml:pos srsName="UKOS">524811 170666 </gml:pos>
</Location>
</Centroid>
<RoadAddress version="any" id="mybus:RAd_SP004D_01">
<RoadName>Bar Road</RoadName>
</RoadAddress>
<TransportMode>bus</TransportMode>
<StopPlaceType>onstreetBus</StopPlaceType>
<quays>
<Quay version="any" created="2010-04-17T09:30:47Z" id="mybus:Q_SP004D_1">
<Name>PlaceD</Name>
<Description>Stop D is termiuis serves both directions</Description>
<Centroid>
<Location>
<Longitude>-0.2071397147</Longitude>
<Latitude>51.4217482061</Latitude>
</Location>
</Centroid>
<Covered>outdoors</Covered>
<Label>Stop D</Label>
<PublicCode>1-3454 </PublicCode>
<CompassOctant>W</CompassOctant>
<QuayType>busStop</QuayType>
</Quay>
</quays>
</StopPlace>
<StopPlace version="any" created="2006-09-11T15:42:00" id="mybus:SP005E">
<Name>Place E</Name>
<ShortName>Place E</ShortName>
<Centroid>
<Location>
<gml:pos srsName="UKOS">524811 170666 </gml:pos>
</Location>
</Centroid>
<RoadAddress version="any" id="mybus:RAd_SP005E_01">
<RoadName>Bar Road</RoadName>
</RoadAddress>
<TransportMode>bus</TransportMode>
<StopPlaceType>onstreetBus</StopPlaceType>
<quays>
<Quay version="any" created="2010-04-17T09:30:47Z" id="mybus:Q_SP005E_1">
<Name>PlaceE</Name>
<Description>Stop Es termiuis serves both directions</Description>
<Centroid>
<Location>
<Longitude>-0.2071397147</Longitude>
<Latitude>51.4217482061</Latitude>
</Location>
</Centroid>
<Covered>outdoors</Covered>
<Label>Stop E</Label>
<PublicCode>1-3454 </PublicCode>
<CompassOctant>W</CompassOctant>
<QuayType>busStop</QuayType>
</Quay>
</quays>
</StopPlace>
</stopPlaces>
</SiteFrame>
<!--- ======INFRASTRUCTURE LINKs ========== -->
<InfrastructureFrame version="1.0" created="2010-05-17T09:30:47.0Z" changed="2010-05-22T10:30:51.0Z" modification="revise" derivedFromVersionRef="004" responsibilitySetRef="mybus:RS_10" id="mybus:SVC_01@infrastructure">
<Name>My Infrastructure Version 5 with three stops in it </Name>
<prerequisites>
<ResourceFrameRef version="1.0" ref="mybus:SVC_01@resources"/>
</prerequisites>
<!--- ============ ============= -->
<junctions>
<!--- ===SOME TOKEN INFRASTRUCTURE ========== -->
<!-- for projections -->
<RoadJunction version="1.0" created="2010-12-17T09:30:47.0Z" responsibilitySetRef="gis:RS_31" id="gis:rdJ001">
<Name>Junc 1</Name>
<Location>
<Longitude>-0.2071397147</Longitude>
<Latitude>51.4217482061</Latitude>
</Location>
</RoadJunction>
<RoadJunction version="1.0" created="2010-12-17T09:30:47.0Z" responsibilitySetRef="gis:RS_31" id="gis:rdJ002">
<Name>Junc 2</Name>
<Location>
<Longitude>-0.2071397147</Longitude>
<Latitude>51.4217482061</Latitude>
</Location>
</RoadJunction>
<RoadJunction version="1.0" created="2010-12-17T09:30:47.0Z" responsibilitySetRef="gis:RS_31" id="gis:rdJ003">
<Name>Junc 3</Name>
<Location>
<Longitude>-0.2171397147</Longitude>
<Latitude>51.4217482061</Latitude>
</Location>
</RoadJunction>
<RoadJunction version="1.0" created="2010-12-17T09:30:47.0Z" responsibilitySetRef="gis:RS_31" id="gis:rdJ004">
<Name>Junc 4</Name>
<Location>
<Longitude>-0.2371397147</Longitude>
<Latitude>51.4217482061</Latitude>
</Location>
</RoadJunction>
<RoadJunction version="1.0" created="2010-12-17T09:30:47.0Z" responsibilitySetRef="gis:RS_31" id="gis:rdJ005">
<Name>Junc</Name>
<Location>
<Longitude>-0.2471397147</Longitude>
<Latitude>51.4317482061</Latitude>
</Location>
</RoadJunction>
<RoadJunction version="1.0" created="2010-12-17T09:30:47.0Z" responsibilitySetRef="gis:RS_31" id="gis:rdJ006">
<Name>Junc</Name>
<Location>
<Longitude>-0.2571397147</Longitude>
<Latitude>51.4363482061</Latitude>
</Location>
</RoadJunction>
<!-- for restrictions -->
<RoadJunction version="1.0" created="2010-12-17T09:30:47.0Z" id="gis:rdJ021">
<Name>Vehicle of type VT001 Cannot pass here</Name>
<Location>
<Longitude>-0.2071397147</Longitude>
<Latitude>51.4217482061</Latitude>
</Location>
</RoadJunction>
<RoadJunction version="1.0" created="2010-12-17T09:30:47.0Z" id="gis:rdJ022">
<Name>Vehicle of type VT001 Cannot pass here</Name>
<Location>
<Longitude>-0.2071397147</Longitude>
<Latitude>51.4317482061</Latitude>
</Location>
</RoadJunction>
</junctions>
<elements>
<!-- for projections -->
<RoadElement version="1.0" created="2010-12-17T09:30:47.0Z" responsibilitySetRef="gis:RS_31" id="gis:rdJ001+rdJ003">
<Name>Link between Junc 1 -2</Name>
<FromPointRef version="1.0" ref="gis:rdJ001"/>
<ToPointRef version="1.0" ref="gis:rdJ003"/>
</RoadElement>
<RoadElement version="1.0" created="2010-12-17T09:30:47.0Z" responsibilitySetRef="gis:RS_31" id="gis:rdJ003+rdJ004">
<Name>Link 3 -4</Name>
<FromPointRef version="1.0" ref="gis:rdJ003"/>
<ToPointRef version="1.0" ref="gis:rdJ004"/>
</RoadElement>
<RoadElement version="1.0" created="2010-12-17T09:30:47.0Z" responsibilitySetRef="gis:RS_31" id="gis:rdJ004+rdJ005">
<Name>Link 4-5</Name>
<FromPointRef version="1.0" ref="gis:rdJ004"/>
<ToPointRef version="1.0" ref="gis:rdJ005"/>
</RoadElement>
<RoadElement version="1.0" created="2010-12-17T09:30:47.0Z" responsibilitySetRef="gis:RS_31" id="gis:rdJ005+rdJ006">
<Name>Road between Junc 2 -3</Name>
<FromPointRef version="1.0" ref="gis:rdJ005"/>
<ToPointRef version="1.0" ref="gis:rdJ006"/>
</RoadElement>
<!-- for restrictions -->
<RoadElement version="1.0" created="2010-12-17T09:30:47.0Z" responsibilitySetRef="gis:RS_31" id="gis:rdJ021+rdJ022">
<Name>Junc 21-22</Name>
<FromPointRef version="1.0" ref="gis:rdJ021"/>
<ToPointRef version="1.0" ref="gis:rdJ022"/>
</RoadElement>
<RoadElement version="1.0" created="2010-12-17T09:30:47.0Z" responsibilitySetRef="gis:RS_31" id="gis:rdJ022+rdJ021">
<Name>Junc 22-21</Name>
<FromPointRef version="1.0" ref="gis:rdJ022"/>
<ToPointRef version="1.0" ref="gis:rdJ021"/>
</RoadElement>
</elements>
<restrictions>
<!--- ===SOME TOKEN RESTRICTIONS========== -->
<RestrictedManoeuvre id="hde:RM_01-1" version="1.0" created="2010-12-17T09:30:47.0Z">
<Restricted>false</Restricted>
<FromLinkRef version="1.0" ref="gis:rdJ001+rdJ003"/>
<ToLinkRef version="1.0" ref="gis:rdJ003+rdJ004"/>
<VehicleTypeRef version="1.0" ref="hde:VT001"/>
</RestrictedManoeuvre>
<MeetingRestriction id="hde:RMT_02-1" version="1.0" created="2010-12-17T09:30:47.0Z">
<Restricted>true</Restricted>
<FromLinkRef version="1.0" ref="gis:rdJ022+rdJ021"/>
<ToLinkRef version="1.0" ref="gis:rdJ021+rdJ022"/>
<ForVehicleTypeRef version="1.0" ref="hde:VT001"/>
<AgainstVehicleTypeRef version="1.0" ref="hde:VT001"/>
</MeetingRestriction>
<OvertakingPossibility id="hde:ROP_03-1" version="1.0" created="2010-12-17T09:30:47.0Z">
<Restricted>false</Restricted>
<OvertakingOnLinkRef version="1.0" ref="gis:rdJ021+rdJ022"/>
<OvertakingAtPointRef version="1.0" ref="gis:rdJ021"/>
<OvertakingVehicleTypeRef version="1.0" ref="hde:VT001"/>
<OvertakenVehicleTypeRef version="1.0" ref="hde:VT001"/>
</OvertakingPossibility>
</restrictions>
<!-- ==== -->
<!--- ============ ============= -->
<vehicleTypes>
<VehicleType version="1.0" created="2010-12-17T09:30:47.0Z" id="hde:VT001">
<Name>Big red bus</Name>
<PassengerCapacity version="1.0" id="hde:VT001">
<SeatingCapacity>50</SeatingCapacity>
<StandingCapacity>20</StandingCapacity>
<WheelchairPlaceCapacity>2</WheelchairPlaceCapacity>
</PassengerCapacity>
<Length>20</Length>
</VehicleType>
</vehicleTypes>
</InfrastructureFrame>
<!--- =====FRAME WITH ROUTEs========= -->
<ServiceFrame version="1.0" id="mybus:SVC_01@routes">
<FrameDefaults>
<DefaultResponsibilitySetRef version="3.0" ref="hde:RS_22"/>
</FrameDefaults>
<prerequisites>
<InfrastructureFrameRef version="1.0" ref="mybus:SVC_01@infrastructure"/>
</prerequisites>
<!--- s ===declaration o f ROUTE POINT ========= -->
<!-- /points fr ROute R1001oo -->
<routePoints>
<!-- points used in Route Rt001o -->
<RoutePoint version="any" id="hde:RteP021">
<Name>Point 21</Name>
<projections>
<PointProjection version="any" id="hde:RteP021">
<ProjectToPointRef version="any" ref="gis:rdJ002"/>
</PointProjection>
</projections>
</RoutePoint>
<RoutePoint version="any" id="hde:RteP022">
<Name>Point 22</Name>
<projections>
<PointProjection version="any" id="hde:RteP022">
<ProjectToPointRef version="any" ref="gis:rdJ004"/>
</PointProjection>
</projections>
</RoutePoint>
<RoutePoint version="any" id="hde:RteP025">
<Name>Point 25</Name>
<projections>
<PointProjection version="any" id="hde:RteP025">
<ProjectToPointRef version="any" ref="gis:rdJ005"/>
</PointProjection>
</projections>
</RoutePoint>
</routePoints>
<!-- links for route R1001oo -->
<routeLinks>
<RouteLink version="any" id="hde:hde:RL_001o@SSP0001A+RteP021">
<!-- rdj 001 - 002 - 003 004 - 005
rde <:: 1+3::::::><:: -3+4 ::> <:: 4+5 ::>
RP 021 - 022 - 23
RL <:: 21+22:::><:: -22+23 ::>
-->
<Distance>110</Distance>
<FromPointRef version="032" ref="hde:SSP0001A" xsi:type="ScheduledStopPointRefStructure"/>
<ToPointRef version="any" ref="hde:RteP021" xsi:type="RoutePointRefStructure"/>
</RouteLink>
<RouteLink version="any" id="hde:RL_001o@RteP021+SSP0002B_a">
<Distance>120</Distance>
<FromPointRef version="any" ref="hde:RteP021" xsi:type="RoutePointRefStructure"/>
<ToPointRef version="032" ref="hde:SSP0002B_a" xsi:type="ScheduledStopPointRefStructure"/>
</RouteLink>
<RouteLink version="any" id="hde:RL_001o@SSP0001B_a+RteP022">
<Distance>130</Distance>
<FromPointRef version="032" ref="hde:SSP0002B_a" xsi:type="ScheduledStopPointRefStructure"/>
<ToPointRef version="any" ref="hde:RteP022"/>
</RouteLink>
<RouteLink version="any" id="hde:RL_001o@RteP022+RteP025">
<Distance>140</Distance>
<FromPointRef version="any" ref="hde:RteP022" xsi:type="RoutePointRefStructure"/>
<ToPointRef version="any" ref="hde:RteP025" xsi:type="RoutePointRefStructure"/>
</RouteLink>
<RouteLink version="any" id="hde:RL_001o@RteP025+SSP0003C_a">
<Distance>150</Distance>
<FromPointRef version="any" ref="hde:RteP025" xsi:type="RoutePointRefStructure"/>
<ToPointRef version="015" ref="hde:SSP0003C_a" xsi:type="ScheduledStopPointRefStructure"/>
</RouteLink>
<RouteLink version="any" id="hde:RL_001o@SSP0003C_a5+SSP0003D">
<Distance>160</Distance>
<FromPointRef version="015" ref="hde:SSP0003C_a" xsi:type="ScheduledStopPointRefStructure"/>
<ToPointRef version="015" ref="hde:SSP0004D" xsi:type="RoutePointRefStructure"/>
</RouteLink>
<!-- / links for Rt001i -->
<RouteLink version="any" id="hde:RL_001i_01">
<Distance>161</Distance>
<FromPointRef version="015" ref="hde:SSP0004D" xsi:type="ScheduledStopPointRefStructure"/>
<ToPointRef version="015" ref="hde:SSP0003C_b" xsi:type="ScheduledStopPointRefStructure"/>
</RouteLink>
<RouteLink version="any" id="hde:RL_001i_02">
<Distance>151</Distance>
<FromPointRef version="015" ref="hde:SSP0003C_b" xsi:type="ScheduledStopPointRefStructure"/>
<ToPointRef version="any" ref="hde:RteP025" xsi:type="RoutePointRefStructure"/>
</RouteLink>
<RouteLink version="any" id="hde:RL_001i_03">
<Distance>141</Distance>
<FromPointRef version="any" ref="hde:RteP025" xsi:type="RoutePointRefStructure"/>
<ToPointRef version="any" ref="hde:RteP022" xsi:type="RoutePointRefStructure"/>
</RouteLink>
<RouteLink version="any" id="hde:RL_001i_04">
<Distance>131</Distance>
<FromPointRef version="any" ref="hde:RteP022" xsi:type="RoutePointRefStructure"/>
<ToPointRef version="032" ref="hde:SSP0002B_b" xsi:type="ScheduledStopPointRefStructure"/>
</RouteLink>
<RouteLink version="any" id="hde:RL_001i_05">
<Distance>121</Distance>
<FromPointRef version="015" ref="hde:SSP0003C_b" xsi:type="ScheduledStopPointRefStructure"/>
<ToPointRef version="any" ref="hde:RteP021" xsi:type="RoutePointRefStructure"/>
</RouteLink>
<RouteLink version="any" id="hde:RL_001i_06">
<Distance>111</Distance>
<FromPointRef version="any" ref="hde:RteP021" xsi:type="RoutePointRefStructure"/>
<ToPointRef version="032" ref="hde:SSP0001A" xsi:type="ScheduledStopPointRefStructure"/>
</RouteLink>
<!-- /links for route Rt001i-->
<!-- links -->
<RouteLink version="any" id="hde:RL_002o_06">
<Distance>170</Distance>
<FromPointRef version="015" ref="hde:SSP0003C_a" xsi:type="ScheduledStopPointRefStructure"/>
<ToPointRef version="015" ref="hde:SSP0005E" xsi:type="ScheduledStopPointRefStructure"/>
</RouteLink>
<!--- /links -->
<!-- links -->
<RouteLink version="any" id="hde:RL_002i_01">
<Distance>171</Distance>
<FromPointRef version="015" ref="hde:SSP0005E" xsi:type="ScheduledStopPointRefStructure"/>
<ToPointRef version="015" ref="hde:SSP0003C_b" xsi:type="ScheduledStopPointRefStructure"/>
</RouteLink>
<!-- /links -->
</routeLinks>
<routes>
<!--- ===Routes ========= -->
<Route version="any" created="2010-12-17T09:30:47.0Z" changed="2002-12-17T09:30:47.0Z" responsibilitySetRef="hde:RS_22" id="hde:RT001o">
<Name>Route 66b outbound</Name>
<LineRef version="any" ref="mybus:0066"/>
<DirectionType>outbound</DirectionType>
<pointsInSequence>
<PointOnRoute version="any" id="mybus:RPIS_001o-0001">
<ScheduledStopPointRef version="032" ref="hde:SSP0001A"/>
<OnwardRouteLinkRef version="any" ref="hde:hde:RL_001o@SSP0001A+RteP021"/>
<routeInstructions>
<RouteInstruction id="ri1" version="any">
<Instruction>3rd road to the left</Instruction>
<Distance>100</Distance>
</RouteInstruction>
<RouteInstruction id="ri3" version="any">
<PathHeading>back</PathHeading>
<Transition>down</Transition>
<RoadName>false</RoadName>
</RouteInstruction>
</routeInstructions>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_001o-0002">
<RoutePointRef version="any" ref="hde:RteP021"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001o@RteP021+SSP0002B_a"/>
<routeInstructions>
<RouteInstructionRef ref="ri1" version="any"/>
</routeInstructions>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_001o-0003">
<ScheduledStopPointRef version="032" ref="hde:SSP0002B_a"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001o@SSP0001B_a+RteP022"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_001o-0004">
<RoutePointRef version="any" ref="hde:RteP022"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001o@RteP022+RteP025"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_001o-0005">
<RoutePointRef version="any" ref="hde:RteP025"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001o@RteP025+SSP0003C_a"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_001o-0006">
<ScheduledStopPointRef version="015" ref="hde:SSP0003C_a"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001o@SSP0003C_a5+SSP0003D"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_001o-0007">
<ScheduledStopPointRef version="015" ref="hde:SSP0004D"/>
</PointOnRoute>
</pointsInSequence>
</Route>
<!-- links for route Rt001i -->
<Route version="any" created="2010-12-17T09:30:47.0Z" changed="2002-12-17T09:30:47.0Z" responsibilitySetRef="hde:RS_22" id="hde:RT001i">
<Name>Route 66b inbound</Name>
<LineRef version="any" ref="mybus:0066"/>
<DirectionType>inbound</DirectionType>
<pointsInSequence>
<PointOnRoute version="any" id="mybus:RPIS_001i-0001">
<ScheduledStopPointRef version="015" ref="hde:SSP0004D"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001i_01"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_001i-0002">
<ScheduledStopPointRef version="015" ref="hde:SSP0003C_b"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001i_02"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_001i-0003">
<RoutePointRef version="any" ref="hde:RteP025"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001i_03"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_001i-0004">
<RoutePointRef version="any" ref="hde:RteP022"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001i_04"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_001i-0005">
<ScheduledStopPointRef version="032" ref="hde:SSP0002B_b"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001i_05"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_001i-0006">
<RoutePointRef version="any" ref="hde:RteP021"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001i_06"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_001i-0007">
<ScheduledStopPointRef version="032" ref="hde:SSP0001A"/>
</PointOnRoute>
</pointsInSequence>
</Route>
<Route version="any" created="2010-12-17T09:30:47.0Z" changed="2002-12-17T09:30:47.0Z" responsibilitySetRef="hde:RS_22" id="hde:RT002o">
<Name>Route 66b outbound</Name>
<LineRef version="any" ref="mybus:0066"/>
<DirectionType>outbound</DirectionType>
<pointsInSequence>
<PointOnRoute version="any" id="mybus:RPIS_002o-0001">
<ScheduledStopPointRef version="032" ref="hde:SSP0001A"/>
<OnwardRouteLinkRef version="any" ref="hde:hde:RL_001o@SSP0001A+RteP021"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_002o-0002">
<RoutePointRef version="any" ref="hde:RteP021"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001o@RteP021+SSP0002B_a"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_002o-0003">
<ScheduledStopPointRef version="032" ref="hde:SSP0002B_a"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001o@SSP0001B_a+RteP022"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_002o-0004">
<RoutePointRef version="any" ref="hde:RteP022"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001o@RteP022+RteP025"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_002o-0005">
<RoutePointRef version="any" ref="hde:RteP025"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001o@RteP025+SSP0003C_a"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_002o-0006">
<ScheduledStopPointRef version="015" ref="hde:SSP0003C_a"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_002o_06"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_002o-0007">
<ScheduledStopPointRef version="015" ref="hde:SSP0005E"/>
</PointOnRoute>
</pointsInSequence>
</Route>
<Route version="any" created="2010-12-17T09:30:47.0Z" changed="2002-12-17T09:30:47.0Z" responsibilitySetRef="hde:RS_22" id="hde:RT002i">
<Name>Route 66b inbound</Name>
<LineRef version="any" ref="mybus:0066"/>
<DirectionType>inbound</DirectionType>
<pointsInSequence>
<PointOnRoute version="any" id="mybus:RPIS_002i_001-0001">
<ScheduledStopPointRef version="015" ref="hde:SSP0005E"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_002i_01"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_002i_002-0002">
<ScheduledStopPointRef version="015" ref="hde:SSP0003C_b"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001i_02"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_002i_003-0003">
<RoutePointRef version="any" ref="hde:RteP025"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001i_03"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_002i_004-0004">
<RoutePointRef version="any" ref="hde:RteP022"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001i_04"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_002i_005-0005">
<ScheduledStopPointRef version="032" ref="hde:SSP0002B_b"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001i_05"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_002i_006-0006">
<RoutePointRef version="any" ref="hde:RteP021"/>
<OnwardRouteLinkRef version="any" ref="hde:RL_001i_06"/>
</PointOnRoute>
<PointOnRoute version="any" id="mybus:RPIS_002i_007-0007">
<ScheduledStopPointRef version="032" ref="hde:SSP0001A"/>
</PointOnRoute>
</pointsInSequence>
</Route>
</routes>
<commonSections>
<!--- ===SCommon Section ========= -->
<CommonSection version="any" id="hde:CSc001o_JP">
<Name>A - B - C Common Section: Journey {atterb</Name>
<usedIn>
<LinkSequenceRef version="any" xsi:type="JourneyPatternRefStructure" ref="hde:JP001o"/>
</usedIn>
<pointsOnSection>
<PointOnSection version="1" id="hde:CSc001o_JP-1">
<ScheduledStopPointRef version="032" ref="hde:SSP0001A"/>
<ServiceLinkRef version="001" ref="hde:SL_SSP0001A-SSP0002B_a"/>
</PointOnSection>
<PointOnSection version="1" id="hde:CSc001o_JP-2">
<ScheduledStopPointRef version="032" ref="hde:SSP0002B_a"/>
<ServiceLinkRef version="001" ref="hde:SL_SSP0002B_a-SSP0003C_a"/>
</PointOnSection>
<PointOnSection version="1" id="hde:CSc001o_JP-3">
<ScheduledStopPointRef version="015" ref="hde:SSP0003C_a"/>
</PointOnSection>
</pointsOnSection>
</CommonSection>
<CommonSection version="any" responsibilitySetRef="hde:RS_22" id="hde:CSc001i_JP">
<Name>C - B - A Common Section: Journey {atterb</Name>
<usedIn>
<LinkSequenceRef version="any" xsi:type="JourneyPatternRefStructure" ref="hde:JP001i"/>
<LinkSequenceRef xsi:type="JourneyPatternRefStructure" ref="hde:JP002i"/>
</usedIn>
<pointsOnSection>
<PointOnSection version="1" id="hde:CSc001i_JP-1">
<ScheduledStopPointRef version="015" ref="hde:SSP0003C_a"/>
<ServiceLinkRef version="001" ref="hde:SL_SSP0003C_b-SSP0002B_b"/>
</PointOnSection>
<PointOnSection version="1" id="hde:CSc001i_JP-2">
<ScheduledStopPointRef version="032" ref="hde:SSP0002B_a"/>
<ServiceLinkRef version="001" ref="hde:SL_SSP0002B_b-SSP0001A"/>
</PointOnSection>
<PointOnSection version="1" id="hde:CSc001i_JP-3">
<ScheduledStopPointRef version="032" ref="hde:SSP0001A"/>
</PointOnSection>
</pointsOnSection>
</CommonSection>
<!--- ===SCommon Section ========= -->
<CommonSection version="any" responsibilitySetRef="hde:RS_22" id="hde:CSc001o_Rt">
<Name>A - B - C Common Section: Rt</Name>
<usedIn>
<RouteRef version="any" ref="hde:RT001o"/>
<RouteRef version="any" ref="hde:RT002o"/>
</usedIn>
<pointsOnSection>
<PointOnSection version="1" id="hde:CSc001o_Rt-1">
<ScheduledStopPointRef version="032" ref="hde:SSP0001A"/>
<RouteLinkRef version="any" ref="hde:hde:RL_001o@SSP0001A+RteP021"/>
</PointOnSection>
<PointOnSection version="1" id="hde:CSc001o_Rt-2">
<RoutePointRef version="any" ref="hde:RteP021"/>
<RouteLinkRef version="any" ref="hde:RL_001o@RteP021+SSP0002B_a"/>
</PointOnSection>
<PointOnSection version="1" id="hde:CSc001o_Rt-3">
<ScheduledStopPointRef version="032" ref="hde:SSP0002B_a"/>
<RouteLinkRef version="any" ref="hde:RL_001o@SSP0001B_a+RteP022"/>
</PointOnSection>
<PointOnSection version="1" id="hde:CSc001o_Rt-4">
<RoutePointRef version="any" ref="hde:RteP022"/>
<RouteLinkRef version="any" ref="hde:RL_001o@RteP022+RteP025"/>
</PointOnSection>
<PointOnSection version="1" id="hde:CSc001o_Rt-5">
<RoutePointRef version="any" ref="hde:RteP025"/>
<RouteLinkRef version="any" ref="hde:RL_001o@RteP025+SSP0003C_a"/>
</PointOnSection>
<PointOnSection version="1" id="hde:CSc001o_Rt-6">
<ScheduledStopPointRef version="015" ref="hde:SSP0003C_a"/>
</PointOnSection>
</pointsOnSection>
</CommonSection>
<CommonSection version="any" responsibilitySetRef="hde:RS_22" id="hde:CSc001i_Rt">
<Name>C - B - A Common Section: Rt</Name>
<usedIn>
<RouteRef version="any" ref="hde:RT001i"/>
<RouteRef version="any" ref="hde:RT002i"/>
</usedIn>
<pointsOnSection>
<PointOnSection version="1" id="hde:CSc001i_Rt-1">
<ScheduledStopPointRef version="015" ref="hde:SSP0003C_b"/>
<RouteLinkRef version="any" ref="hde:RL_001i_02"/>
</PointOnSection>
<PointOnSection version="1" id="hde:CSc001i_Rt-2">
<RoutePointRef version="any" ref="hde:RteP025"/>
<RouteLinkRef version="any" ref="hde:RL_001i_03"/>
</PointOnSection>
<PointOnSection version="1" id="hde:CSc001i_Rt-3">
<RoutePointRef version="any" ref="hde:RteP022"/>
<RouteLinkRef version="any" ref="hde:RL_001i_04"/>
</PointOnSection>
<PointOnSection version="1" id="hde:CSc001i_Rt-4">
<ScheduledStopPointRef version="032" ref="hde:SSP0002B_b"/>
<RouteLinkRef version="any" ref="hde:RL_001i_05"/>
</PointOnSection>
<PointOnSection version="1" id="hde:CSc001i_Rt-5">
<RoutePointRef version="any" ref="hde:RteP021"/>
<RouteLinkRef version="any" ref="hde:RL_001i_06"/>
</PointOnSection>
<PointOnSection version="1" id="hde:CSc001i_Rt-6">
<ScheduledStopPointRef version="032" ref="hde:SSP0001A"/>
</PointOnSection>
</pointsOnSection>
</CommonSection>
</commonSections>
<!--- ============ ============= -->
<lines>
<Line version="any" created="2010-12-17T09:30:47.0Z" changed="2002-12-17T09:30:47.0Z" responsibilitySetRef="mybus:RS_10" id="mybus:0066">
<Name>Line 66</Name>
<OperatorRef version="any" ref="mybus:Org_TL001"/>
<Presentation>
<ColourName>yellow</ColourName>
</Presentation>
</Line>
</lines>
</ServiceFrame>
<!--- =====FRAME WITH SCHEDULED STOP POINTs========= -->
<ServiceFrame version="1.0" responsibilitySetRef="mybus:RS_10" id="mybus:SVC_01@network">
<Name>My Network Version 5 with three stops in it </Name>
<FrameDefaults>
<DefaultResponsibilitySetRef version="2.0" ref="mybus:RS_10"/>
</FrameDefaults>
<prerequisites>
<ServiceFrameRef version="1.0" ref="mybus:SVC_01@routes"/>
</prerequisites>
<!--- ============ ============= -->
<scheduledStopPoints>
<!--- === SCHEDULED STOP POINTs Point============ -->
<ScheduledStopPoint version="032" created="2000-12-17T09:30:47.0Z" changed="2002-12-17T09:30:47.0Z" id="hde:SSP0001A">
<Name>Haltstelle A</Name>
<Location>
<Longitude>-180</Longitude>
<Latitude>+53</Latitude>
</Location>
<Label>Towards C</Label>
</ScheduledStopPoint>
<ScheduledStopPoint version="032" created="2010-12-17T09:30:47.0Z" id="hde:SSP0002B_a">
<Name>Haltstelle Ba</Name>
<Location>
<Longitude>-180</Longitude>
<Latitude>+53</Latitude>
</Location>
<Label>Towards C</Label>
</ScheduledStopPoint>
<ScheduledStopPoint version="032" created="2010-12-17T09:30:47.0Z" id="hde:SSP0002B_b">
<Name>Haltstelle Bb</Name>
<Location>
<Longitude>-180</Longitude>
<Latitude>+53</Latitude>
</Location>
<Label>TowardsA</Label>
</ScheduledStopPoint>
<ScheduledStopPoint version="015" created="2001-06-17T09:30:47.0Z" changed="2002-12-17T09:30:47.0Z" id="hde:SSP0003C_a">
<Name>Haltstelle Ca</Name>
<Location>
<Longitude>-180</Longitude>
<Latitude>+53</Latitude>
</Location>
<Label>Towards D</Label>
</ScheduledStopPoint>
<ScheduledStopPoint version="015" created="2001-06-17T09:30:47.0Z" changed="2002-12-17T09:30:47.0Z" id="hde:SSP0004D">
<Name>Haltstelle D</Name>
<Location>
<Longitude>-180</Longitude>
<Latitude>+53</Latitude>
</Location>
</ScheduledStopPoint>
<!--- === Point============ -->
<ScheduledStopPoint version="015" created="2010-12-17T09:30:47.0Z" id="hde:SSP0003C_b">
<Name>Haltstelle Cb</Name>
<Location>
<Longitude>-180</Longitude>
<Latitude>+53</Latitude>
</Location>
<Label>Towards A</Label>
</ScheduledStopPoint>
<ScheduledStopPoint version="015" created="2001-06-17T09:30:47.0Z" changed="2002-12-17T09:30:47.0Z" id="hde:SSP0005E">
<Name>Haltstelle D</Name>
<Location>
<Longitude>-180</Longitude>
<Latitude>+53</Latitude>
</Location>
</ScheduledStopPoint>
</scheduledStopPoints>
<serviceLinks>
<!-- ============SERVICE LINKs ==vP001o=========-->
<ServiceLink version="001" created="2010-12-17T09:30:47.0Z" id="hde:SL_SSP0001A-SSP0002B_a">
<Name>A to B </Name>
<FromPointRef version="032" ref="hde:SSP0001A"/>
<ToPointRef version="032" ref="hde:SSP0002B_a"/>
</ServiceLink>
<ServiceLink version="001" created="2010-12-17T09:30:47.0Z" id="hde:SL_SSP0002B_a-SSP0003C_a">
<Name>B to C </Name>
<FromPointRef version="032" ref="hde:SSP0002B_a"/>
<ToPointRef version="015" ref="hde:SSP0003C_a"/>
</ServiceLink>
<ServiceLink version="001" created="2010-12-17T09:30:47.0Z" id="hde:SL_SSP0003C_a-SSP0004D">
<Name>C to D</Name>
<FromPointRef version="015" ref="hde:SSP0003C_a"/>
<ToPointRef version="015" ref="hde:SSP0004D"/>
</ServiceLink>
<!-- ============SERVICE LINKs ==vP001i========-->
<ServiceLink version="001" created="2010-12-17T09:30:47.0Z" id="hde:SL_SSP0004D-SSP0003C_b">
<Name>D to C</Name>
<FromPointRef version="015" ref="hde:SSP0004D"/>
<ToPointRef version="015" ref="hde:SSP0003C_b"/>
</ServiceLink>
<ServiceLink version="001" created="2010-12-17T09:30:47.0Z" id="hde:SL_SSP0003C_b-SSP0002B_b">
<Name>C to B</Name>
<FromPointRef version="015" ref="hde:SSP0003C_b"/>
<ToPointRef version="032" ref="hde:SSP0002B_b"/>
</ServiceLink>
<ServiceLink version="001" created="2010-12-17T09:30:47.0Z" id="hde:SL_SSP0002B_b-SSP0001A">
<Name>B to A</Name>
<FromPointRef version="032" ref="hde:SSP0002B_b"/>
<ToPointRef version="032" ref="hde:SSP0001A"/>
</ServiceLink>
<ServiceLink version="001" created="2010-12-17T09:30:47.0Z" id="hde:SL_SSP0003C_a-SSP0005E">
<Name>C to E</Name>
<FromPointRef version="015" ref="hde:SSP0003C_a"/>
<ToPointRef version="015" ref="hde:SSP0005E"/>
</ServiceLink>
<ServiceLink version="001" created="2010-12-17T09:30:47.0Z" id="hde:SL_SSP0005E-SSP0003C_b">
<Name>E to C</Name>
<FromPointRef version="015" ref="hde:SSP0005E"/>
<ToPointRef version="015" ref="hde:SSP0003C_b"/>
</ServiceLink>
</serviceLinks>
<!--- ====SERVICE PATTERN======== -->
<servicePatterns>
<!-- ===/links -->
<!--- ============ ============= -->
<ServicePattern version="003" created="2010-12-17T09:30:47.0Z" changed="2002-12-17T09:30:47.0Z" id="hde:SvP001o">
<Name>Aa - Ba - Ca - D</Name>
<RouteRef version="any" ref="hde:RT001o"/>
<pointsInSequence>
<StopPointInJourneyPattern version="003" id="hde:SvPip_001o_01-1">
<ScheduledStopPointRef version="032" ref="hde:SSP0001A"/>
<ForAlighting>false</ForAlighting>
<ForBoarding>true</ForBoarding>
</StopPointInJourneyPattern>
<StopPointInJourneyPattern version="003" id="hde:SvPip_001o_02-2">
<ScheduledStopPointRef version="032" ref="hde:SSP0002B_a"/>
<ForAlighting>true</ForAlighting>
<ForBoarding>true</ForBoarding>
</StopPointInJourneyPattern>