a problem with timetable with my own route

General discussions

Moderator: senjer

User avatar
MP 85
Posts: 546
Joined: 02 Jan 2017, 16:11
Location: France

Re: a problem with timetable with my own route

Post by MP 85 »

Metro line B and line C must stop at Tussenvelden ?
Image
Atomic_WinsS
Posts: 129
Joined: 26 Apr 2017, 12:30

Re: a problem with timetable with my own route

Post by Atomic_WinsS »

yeah and then arrive to sdwk1 and depart do tussenvelden platfrom 1 to lelywaard
Atomic_WinsS
Posts: 129
Joined: 26 Apr 2017, 12:30

Re: a problem with timetable with my own route

Post by Atomic_WinsS »

or 2
it is the case wich line it is
User avatar
MP 85
Posts: 546
Joined: 02 Jan 2017, 16:11
Location: France

Re: a problem with timetable with my own route (Resolved)

Post by MP 85 »

I managed to fix the errors that I found in the ctd file.
You forgot to create a direction from Lelywaard to Tussenvelden In the ctd file. It is because of this error that trains do not go on track sdwk1. ;)

Code: Select all

<route code="C-LF" end="168,171" totaltime="510" reversetime="30" scrollsign="c-tvd">
 <aimarkers>
  <marker block="228" marker="228-2"/>
  <marker block="231" marker="231-2"/>
 </aimarkers>
 <times>
  <depart platform="LEL2" time="   0"  destinationcode="40" station="lel"  actions="stop"           stops="lel1,lel2"/>
  <stop   platform="OPK3" time=" 120"  destinationcode="40" station="opk"  actions="stop"           stops="opk1,opk2,opk3"/>
  <stop   platform="PLN2" time=" 195"  destinationcode="40" station="pln"  actions="stop"           stops="pln1,pln2"/>
  <stop   platform="EDW2" time=" 285"  destinationcode="40" station="edw"  actions="stop"           stops="edw1,edw2"/>
  <stop   platform="DMW2" time=" 360"  destinationcode="40" station="dmw"  actions="stop"           stops="dmw1,dmw2"/>
  <stop   platform="TVD4" time=" 450"  destinationcode="40" station="tvd"  actions="stop"           stops="tvd1,tvd4"/>
  <stop   platform="SDWK1" time=" 510"  destinationcode="1" station="sdwk"  actions="stop,reverse"           stops="sdwk1,sdwk2"/>
 </times>
</route>
In your activity there was no subway going to Tussenvelden On line C, I made two small edition on your activity.
I managed to solve the errors I found. ;)
Custom Routes.zip
Your Activity
(15.27 KiB) Downloaded 186 times
On the other hand towards Tussenvelden, I found a bug on a switch on the CVL, Even in explorer mode.
Attachments
CVL Problem TVD2.PNG
CVL Problem TVD2.PNG (4.04 KiB) Viewed 4906 times
Image
Atomic_WinsS
Posts: 129
Joined: 26 Apr 2017, 12:30

Re: a problem with timetable with my own route

Post by Atomic_WinsS »

thank you very much bro i am gonna help you when you need me
Atomic_WinsS
Posts: 129
Joined: 26 Apr 2017, 12:30

Re: a problem with timetable with my own route

Post by Atomic_WinsS »

oo yeah did you see that when your at molens you see simvliet centrum i am sure there would be tussenvelden in the systeem
User avatar
MP 85
Posts: 546
Joined: 02 Jan 2017, 16:11
Location: France

Re: a problem with timetable with my own route

Post by MP 85 »

Atomic_WinsS wrote: 27 Jun 2017, 19:39 oo yeah did you see that when your at molens you see simvliet centrum i am sure there would be tussenvelden in the systeem

Code: Select all

<route code="B-MD" end="328,171" totaltime="855" reversetime="30" scrollsign="b-tvd">
 <aimarkers>
  <marker block="327" marker="327-2"/>
  <marker block="328" marker="328-2"/>
 </aimarkers>
 <times>
  <depart platform="MLS1" time="   0"  destinationcode="31" station="mls"  actions="stop"           stops="mls1,mls2"/>
  <stop   platform="WTL2" time="  90"  destinationcode="31" station="wtl"  actions="stop"           stops="wtl1,wtl2"/>
  <stop   platform="RZP2" time=" 165"  destinationcode="31" station="rzp"  actions="stop"           stops="rzp1,rzp2"/>
  <stop   platform="BLN2" time=" 240"  destinationcode="31" station="bln"  actions="stop"           stops="bln1,bln2"/>
  <stop   platform="TVD3" time=" 390"  destinationcode="31" station="tvd"  actions="stop"           stops="tvd2,tvd3"/>
  <arrive platform="SDWK1" time="  0"  destinationcode="34" station="sdwk" actions="stop"           stops="sdwk1,sdwk2"/>
  </times>
 </route>
I took a look, and there is a wrong destination code. "31" the DRIM will indicate B Simvilet Centrum, "34" the DRIM will indicate B Tussenvelden.

Code: Select all

<destinations>
  DRIM codes:
  B Simvliet Airport  30
  B Simvliet Centrum  31
  B De Bergen         32
  B Stadionweg        33
  B Tussenvelden      34
  B De Molens         35
Replace destinationcode="31" with "34"

Code: Select all

<route code="B-MD" end="328,171" totaltime="855" reversetime="30" scrollsign="b-tvd">
 <aimarkers>
  <marker block="327" marker="327-2"/>
  <marker block="328" marker="328-2"/>
 </aimarkers>
 <times>
  <depart platform="MLS1" time="   0"  destinationcode="34" station="mls"  actions="stop"           stops="mls1,mls2"/>
  <stop   platform="WTL2" time="  90"  destinationcode="34" station="wtl"  actions="stop"           stops="wtl1,wtl2"/>
  <stop   platform="RZP2" time=" 165"  destinationcode="34" station="rzp"  actions="stop"           stops="rzp1,rzp2"/>
  <stop   platform="BLN2" time=" 240"  destinationcode="34" station="bln"  actions="stop"           stops="bln1,bln2"/>
  <stop   platform="TVD3" time=" 390"  destinationcode="1" station="tvd"  actions="stop"           stops="tvd2,tvd3"/>
  <arrive platform="SDWK1" time="  0"  destinationcode="1" station="sdwk" actions="stop"           stops="sdwk1,sdwk2"/>
  </times>
 </route>
Image
Atomic_WinsS
Posts: 129
Joined: 26 Apr 2017, 12:30

Re: a problem with timetable with my own route

Post by Atomic_WinsS »

fixed it thank you very much
Atomic_WinsS
Posts: 129
Joined: 26 Apr 2017, 12:30

Re: a problem with timetable with my own route

Post by Atomic_WinsS »

am i suppose to get this

http://prntscr.com/fp5dh2
Post Reply