Question on the Golders Oak Junctions

General discussions

Moderator: senjer

Post Reply
NJTFAN1235!
Posts: 217
Joined: 16 Apr 2023, 15:30

Question on the Golders Oak Junctions

Post by NJTFAN1235! »

So in the Golders Oak Junctions on the Purple Line, in default, the junction is set to DV.

Code: Select all

  
  <group id="GDO1">
   <mode id="DV">
    <fixedblock start="6086" end="6090"/>
    <fixedblock start="6087" end="6083"/>
   </mode>
   <mode id="FE" allowcreate="true"/>
  </group>
  <group id="GDO3">
   <mode id="DV">
    <fixedblock start="3194" end="3202"/>
    <fixedblock start="3201" end="3195"/>
    <fixedblock start="6092" end="6102"/>
    <fixedblock start="6101" end="6089"/>
   </mode>
   <mode id="FE" allowcreate="true"/>
  </group>
I want to change this to have trains that operated via the Yellow Line to stop at the Blue Line stations on the way, is there a way to change it?
User avatar
Sjoerd
Posts: 5678
Joined: 26 Dec 2014, 21:14
Location: Alphen aan den Rijn

Re: Question on the Golders Oak Junctions

Post by Sjoerd »

Code: Select all

 <group id="GDO3">
   <mode id="AB">
    <autoblock start="3194">
     <start>3136</start>
     <end end="3202" free="3202"/>
    </autoblock>
    <autoblock start="6092">
     <start>6090</start>
     <end end="3202" free="3202"/>
    </autoblock>
    <autoblock start="6101">
     <start>6103</start>
     <end end="6089" free="6089"/>
    </autoblock>
    <autoblock start="3201"  lines="6">
     <start>3203</start>
     <end end="6089" free="6089"/>
    </autoblock>
    <autoblock start="3201"  lines="3">
     <start>3203</start>
     <end end="3195" free="3195"/>
    </autoblock>
   </mode>
   <mode id="FE" allowcreate="true"/>
  </group>
CEO of the Rijndam Electrical Transport company :D
NJTFAN1235!
Posts: 217
Joined: 16 Apr 2023, 15:30

Re: Question on the Golders Oak Junctions

Post by NJTFAN1235! »

Sjoerd wrote: 27 Apr 2024, 15:14

Code: Select all

 <group id="GDO3">
   <mode id="AB">
    <autoblock start="3194">
     <start>3136</start>
     <end end="3202" free="3202"/>
    </autoblock>
    <autoblock start="6092">
     <start>6090</start>
     <end end="3202" free="3202"/>
    </autoblock>
    <autoblock start="6101">
     <start>6103</start>
     <end end="6089" free="6089"/>
    </autoblock>
    <autoblock start="3201"  lines="6">
     <start>3203</start>
     <end end="6089" free="6089"/>
    </autoblock>
    <autoblock start="3201"  lines="3">
     <start>3203</start>
     <end end="3195" free="3195"/>
    </autoblock>
   </mode>
   <mode id="FE" allowcreate="true"/>
  </group>
Why thanks! ;)
Post Reply