Page 1 of 1

Question on the Golders Oak Junctions

Posted: 25 Apr 2024, 20:32
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?

Re: Question on the Golders Oak Junctions

Posted: 27 Apr 2024, 15:14
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>

Re: Question on the Golders Oak Junctions

Posted: 27 Apr 2024, 20:02
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! ;)