<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>modelrail.otenko</title>
	<atom:link href="http://modelrail.otenko.com/feed" rel="self" type="application/rss+xml" />
	<link>http://modelrail.otenko.com</link>
	<description>trains....</description>
	<lastBuildDate>Sun, 15 Apr 2012 08:12:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>First CAN Node: LEDs and Sensors</title>
		<link>http://modelrail.otenko.com/arduino/first-can-node-leds-and-sensors</link>
		<comments>http://modelrail.otenko.com/arduino/first-can-node-leds-and-sensors#comments</comments>
		<pubDate>Sun, 15 Apr 2012 08:12:50 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[can controller]]></category>
		<category><![CDATA[Code / Electronics]]></category>
		<category><![CDATA[max7219]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2676</guid>
		<description><![CDATA[Despite my layout being tiny, I've decided that my layout will need two nodes. One will do the sensing of trains + management of LEDs and the other will control the throttle, points and isolation. I've now finished the building and wiring of the first node. One note for below: I've used Frame IDs to [...]]]></description>
			<content:encoded><![CDATA[<p>Despite my layout being tiny, I've decided that my layout will need two nodes. One will do the sensing of trains + management of LEDs and the other will control the throttle, points and isolation. I've now finished the building and wiring of the first node. One note for below: I've used Frame IDs to differentiate the messages across the network; unique numbers are used to define the message type and each node will have filters applied to only receive nodes that are specifically for them.</p>
<h2>Detecting Trains</h2>
<p>Train sensing has been implemented via light sensors. I needed 24 sensors around the track and decided that multiplexing was the only way to read them all. 3x 4051 ICs came in handy and were configured as per the schematic below. <a href='http://modelrail.otenko.com/arduino/multiplexing-photodetectors-to-detect-train-occupancy'>You can find a better explanation on light sensor implementation in the article here</a>.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10665?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="LED+Sensors CAN Node"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10665?size=thumb" alt="LED+Sensors CAN Node"></a></p>
<p>I've simplified the code for reading the sensors as I'll ensure all of them have sufficient lighting and therefore 'stable' values. The circuit waits a second after power-up to read the initial sensor values. It then marks each one as 'active' if the value is greater than 20 'points' above the initial value. If a reading comes in lower then the initially read value then that value is lowered accordingly. I've also created a special command (frame id: 0x333) to allow a reset of all sensor values (specifically if ambient light proves a problem.)</p>
<p>The node sends out the sensor values and then pauses 100ms. The CAN packet with sensor data has the frame ID 0x111 and then fills three bytes with the 24 sensors states. A '1' is used for occupied and a '0' for vacant. The message will be received by any node on the network with the appropriate filters set.</p>
<h2>Controlling LEDs</h2>
<p>To control the LEDs I've re-used the previous MAX7219 ICs that I had lying around. <a href='http://modelrail.otenko.com/arduino/controlling-lots-of-leds-with-your-arduino'>There's a much more in-depth article here on how to use this chip</a>. The MAX7219 requires three wires to the Arduino... but I'd already used up all the digital pins. Fortunately you can use the Analog pins just as easily.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10666?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="LEDs on new layout"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10666?size=thumb" alt="LEDs on new layout"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10667?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="LEDs on new layout"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10667?size=thumb" alt="LEDs on new layout"></a></p>
<p>As the MAX7219 can receive bytes per row to control the LEDs I simply pass through the data from the CAN bus when appropriate. It would only take one CAN message as they contain 8 bytes of data. The Frame ID for this message is 0x222. You can see that I'm being pretty wasteful with Frame IDs but, fortunately, I don't have many specific messages to send.</p>
<h2>Completed Sensor+LED Node</h2>
<p>So, it was soldered and wired... quite a mess really. The CAN Controller was on-board but there was no 'direct communications' interface to the PC. This meant I had to pop the chip out (atmega328) each time I wanted to change the code... tedious and dangerous!! I managed to bend pins and confuse myself every now and then. Don't do this at home!</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10668?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="SENSOR+LED Node"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10668?size=thumb" alt="SENSOR+LED Node"></a></p>
<h2>Controller Node</h2>
<p>I've got a third node hooked up to the computer via my trusty old Arduino Mega. This node transmits data from the CAN Bus to the PC via the standard serial-over-USB connection. A .NET application then shows the layout and allows you to interact with the LEDs and sensors accordingly. It shows the status of the sensors at any point in time and allows you to create rules in a sequence which can determine the speed and direction of the train.</p>
<p>The physical design of this node is simply the Arduino Mega plus the CAN schematic as seen <a href='http://modelrail.otenko.com/arduino/arduino-controller-area-network-can'>in my previous blog post on implementing the MCP2515 controller</a>.</p>
<pre class="brush: c">
  if (CAN.buffer0DataWaiting()) {
    CAN.readDATA_ff_0(&#038;length,frame_data,&#038;frame_id, &#038;ext, &#038;filter);
    Serial.write("X");
    Serial.write(frame_data[0]);
    Serial.write(frame_data[1]);
    Serial.write(frame_data[2]);
  }

  while (Serial.available() >= 9) {
    // read the incoming byte:
    b = Serial.read();
    if (b == 'L') {
      for (int i = 0; i < 8; i++) frame_data[i] = Serial.read();
      frame_id = 0x222;
      CAN.load_ff_0(8, &#038;frame_id, frame_data, false);
    } else if (b == 'D') {
      for (int i = 0; i < 8; i++) frame_data[i] = Serial.read();
      frame_id = 0x666;
      CAN.load_ff_0(8, &#038;frame_id, frame_data, false);
      //printBuf(frame_id, frame_data);
    } else if (b == 'R') {
      for (int i = 0; i < 8; i++) frame_data[i] = Serial.read();
      frame_id = 0x333;
      CAN.load_ff_0(8, &#038;frame_id, frame_data, false);
    } else if (b == 'P') {
      for (int i = 0; i < 8; i++) frame_data[i] = Serial.read();
      frame_id = 0x777;
      CAN.load_ff_0(8, &#038;frame_id, frame_data, false);
    }
  }
</pre>
<h2>LED+Sensor Node Code</h2>
<p>The sensor code consisted of an initial sensor read and then constant sensor checking. The sensors were then determined to be either 'occupied' or 'vacant' and then the data was sent. There are no 'smarts' here... the sensor data is simply hammered over the network.</p>
<p>The receive buffers are also checked for a Frame ID of 0x222 or 0x333. The filters are set appropriately to ensure that only these messages trigger the interrupts. The LED data is sent to the MAX7219 controller on the 0x222 message and the sensors are reset on 0x333.</p>
<pre class="brush: c">
void loop() {
  send_data[0] = 0;
  send_data[1] = 0;
  send_data[2] = 0;
  for (sens = 0; sens < 8; sens++) {
    setOutputBit(sens);
    sensor_read = readInput(0);
    if (sensor_read < sensor[sens]) sensor[sens] = sensor_read;
    send_data[0] |= (((20 + sensor[sens])      <= sensor_read) << sens);
    sensor_read = readInput(1);
    if (sensor_read < sensor[sens]) sensor[sens] = sensor_read;
    send_data[1] |= (((20 + sensor[sens + 8])  <= sensor_read) << sens);
    sensor_read = readInput(2);
    if (sensor_read < sensor[sens]) sensor[sens] = sensor_read;
    send_data[2] |= (((20 + sensor[sens + 16]) <= sensor_read) << sens);
  }
  frame_id = 0x111;
  CAN.load_ff_0(3, &#038;frame_id, send_data, false);

  frame_data[0] = 0;

  data1 = CAN.buffer0DataWaiting();
  data2 = CAN.buffer1DataWaiting();

  if (data1 || data2) {
    if (data1) CAN.readDATA_ff_0(&#038;length, frame_data, &#038;frame_id, &#038;ext, &#038;filter);
    if (data2) CAN.readDATA_ff_1(&#038;length, frame_data, &#038;frame_id, &#038;ext, &#038;filter);

    if (frame_id == 0x222) {
      for (int i = 0; i < 8; i++) lcl.setRow(0, i, frame_data[i]);
    } else if (frame_id == 0x333) {
      for (sens = 0; sens < 8; sens++) {
        setOutputBit(sens);
        sensor[sens] = readInput(0);
        sensor[sens + 8] = readInput(1);
        sensor[sens + 16] = readInput(2);
      }
    }
 }
 delay(100);
}
</pre>
<h2>Controller Node Code</h2>
<p>The controller was the middle-man for translating PC code to the CAN bus and vice-versa. Sensor data from the CAN bus was converted to serial data with a leading 'X' byte. On the contrary LED commands were received from the PC with a leading 'L' byte. The following 8 bytes were sent as a single message onto the CAN bus once this character was seen.</p>
<pre class="brush: c">
    using System.IO.Ports;
    SerialPort _serialPort;

    private void SetupComPort() {
        _serialPort = new SerialPort("COM3", 9600, Parity.None, 8, StopBits.One);
        _serialPort.Handshake = Handshake.None;
        _serialPort.DataReceived += new SerialDataReceivedEventHandler(HandleData);
        _serialPort.Open();
    }

    private void cb_CheckedChanged(object sender, EventArgs e)
    {
        Byte[] bytesToSend = new Byte[9];
        bytesToSend[0] = (byte)'L';
        for (int i = 0; i < 8; i++) {
            for (int z = 0; z < 8; z++) bytesToSend[i+1] |= (byte)((LEDs[(i*8) + z].Checked ? 1 : 0) << z);
        }
        _serialPort.Write(bytesToSend, 0, 9);
    }

    private void UpdateSpeed()
    {
        Byte[] bytesToSend = new Byte[9];
        bytesToSend[0] = (byte)'D';
        bytesToSend[1] = (byte)(direction ? 1 : 0);
        bytesToSend[2] = (byte)hSpeed.Value;
        bytesToSend[3] = (byte)points[0]; //for loop? probably should.
        bytesToSend[4] = (byte)points[1];
        bytesToSend[5] = (byte)points[2];
        bytesToSend[6] = (byte)points[3];
        bytesToSend[7] = (byte)points[4];
        bytesToSend[8] = (byte)points[5];
        _serialPort.Write(bytesToSend, 0, 9);
        Console.WriteLine("Sent: D" + bytesToSend[1] + "-" + bytesToSend[2]);
    }
</pre>
<h2>Notes learnt from hooking all this up</h2>
<ul>
<li><b>CAN Filters work, but you can still see messages</b><br />
On the CAN controller you can set filters to only allow specific messages through. It actually turns out that, regardless of the filter being set, if you constantly poll either buffer for a message that, if there has been a message sent, it will be available and can be received from the network. Filters simply prevent the message from triggering the 'message waiting in buffer' interrupts. So, the best bet is that you check for a message in a buffer first rather than simply constantly attempt to receive messages. Let the CAN IC tell you that a message is waiting!</li>
<li><b>You can easily spam a CAN network</b><br />
Sending too many messages over the network will delay or prevent transmission of other nodes' messages. One node can send too many messages over the network preventing another from successfully getting messages into a third nodes' buffers. It's all down to how quickly the third node can receive the messages. If both receiving buffers are full then the message will fly on past and not be seen.</li>
<li><b>Inserting and removing ICs</b><br/><br />
PLEASE only do this when you need to and do this with care! Lever them out from both ends and DO NOT just use your fingers. Insert them evenly as well. It's too damn easy to destroy these delicate and expensive components.</li>
</ul>
<p>...next will be a node to control the thottle, isolated blocks and point-servos.</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/arduino/first-can-node-leds-and-sensors/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arduino + Controller Area Network (CAN)</title>
		<link>http://modelrail.otenko.com/arduino/arduino-controller-area-network-can</link>
		<comments>http://modelrail.otenko.com/arduino/arduino-controller-area-network-can#comments</comments>
		<pubDate>Sat, 03 Mar 2012 13:04:47 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[CAN]]></category>
		<category><![CDATA[controller area network]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2625</guid>
		<description><![CDATA[Stolen from Wikipedia: The CAN (controller area network) bus is a vehicle bus standard designed to allow microcontrollers and devices to communicate with each other within a vehicle without a host computer. This bus standard includes it's own messaging protocol for communications between nodes on the network. One of the most popular uses for this [...]]]></description>
			<content:encoded><![CDATA[<p>Stolen from Wikipedia: The <a href='http://en.wikipedia.org/wiki/CAN_bus'>CAN (controller area network) bus</a> is a vehicle bus standard designed to allow microcontrollers and devices to communicate with each other within a vehicle without a host computer. This bus standard includes it's own messaging protocol for communications between nodes on the network.</p>
<p>One of the most popular uses for this technology is in the automobile where the network provides a communication channel between the ECU, Transmission, airbags, braking systems, etc...</p>
<p>As you'll have noticed, I've recently been investigating <a href='http://www.openlcb.net/'>OpenLCB</a> which uses this technology for communications between its nodes on a model railway. The article below will show how the CAN bus can be incorporated with an Arduino to allow communications between different microcontrollers/nodes on your network.</p>
<h2>Topography</h2>
<p>The OpenLCB project dictates that the CAN bus implemented via their standards must not be in the form of a ring. When I initially saw the <a href='http://railstars.com/hardware/io/io-developers-board/'>Railstars:io</a> prototype I expected that a ring would be required; the prototype shows an 'in' and 'out' communications port. Little did I realise that, upon closer inspection, the io could act as a termination point for the CAN bus that it connects to. We therefore will implement a layout as follows on our railways...</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10657?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="can-setup"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10657?size=thumb" alt="can-setup"></a></p>
<p>The OpenLCB project will use standard RJ45 cables (i.e. ethernet cables) due to the requirement of twisted pair technology to guarantee data transmission.</p>
<h2>Interfacing with the Arduino via SPI</h2>
<p>The <a href='http://en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus'>Serial Peripheral Interface</a> is a communication standard used to provide communications between integrated circuits. The Arduino has an SPI library and therefore allows us to easily communicate to the CAN interface.</p>
<p>We'll be using the MCP2515 and MCP2551 integrated circuits to transmit/receive our data from SPI onto the CAN bus. This setup has been done before in <a href='http://www.sparkfun.com/products/10039'>Sparkfun's CAN-BUS Shield</a>, the <a href='http://www.siwawi.arubi.uni-kl.de/avr_projects/can/'>CAN-CAN</a>, the <a href='http://www.kreatives-chaos.com/artikel/universelle-can-bibliothek'>Universal CAN Library (Universelle CAN Bibliothek)</a> and the <a href='http://code.google.com/p/canduino/'>CANduino</a>. The <a href='http://www.siwawi.arubi.uni-kl.de/avr_projects/can/avrmcp_basic2.png' rel="lightbox[2625]">CAN-CAN Schematic</a> and <a href='http://www.sparkfun.com/datasheets/DevTools/Arduino/canbus_shield-v12.pdf'>Sparkfun's schematics</a> provide a great reference point for hooking the whole lot up. Of course, you could also just grab their shield if you don't want to build everything yourself.</p>
<h2>Schematic</h2>
<p>The image below should be pretty self-explanatory. See the next section for the exact pins for the SPI interface. RESET and INT can go to any digital pin.</p>
<div style="margin:16px;">
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10658?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="MCP2515"><img alt="MCP2515" title="MCP2515" src="http://www.otenko.com/gallery3/index.php/rest/data/10658?size=resize"></a>
</div>
<h2>Building, troubleshooting and talking to one's self</h2>
<p>I built two at the same time to be able to test node-to-node communications. There was nothing overly tricky in the construction... I just chose to use relatively tight pcb prototyping boards which didn't leave much room for error. The above schematic was followed and the devices were hooked up to my Arduino(s).</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10660?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Initial board"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10660?size=thumb" alt="Initial board"></a></p>
<p>I tried the <a href='http://code.google.com/p/canduino/source/browse/#svn%2Ftrunk%2FSource%2Fcanduino_DEMO'>loopback test from the canduino project</a> and got random responses... the data going in was not the same as the data coming back. I started the debugging process after letting out a little sigh.</p>
<p>It turns out that, on all Arduinos, <a href='http://arduino.cc/en/Reference/SPI'>the SPI interface can only be used on specific pins</a>:</p>
<table class=datatable>
<tr>
<th>SPI Pin</th>
<th>Arduino Mega</th>
<th>Smaller Arduinos (168,328)</th>
</tr>
<tr>
<td>SS/CS</td>
<td>53</td>
<td>10</td>
</tr>
<tr>
<td>MOSI</td>
<td>51</td>
<td>11</td>
</tr>
<tr>
<td>MISO</td>
<td>50</td>
<td>12</td>
</tr>
<tr>
<td>SCK</td>
<td>52</td>
<td>13</td>
</tr>
</table>
<p>Note that the CAN library also then required a change as the pins in it are hard-coded to a 168/328 Arduino and wouldn't have ever worked with the Mega. You can find my fix for this down below.</p>
<p>I finally had responses after the pins were in the correct locations... but not the responses I wanted to see; I looked at the crystals next. My Arduinos all used 16.000MHZ crystals, but my local hobby shop only had 4mhz, 8mhz or 20mhz. This concerned me and I google'd and google'd to work out if, in the same circuit, multiple ICs could be driven off different oscillation rates. I decided that, since the 'SPI' interface had it's own 'bus rate' and the CAN bus also had it's own 'bus rate' that the crystals therefore did not affect these speeds. Also, the Arduino would dictate the speed of the SPI interface since it was the master (and slower.) I therefore bought 20mhz crystals for the MCP2515 chips, with my fingers crossed. Of course, this could have been the next issue.</p>
<p>Fortunately, from <a href='http://modelrail.otenko.com/arduino/building-an-arduino-from-scratch'>my previous attempts at barebones Arduinos</a>, I had a 16mhz crystal on-hand. I swapped out the 2 capacitors and the 20mhz for the 16mhz and hooked it all up again. Nothing...</p>
<p>So, I then whipped out my Atmega328p 'barebones' Arduino and hooked it up to that. The SPI pins were different, as per above, so I made sure they were correct... and the CAN library from the canduino source had to be modified back to the required pins. After putting it all together I checked the serial output in the Arduino Serial Monitor and saw the correct response. The loop back test was working!</p>
<p>WTH... there was no reason that it should... except that maybe the SPI interface on my Mega was fried? I then, just because I hate caution and feed it to the wind all the time, swapped the 20mhz crystal and capacitors back in. It STILL WORKED! Good... I could keep the 16mhz for my other barebones Arduino.</p>
<p>So... with a known-working CAN node, I swapped it back onto the Mega. WTH... it worked. I now had my CAN nodes (by this time the other node built was also functioning thanks to it's guinea pig brother) talking to themselves. It was time to get them to talk to each other!</p>
<h2>Talking in the CAN</h2>
<p>Hah... there's an unwritten rule to not talk whilst in the toilet, but in our situation we'll make an exception. From the start I'd built the bus and was just itching to get the damn thing transmitting messages. The setup was simple: terminal blocks were used at junctions and standard dodgy speaker wire was the main network cable. 120ohm resistors were the terminators as per the standard CAN specification.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10659?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Terminators"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10659?size=thumb" alt="Terminators"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10661?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="One node setup"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10661?size=thumb" alt="One node setup"></a></p>
<p>The only real issues here were the source code (or my lack of knowledge of how it worked) and the usage of crystals. Yes, they came back to haunt me... it turns out that, whilst I had the loopback going, I'd left a 16mhz on one node and a 20mhz on the other. In the source code you specify the 'CAN Bus Speed' which, of course, was configured the same on both Arduinos. The actual issue was that, when the Arduino told the CAN controller to run at bus speed '1000', the CAN nodes did this but, due to their differing crystals, their calculations of what '1000' meant were incorrect! Since one was running 4mhz faster (20mhz vs. 16mhz) it must've been communicating on the bus at a different rate and therefore confusing the hell out of the other node.</p>
<p>The next issue was the code... I looked over it and thought that each node would take turns in transmitting and recieving... I was wrong: you had to actually set one as the sender and one as the receiver. I configured this based on the Arduino class (by #IFDEF just as the SPI pins were configured) and then had communication! My nodes were live and functional!</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10662?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Communicating"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10662?size=thumb" alt="Communicating"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10663?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="More communications"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10663?size=thumb" alt="More communications"></a></p>
<h2>RX/TX LEDs</h2>
<p>The final step was wanting RX/TX activity LEDs. It turns out that the MCP2515 supports this, but you need to do a little configuration. If you view <a href='http://www.microchip.com/wwwproducts/Devices.aspx?dDocName=en010406'>the datasheet at microchip</a> you'll note that the RXnBF Pins can be configured as 'nothing', 'general outputs' or 'low on RX buffer full'. I was hoping that obe would be 'high on TX buffer', but no such luck. It actually turns out that the chip has two RX buffers and therefore two RXnBF Pins. LEDs attached to these pins will, once configured as per below, illuminate once the associated RX buffer is full. If you ever see both full then you might be losing data?</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10664?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="RX TX LEDs"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10664?size=thumb" alt="RX TX LEDs"></a></p>
<p>Second option: It turns out that in the <a href='http://ww1.microchip.com/downloads/en/DeviceDoc/51757a.pdf'>MCP2515 Demo Board PDF</a> that you can just put two LEDs on the RXCAN(1)/TXCAN(2) pins of the MCP2515. </p>
<p>Third option: It seems that you can also configure the INT pin to fire on TX buffer 'emptying'. You'll have to disable the pin firing on all other error situations to do this. By default, this pin is usually pulled 'high' by the MCU, so you must either disconnect that, use a resistor between the MCU and MCP2515 or just pull the pin high normally via a pullup resistor and then connect an LED in parallel with this to the INT pin. I imagine that in more complicated scenarios you'd actually want to know once the MCP2515 has generated an interrupt. </p>
<h2>IDs: Standard or Extended?</h2>
<p>All messages sent on the network have a 'frame id' of either (standard mode) 11-bits  or (extended mode) 29-bits. It must be understood that this 'frame id' does not actually identify a node! It is simply an identifier for the actual message being transmitted. This identifier can contain any form of information you want; the bits are yours to play with. </p>
<p>One main use for this identifier is to record the intended recipient of the message you are sending. Depending on the amount of nodes in your network (don't forget to think of future scalability!) you can use anywhere up to 29-bits to uniquely identify them. Of course, this identifier could just be used to identify the 'class' of node and then you could put further data in the message to indicate the exact recipient. You could also go the other way and only use a portion of the identifier for the recipient code and have the rest for other uses.</p>
<p>The MCP2515 has in-built filtering to work on the identifier of incoming messages. If you're only using standard mode then the filters also apply to the first two bytes of the message. The filtering works inside the MCP2515 and therefore doesn't saturate your SPI link as the messages are stopped prior to being put into the RX buffer.</p>
<h2>MCP2515 Modes</h2>
<p>There's 5 modes that you can set the MCP2515 into. These are as follows:</p>
<table class=datatable>
<tr>
<th>Mode</th>
<th>Description</th>
</tr>
<tr>
<td>Configuration</td>
<td>This mode allows the developer to update settings. The following settings require this mode to be set first: CNF1,CNF2,CNF3,TXRTSCTRL,MASKS,FILTERS.</td>
</tr>
<tr>
<td>Normal</td>
<td>Standard operating mode. RXM0 and RXM1 per buffer <b>do not</b> apply in this mode. All filters and Masks do apply.</td>
</tr>
<tr>
<td>Sleep</td>
<td>Low-power mode. SPI remains active, and the MCP2515 will wake up if there is activity on the CAN bus if the WAKIE/WAKIF interrupts are enabled. After woken, the chip will be in Listen Mode.</td>
</tr>
<tr>
<td>Listen</td>
<td>Make sure there are two or more nodes on the CAN bus. Whilst in Listen mode, the chip won't output a thing, so if another chip sends a message then the message will constantly circulate on the bus if there is no other node to 'ACK' it. Another node must be there to stop the message transmission. RXM0 and RXM1 per buffer apply in this mode and the masks/filters also do too.</td>
</tr>
<tr>
<td>Loopback</td>
<td>All messages sent are returned via the RX buffers, filtered first. No messages are sent out over the CAN. No messages are received from the CAN.</td>
</tr>
</table>
<h2>Buffers</h2>
<p>It needs to be noted that the MCP2515 has two receiving buffers known as Buffer 0 and Buffer 1. Messages will go to the first if it's free (and not filtered) and then the second. Filters can be set on both, but the second buffer is much more flexible with four filters. </p>
<p>I don't know the exact reason for the MCP2515 containing two buffers, and then why one is more flexibile than the other, but in the end it's up to the developer as to how to use them. Filters can be configured to allow specific message 'types' on each buffer. This then means that, for example, the developer could configure the second buffer to only allow emergency messages such as 'STOP THAT TRAIN' whilst the first deals with the standard communications.</p>
<h2>Filtering CAN Messages via the MCP2515</h2>
<p>With the base configuration, an MCP2515 controller will accept any messages sent across the network. This therefore means that your nodes need to filter each individual message coming across the bus to determine if they themselves are the intended recipient. Fortunately the MCP2515 has in-built configurable filtering to allow only messages intended for the node to be passed through its RX buffers.</p>
<p>The MCP2515 has 6 configurable filters with 2 masks. The first mask works in conjunction with the first two filters and applies to the first receiving buffer whereas the second mask works with the final 4 filters and works with the second receiving buffer. Filtering is enabled when any bit of a mask is '1' and disabled when the masks are completely zero'd out.</p>
<p>You may be wondering why both a mask and a filter are needed? As mentioned above, you may not have used the entire 'identifier' area of the sent message to indicate the recipient. Therefore, when you're checking an incoming message, you wont want to filter the entire identifier. As the identifier bits can be a '1' or '0', you need to initially specify which bits you want to check (mask) and then whether or not they are a '1' or '0' (filter).</p>
<table class=datatable>
<tr>
<th></th>
<th>Node 1 ('101')</th>
<th>Node 2 ('110')</th>
</tr>
<tr>
<th>Identifier</th>
<td>10110</td>
<td>10110</td>
</tr>
<tr>
<th>Mask</th>
<td>00111</td>
<td>00110</td>
</tr>
<tr>
<th>AND'd</th>
<td>00110</td>
<td>00110</td>
</tr>
<tr>
<th>Filter</th>
<td>00101</td>
<td>00110</td>
</tr>
<tr>
<th>Match?</th>
<td>False</td>
<td>True</td>
</tr>
</table>
<p>In the table above, you can see that Node 1 failed to match. The filter applied was looking for '101' (5 in decimal) but the lower 3 bits identifier (that's what the mask was looking for) was actually '110' (6 in decimal). You can see that the actual result was '110' after the mask was applied to the identifier. The second node matched as the filter is actually looking for '110'.</p>
<p>Now, we have to use the full registers when we apply this to the MCP2515. This means filling out 29bits of data. When in doubt, fill everything else with zeroes. Each register in the MCP2515 is 8bytes, this therefore means that you need 4 bytes per filter and 4 bytes per mask. The 6 filters and 2 masks that were mentioned above are located in the following areas:</p>
<table class=datatable>
<tr>
<th>Mask 0</th>
<th>Filter 0</th>
<th>Filter 1</th>
<th>Mask 1</th>
<th>Filter 2</th>
<th>Filter 3</th>
<th>Filter 4</th>
<th>Filter 5</th>
</tr>
<tr>
<td>0x20</td>
<td>0x00</td>
<td>0x04</td>
<td>0x24</td>
<td>0x08</td>
<td>0x10</td>
<td>0x14</td>
<td>0x18</td>
</tr>
<tr>
<td>0x21</td>
<td>0x01</td>
<td>0x05</td>
<td>0x25</td>
<td>0x09</td>
<td>0x11</td>
<td>0x15</td>
<td>0x19</td>
</tr>
<tr>
<td>0x22</td>
<td>0x02</td>
<td>0x06</td>
<td>0x26</td>
<td>0x0a</td>
<td>0x12</td>
<td>0x16</td>
<td>0x1a</td>
</tr>
<tr>
<td>0x23</td>
<td>0x03</td>
<td>0x07</td>
<td>0x27</td>
<td>0x0b</td>
<td>0x13</td>
<td>0x17</td>
<td>0x1b</td>
</tr>
</table>
<p>Right, now that you know you need 4 bytes for a filter and then 4 bytes for a mask... and you know where to store them... you'll probably now need to know how to construct a mask and filter. We'll start with a mask that looks for the value <b>11</b> (decimal!) [<b>0x0b</b> in hex, <b>1011</b> in binary] in the standard 11-bit identifier. As you can guess, I've just provided the filter by representing the value in binary; we simply need to zero-out the bits to the left to ensure we provide the correct number. Have I provided the mask? No! Look at the truth table below if we were to use <b>1011</b> as the mask.</p>
<table class=datatable>
<tr>
<th></th>
<th>Node 1 ('11011')</th>
<th>Node 2 ('01111')</th>
<th>Node 3 ('01011')</th>
</tr>
<tr>
<th>Identifier</th>
<td>11111</td>
<td>11011</td>
<td>01011</td>
</tr>
<tr>
<th>Mask</th>
<td>01011</td>
<td>01011</td>
<td>01011</td>
</tr>
<tr>
<th>AND'd</th>
<td>01011</td>
<td>01011</td>
<td>01011</td>
</tr>
<tr>
<th>Filter</th>
<td>01011</td>
<td>01011</td>
<td>01011</td>
</tr>
<tr>
<th>Match?</th>
<td>True</td>
<td>True</td>
<td>True</td>
</tr>
</table>
<p>They all matched!?!?!? Since we were only checking the 'exact' value via the mask, we weren't actually looking to see if any of the bits around the value were set. The basic principal is that we need to know the maximum length of the value we could be looking for and then use that as the mask. For example, if you have up to '11111' (32 including '0') ids on your network, then you want to make sure that your mask is '11111' and that your filter is the exact number of the node checking if the message is theirs.</p>
<table class=datatable>
<tr>
<th></th>
<th>Node 1 ('01011')</th>
<th>Node 2 ('01111')</th>
<th>Node 3 ('11011')</th>
</tr>
<tr>
<th>Identifier</th>
<td>11111</td>
<td>11011</td>
<td>01011</td>
</tr>
<tr>
<th>Mask</th>
<td>11111</td>
<td>11111</td>
<td>11111</td>
</tr>
<tr>
<th>AND'd</th>
<td>11111</td>
<td>11011</td>
<td>01011</td>
</tr>
<tr>
<th>Filter</th>
<td>01011</td>
<td>01011</td>
<td>01011</td>
</tr>
<tr>
<th>Match?</th>
<td>False</td>
<td>False</td>
<td>True</td>
</tr>
</table>
<p>That's better! Make sure your values are correct! So, in the example below we'll use '11111' as the max value and therefore the mask. We'll then use 01011 as the value of the node we're pretending to be and we'll insert these into the correct registers (being Mask 0 and Filter 0.)</p>
<h2>Message Acceptance Process</h2>
<p>So, two buffers with differing filters... what happens when a message arrives? The basic idea is that a message will hit the first buffer and, if not accepted, attempt to hit the second buffer. The message is then discarded if the second buffer is also configured to not accept this message.</p>
<p><b>Note</b>: There are also two bits (RXM0 and RXM1) in the RXBnCTRL (where n is either 0 or 1 depending on the buffer) that determine how messages are accepted. <b>Note</b>: My code currently has the ability to set these registers; for the life of me I cannot actually get the chip to function as per the datasheet when these registers are set. If anyone else has succeeded in using the RXM bits successfully then please leave a comment and tell how you did it!</p>
<table class=datatable>
<tr>
<th>RXM0</th>
<th>RXM0</th>
<th>Description</th>
</tr>
<tr>
<td>0</td>
<td>0</td>
<td>[<b>Default</b>] Enable reception of all valid messages as determined by the appropriate acceptance filters. (See the pseudo-code below as to how the masks and filters apply.)</td>
</tr>
<tr>
<td>0</td>
<td>1</td>
<td>Only accept standard messages. Filters are useless if the EXIDE bit does not match with this value.<br />
For example, if you put an extended filter on buffer 0 but you disable extended messages to buffer zero with this configuration then that filter will never be used.</td>
</tr>
<tr>
<td>1</td>
<td>0</td>
<td>Only accept extended messages. The same rules apply that any standard filters on a buffer with this setting will not be used.</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>Receive ALL messages regardless of filters. Also recieve messages that have caused an error during transmission. The fragment of message received in the buffer prior to the error will be brought through. This mode should really only be used for debugging a CAN system.</td>
</tr>
</table>
<p>So, as long as the RXM bits are both set to '0', the message buffers will then process through the following procedure to accept or deny messages.</p>
<pre class="brush: c">
  for EACH BUFFER b: (initially 0)
    if (MASK 'b' is ZERO) { //mask 0 for buffer 0 and mask 1 for buffer 1
      Accept new message on Buffer b
    } else {
      using FILTERs 0,1 (if b equals 0) OR FILTERs 2,3,4,5 (if b equals 1)
        if (both the message and filter are 'extended') or (both the message and filter are 'standard') then
          for each '1' in MASK as 'x', does FILTER[x] equal message[x]?
            if all match then accept message
            else check next filter as this filters bits do not match the relevant message bits.
        else check next filter as this filter type does not match this message type.
      if still not accepted then TRY BUFFER 1
    }
</pre>
<p>A mask is disabled when all its bits are '0'. As soon as a bit is '1' then that mask applies to the relevant buffer. As per the section above, the bits in the filter are then checked against the relevant message bits based on what bits the mask specifies the process to check.</p>
<p>On the contrary, a filter is not 'disabled' when all bits are '0'; instead you have configured two filters, on the buffer related to the mask, which will only permit standard messages where the identifier is zero. If you set the mask on a buffer to anything other than 0 and then don't touch the filters, this will prevent extended messages from coming through (as both filters have '0' as the EXIDE bit) and also prevent any standard messages that do not have an identifier of zero.</p>
<p>In the event that you don't want to receive a specific message type, you must put a mask on both receiving buffers and then an appropriate filter to block out the specific identifier bits. On the contrary, make sure that your masks and filters are smart enough to capture all other data required for your CAN node.</p>
<p>If in doubt, write an 'all-seeing' debugging application to view all traffic on your bus... it'll allow you to diagnose why messages are landing where you might not want them to. As per above, setting both RXM bits to 1 will bypass your filters; this way you don't have to muck around with your own configuration too much. Just make sure you have more than two other nodes on the bus if you want another in Listen mode. Having one node on the bus, or two with one in listen mode, will mean that any message transmitted will stay perpetually on the wire. A message must be consumed by another node for it to disappear. </p>
<h2>Storing Masks and Filters on the MCP2515</h2>
<p>Scroll up to see the register addresses for the masks and filters. The contents of each of these registers looks as follows:</p>
<table class=datatable>
<tr>
<th>Filter/Mask</th>
<th>Bit 7</th>
<th>Bit 6</th>
<th>Bit 5</th>
<th>Bit 4</th>
<th style="width:30px;">Bit 3</th>
<th>Bit 2</th>
<th>Bit 1</th>
<th>Bit 0</th>
</tr>
<tr>
<th>Byte 0 (RX[F|M]nSIDH)<b>*</b></th>
<td>SID10</td>
<td>SID09</td>
<td>SID08</td>
<td>SID07</td>
<td>SID06</td>
<td>SID05</td>
<td>SID04</td>
<td>SID03</td>
</tr>
<tr>
<th>Byte 1 (RX[F|M]nSIDL)<b>*</b></th>
<td>SID02</td>
<td>SID01</td>
<td>SID00</td>
<td>&ndash;&ndash;</td>
<td>EXIDE/&ndash;&ndash;<b>**</b></td>
<td>&ndash;&ndash;</td>
<td>EID17<b>^</b></td>
<td>EID16<b>^</b></td>
</tr>
<tr>
<th>Byte 2 (RX[F|M]nEID8)<b>*</b></th>
<td>EID15</td>
<td>EID14</td>
<td>EID13</td>
<td>EID12</td>
<td>EID11</td>
<td>EID10</td>
<td>EID09</td>
<td>EID08</td>
</tr>
<tr>
<th>Byte 3 (RX[F|M]nEID0)<b>*</b></th>
<td>EID07</td>
<td>EID06</td>
<td>EID05</td>
<td>EID04</td>
<td>EID03</td>
<td>EID02</td>
<td>EID01</td>
<td>EID00</td>
</tr>
</table>
<ul>
<li><b>*</b>: '<b>n</b>' is the filter number, i.e. RXF0SIDH is the 'Standard ID High Receive Register Filter 0'.<br/><b>[F|M]</b> means that the name is 'RXF1SIDH' for Filter 1 and 'RXM1SIDH' for Mask 1.</li>
<li><b>**</b>: '<b>EXIDE</b>': set this to '1' and this filter will <b>only</b> apply to Extended IDs, '0' means it will <b>only</b> apply to standard IDs.<br/>This byte is unimplemented for Masks. Just leave it as zero.</li>
<li><b>^</b>: These two bits <b>are not</b> used if you are in standard mode as you only need 16 bits to check the first two bytes of data.</li>
</ul>
<p>Have I lost you yet? Each filter and mask needs to be able to store both the Standard ID bits and the Extended ID bits. As mentioned before, if you're in standard mode then the 'lower' two bytes  (i.e. bits 16 to 0 [17,18 are ignored!]) of the extended area are for matching against the first two bytes of data. You can disable this by ensuring that the associated mask has zeroes in the extended area. On the contrary, if you wanted to check the first byte in the data for a specific value then you would pass in '001111111100000000' as the extended area of the mask with the relevant extended bits set in filter.</p>
<p>Somewhere up above I mentioned we'd use '11111' for the mask and '01011' for the node id. We'll now store this in the registers. We'll use Mask 0 and Filter 0 for this and we'll make sure the rest are all zeroes so they don't apply. You'll note that the first register (RXM0SIDH) starts with zeros; as per above this means that the identifier could actually contain any data in this area and, since the mask is '0' for these bits, the acceptance process wont care at all! The registers will need to be set as follows:</p>
<table class=datatable>
<tr>
<th>Register</th>
<th>Data</th>
<th>Register</th>
<th>Data</th>
</tr>
<tr>
<th>RXM0SIDH [0x20]</th>
<td>0b00000011</td>
<th>RXF0SIDH [0x00]</th>
<td>0b00000001</td>
</tr>
<tr>
<th>RXM0SIDL [0x21]</th>
<td>0b11100000</td>
<th>RXF0SIDL [0x01]</th>
<td>0b01100000</td>
</tr>
<tr>
<th>RXM0EID8 [0x22]</th>
<td>0b00000000</td>
<th>RXF0EID8 [0x02]</th>
<td>0b00000000</td>
</tr>
<tr>
<th>RXM0EID0 [0x23]</th>
<td>0b00000000</td>
<th>RXF0EID0 [0x03]</th>
<td>0b00000000</td>
</tr>
<tr>
<td colspan=4>Note: All other Registers in the RXF/RXM space need to be zero'd out!</td>
</tr>
</table>
<p>So, as you can see above, we've put the mask 0b00000011111 in the 'standard id area' of Mask 0 and 0b00000001011 in the 'standard id area' of filter 0. Based on our logic above this will then only allow messages through that match the above requirements. Below is the code to actually do this on the Arduino.</p>
<pre class="brush: c">
#define MASK_0 0x20
#define FILTER_0 0x00
void CANClass::setMaskOrFilter(byte mask, byte b0, byte b1, byte b2, byte b3) {
	setMode(CONFIGURATION);
	setRegister(mask, b0);
	setRegister(mask+1, b1);
	setRegister(mask+2, b2);
	setRegister(mask+3, b3);
	setMode(NORMAL);
}

//set MASK 0 for RXB0 a mask checks all bits of the standard id.
CAN.setMaskOrFilter(MASK_0,   0b11111111, 0b11100000, 0b00000000, 0b00000000);
//set Filter 0 to 0x555. Therefore only messages with frame id: 0x555 are allowed through this buffer.
CAN.setMaskOrFilter(FILTER_0, 0b10101010, 0b10100000, 0b00000000, 0b00000000);
</pre>
<p>Note that only setting this for buffer 0 will mean that any message that doesn't match will come through on buffer 1. You'll need to also set a mask on buffer 1 to stop the messages completely. Of course, you can also only ever check buffer 0 for messages and not care if buffer 1 has anything waiting.</p>
<h2>Filters in action: Guessing game.</h2>
<p>Ok, who would've thought you could make microcontrollers play a game together. You know the old trick, someone else chooses a 'random' number and you get to 'randomly' guess it. Why don't we make our Arduino's play the same game?</p>
<p>We'll set the filter on buffer 0 to the number the receiver is thinking of. This means that the sender will only actually get a message through to the receiver if they guess the correct identifier. Both controllers will then swap roles. Just to make life easier we'll limit the range of numbers allowed, but we'll still make the guessing as 'random' as possible.</p>
<p>I could paste the full code here, but instead I'll just post the general idea.</p>
<table class=datatable>
<tr>
<th colspan=2>Main setup</th>
</tr>
<tr>
<td colspan=2>Set Mask of Buffer 0 to the 11-bit standard identifier<br />
Set Mask of buffer 1 to the same 11-bit id<br />
set filter 2 (first filter of buffer 1) to a specific ID for messages that aren't guesses.<br />
Set one node to RX and one to TX<br />
Initialise the random generator.</td>
</tr>
<tr>
<th>Receiver Role</th>
<th>Transmitter Role</th>
</tr>
<tr>
<td>
<ol>
<li>Randomly set 'guess' number from known range.</li>
<li>Set Filter 0 to guess number.</li>
<li>Sit and wait for transmitter to guess...<br/><br />
- if they send a message on buffer 1 then pass it on to the host.<br />
- if they get through on buffer 0 then it's their turn.</li>
</ol>
</td>
<td>
<ol>
<li>Randomly choose a number to guess.</li>
<li>Set the frame id of the message and send.</li>
<li>Wait for response, if found then we won, swap to receiver.</li>
<li>If no response, send guessed number to buffer 1 of receiver.</li>
<li>Loop and guess another number if required.</li>
</ol>
</td>
</tr>
</table>
<h2>Source code (including my version of the CAN Library)</h2>
<p>The final piece of the puzzle is always the source code. I've included the guessing game example as well. Note that my code is based off the <a href='http://code.google.com/p/canduino/'>canduino</a> and I intend to send changes upstream where possible to make life easier for everyone.</p>
<div style='clear:both;margin-bottom:60px;'><a href='http://www.otenko.com/arduino/can_mcp2515_arduino.zip'><img style='float:left;margin-right:10px;' src='http://www.otenko.com/imgs/zip.gif'/></a> <span><a href='http://www.otenko.com/arduino/can_mcp2515_arduino.zip'>Download the library and example here</a>.</span></div>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/arduino/arduino-controller-area-network-can/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Arduino + Thermal Printers (Sparkfun, IBM 4160-TF6)</title>
		<link>http://modelrail.otenko.com/arduino/arduino-thermal-printers-sparkfun-ibm-4160-tf6</link>
		<comments>http://modelrail.otenko.com/arduino/arduino-thermal-printers-sparkfun-ibm-4160-tf6#comments</comments>
		<pubDate>Wed, 29 Feb 2012 12:16:27 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[printing]]></category>
		<category><![CDATA[rs232]]></category>
		<category><![CDATA[serial]]></category>
		<category><![CDATA[sparkfun]]></category>
		<category><![CDATA[thermal printer]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2597</guid>
		<description><![CDATA[I've always wanted to print my own receipts... devious activities come to mind; but the following usage of receipt printers is nothing sinister at all. My goal is to print out activities for trains on the layout; certain locations will have a new reporting mechanism! I'd seen a few printers on eBay, most being USB. [...]]]></description>
			<content:encoded><![CDATA[<p>I've always wanted to print my own receipts... devious activities come to mind; but the following usage of receipt printers is nothing sinister at all. My goal is to print out activities for trains on the layout; certain locations will have a new reporting mechanism!</p>
<p>I'd seen a few printers on eBay, most being USB. Serial was always to be my preferred method and I had the components on hand. I then saw the Thermal Printer at Sparkfun and decided that it'd be my first guinea pig.</p>
<h2>Sparkfun Thermal Printer</h2>
<p>The <a href='http://www.sparkfun.com/products/10438'>Sparkfun themal printer</a> is, like most of their products, targetted at the Arduino. Thanks to this there is a wealth of information on their page on how to connect and use it. After hooking up a proper power supply (they recommend 9v @ 2Amps, so use a 7809 with a heatsink!) the printer just started spewing out whatever I threw at it.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10654?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Sparkfun Thermal Printer"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10654?size=thumb" alt="Sparkfun Thermal Printer"></a></p>
<p>The easiest way to use this is via the library found here: <a href='http://bildr.org/2011/08/thermal-printer-arduino/'>Displaying on Paper – Thermal Printer + Arduino</a>. <a href='http://bildr.org/'>bildr.org</a> is actually a really cool site full of interesting projects for the Arduino, check it out when you can!</p>
<p>There's <a href='http://forum.bildr.org/viewtopic.php?t=531'>a forum for discussing the above library</a>, in which I've already posted my praises to the developer. If you need a hand then go over and ask away... they're always open to feedback and improvements to the library too!</p>
<p>Note that this printer uses small rolls of 58mm paper. I found a 10-pack of these at OfficeWorks (Australia) for AUD$9.95.</p>
<h2>IBM 4610-TF6 (on Windows)</h2>
<p>I'd finally found a dirt cheap printer on eBay that was RS-232. It was a chunky/retro IBM thermal printer and really was just a larger, more robust version of the Sparkfun thermal printer above. It didn't come with a power supply and, after purchasing, I realised that it wanted 38v! What the hell? It seems that the 'thermal' side of it uses a lot of current to burn the paper! It also wanted 3 AMPS at 38v... where the hell would I find that?</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10644?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Split open IBM SureMark 4610-TF6"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10644?size=thumb" alt="Split open IBM SureMark 4610-TF6"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10645?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Bypassing the power socket"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10645?size=thumb" alt="Bypassing the power socket"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10646?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="58mm paper output!"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10646?size=thumb" alt="58mm paper output!"></a></p>
<p>I installed <a href='http://www-01.ibm.com/support/docview.wss?uid=pos1R4000123'>the printer drivers here</a> on a Windows XP 32-Bit machine (DOES NOT WORK WITH 64-Bit!) and provided it 12v @ 2A. The LED came on, but the printer showed up as 'offline'. All attempted connections via Hyper-Terminal showed the port as 'already open'; the printer driver would've been the cause. I uninstalled it and rebooted, but Hyper-Terminal wasn't receiving any responses after connecting successfully.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10647?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Middle bar not printing!"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10647?size=thumb" alt="Middle bar not printing!"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10648?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Bit Switches"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10648?size=thumb" alt="Bit Switches"></a></p>
<p>I then found a second 12v power supply and chained them together... Prior to this I'd re-installed the printer drivers and, upon the boost to 24v, the printer flicked to 'online' and the LED glowed slightly brighter. I could now also use the line-feed button on the top of the printer! I opened notepad, loaded a text file from the Arduino directory and, without thinking, hit print. The printer control panel window showed the job spooling up to 20 pages and then the printer started .... and kept going ... for an hour. It printed at a rate of about 1 line per 5 seconds.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10649?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Testing output"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10649?size=thumb" alt="Testing output"></a></p>
<p>I had no idea how to cancel it... so I had to let it go.</p>
<h2>IBM 4610-TF6 (on the Arduino)</h2>
<p>It was now time to make this printer talk to my Arduino Mega. I hooked it all up based on how the Sparkfun printer wiring and attempted to use the same code; nothing happened. I then used <a href='https://github.com/tomtaylor/microprinter-arduino/tree'>the code</a> from <a href='http://tomtaylor.co.uk/projects/microprinter'>Tom Taylor's Microprinter blog post</a>. Once uploaded, I had junk coming out of the printer... It occurred to me that I probably needed a MAX232 in the middle to raise the voltages to proper RS232 levels (as per everyone elses examples!)</p>
<p>I hooked up the MAX232 as per the schematic below and then had a functional printer from my Arduino! Determining the actual commands to send it came next.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10643?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Printer Connection to Arduino"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10643?size=thumb" alt="Printer Connection to Arduino"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10650?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Proper cabling"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10650?size=thumb" alt="Proper cabling"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10652?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Initial DB9 Connections"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10652?size=thumb" alt="Initial DB9 Connections"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10653?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="MAX232 Setup"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10653?size=thumb" alt="MAX232 Setup"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10655?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Two RS232 cables for the Arduino"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10655?size=thumb" alt="Two RS232 cables for the Arduino"></a></p>
<h2>Fonts, spacing, etc...</h2>
<p>Right, this gets tricky... you can either put 58mm or 80mm paper in this printer. 80mm is recommended as it has better chances of staying aligned with the paper cutter (coming out diagonally is actually an issue.) I had started with the 58mm but quickly went and bought 80mm paper (AUD$12 for 4 80x80 rolls) as I also wanted the extra printing space.</p>
<p>You can work out how many characters per line based on the font chosen, character spacing. It is pretty much expected that you're using 80mm paper. Font A is 10x20, Font B is 12x24 and Font C is 8x16. The Cash Receipt print line is 72 mm (2.83 inches) long. There are 576 dots per line and 203 dots per inch.</p>
<p>The Application Guide provides the following calculations:</p>
<ul style="">
<li>20 CPI ⇒ 8-dot wide character + 2-dot space (Font C) ⇒ 57 characters/line</li>
<li>17 CPI ⇒ 10-dot wide character + 2-dot space (Font A) ⇒ 48 characters/line</li>
<li>15 CPI ⇒ 10-dot wide character + 3-dot space (Font A) ⇒ 44 characters/line</li>
<li>12 CPI ⇒ 12-dot wide character + 5-dot space (Font B) ⇒ 33 characters/line</li>
</ul>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10651?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="More test output"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10651?size=thumb" alt="More test output"></a></p>
<h2>IBM SureMark Thermal Printer Library for Arduino 1.0</h2>
<p>IBM provides a great reference document for this collection of printers: <img src='http://www.otenko.com/arduino/pdf_icon.gif' style="vertical-align:-6px;border:none;margin-left:0px;"/><a href='http://www.otenko.com/arduino/prn4610.pdf'>Application interface specification for IBM 4610 printers</a>. I found it to be a little hit-and-miss as to what commands are available on the TF6, but most worked well. Either way, I built the following library which provides the following functionality:</p>
<ul>
<li>Text Styles: <b>Bold</b>, <u>Underline</u>, Overline, Inverted, Arbitrary Font Scaling, Double Height/Width, Rotated, Upside-down</li>
<li>Barcode Printing: UPC-A, UPC-E, JAN13 (EAN), JAN8 (EAN), CODE 39, ITF, CODABAR, CODE 128 (c), CODE 93, CODE 128 (a, b)</li>
<li>Image Printing from data stream, image storing to printer RAM and image printing from printer RAM</li>
<li>Message storing to printer RAM and printing from printer RAM</li>
<li>Beeper sounds. (Example below has 'Mary had a little lamb')</li>
<li>Paper cutting, line spacing, line feeding, etc...</li>
</ul>
<div style='clear:both;margin-bottom:60px;'><a href='http://www.otenko.com/arduino/IBMSureMark_Example.zip'><img style='float:left;margin-right:10px;' src='http://www.otenko.com/imgs/zip.gif'/></a> <span><a href='http://www.otenko.com/arduino/IBMSureMark_Example.zip'>Download the library and example here</a>.</span></div>
<h2>Other references</h2>
<p>It turns out that, if I'd google'd more, I would've found a lot more help around the traps... here's a few locations to check out:</p>
<ul>
<li><a href='http://www.electrojoystick.com/tutorial/?page_id=189'>Tutorial for RS232 + Thermal Printer with Arduino</a></li>
<li><a href='http://tomtaylor.co.uk/projects/microprinter'>Tom Taylor's Microprinter</a></li>
<li><a href='http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1284047434'>[SOLVED] Connecting POS-Printer and Duemilanove</a></li>
<li><a href='http://printarduino.blogspot.com.au/2010/02/arduino-and-thermal-printers.html'>Arduino and the thermal printers</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/arduino/arduino-thermal-printers-sparkfun-ibm-4160-tf6/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Controlling points/turnouts with Servos via the Arduino</title>
		<link>http://modelrail.otenko.com/arduino/controlling-pointsturnouts-with-servos-via-the-arduino</link>
		<comments>http://modelrail.otenko.com/arduino/controlling-pointsturnouts-with-servos-via-the-arduino#comments</comments>
		<pubDate>Mon, 20 Feb 2012 07:43:10 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[Arduino]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2558</guid>
		<description><![CDATA[I've managed to cook many Tomix Turnouts during my tinkering with the Arduino. The main issue has been applying too much current for too long. The actual switches that come with Tomix points are momentary and, internally, the circuit is only completed very quickly via a spring mechanism. The goal, of course, is to prevent [...]]]></description>
			<content:encoded><![CDATA[<p>I've managed to cook many Tomix Turnouts during my tinkering with the Arduino. The main issue has been applying too much current for too long. The actual switches that come with Tomix points are momentary and, internally, the circuit is only completed very quickly via a spring mechanism. The goal, of course, is to prevent the user from holding the power to the turnout magnet for too long. Unfortunately, I've managed to (via both coding and circuitry mistakes) apply too much power in the past and it takes very little time to melt the roadbase of Tomix Finetrack.</p>
<p>Due to all this, and the desire to use Peco Setrack, I'd decided that instead of Peco Turnout Motors (which also require large amounts of voltage) I'd use the smallest RC servos I could find. Off to eBay I went and the following arrived not so long ago.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10637?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="9g Servo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10637?size=thumb" alt="9g Servo"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10638?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="9g Servo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10638?size=thumb" alt="9g Servo"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10639?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="9g Servo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10639?size=thumb" alt="9g Servo"></a></p>
<p>I had no idea what servos to purchase: they seem to be rated in grams as to how much they can lift? I read in a few random locations across the web that 9g would be more than enough for switching points.</p>
<h2>Hooking up Servos to your Arduino</h2>
<p>This could not be easier. Arduino 1.0 already comes with the <a href='http://arduino.cc/en/Reference/Servo'>Servo Library</a> in-built. Simply include this header and then implement the following code. The basic idea is to initialise the Servo on a specific pin (they only require one pin to be controlled) and then hook up the external power source. As per usual, it's not recommended to power too many off the USB 5v.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10641?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="BareBonesWithServoAndEncoder"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10641?size=thumb" alt="BareBonesWithServoAndEncoder"></a></p>
<h2>Mounting Servos to control Turnouts</h2>
<p>Got some piano wire? A paperclip? Resistor legs? Any solid piece of wire/metal/rod will work to connect your turnout to a Servo. As you can see below, I've used a .55mm 'hobby wire' to connect everything up as I don't need flexibility and I want it to be robust.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10633?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Prototype Arduino + Servo controlling point"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10633?size=thumb" alt="Prototype Arduino + Servo controlling point"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10634?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Prototype Arduino + Servo controlling point"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10634?size=thumb" alt="Prototype Arduino + Servo controlling point"></a></p>
<p>You could also be very tricky and build a full interlocking frame to control multiple points at once. I bought a few 'hinges' (no idea what the real word should be) to allow the rodding to turn corners but thought it easier in the end to just install another Servo <img src='http://modelrail.otenko.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<h2>Rotary Encoders allow you to switch the Turnout yourself...</h2>
<p><a href='http://arduino.cc/playground/Main/RotaryEncoders'>Rotary Encoders</a> are 'endless' switches which usually come with 5 pins + GND. You can continually turn them, allowing for applications where you want an inifinitely adjustable value. The pins are as follows: one side has two pints which are for the 'pushbutton', as the actual stem can be pushed into the base and provides a momentary switch. The other three on the other side are for the rotor location. The inside pin is 'common' and needs to go to ground; the outside pins are 'data' and need to be hooked into digital inputs somewhere on your Arduino.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10635?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Rotary Encoder"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10635?size=thumb" alt="Rotary Encoder"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10636?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Rotary Encoder"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10636?size=thumb" alt="Rotary Encoder"></a></p>
<p>You then simply download the <a href='http://www.pjrc.com/teensy/td_libs_Encoder.html'>rotary encoder library from PJRC</a>, drop the main Encoder.cpp and 'utils' folder into your sketch folder and include the following source lines.</p>
<pre class="brush: c">
#define ENCODER_DO_NOT_USE_INTERRUPTS

#include "Encoder.h"
#include &lt;Servo.h&gt;

Encoder myEnc(7, 8);

Servo myservo;
long position = -999;
long srv = 0;
void setup() {
  myservo.attach(5);
}

void loop() {
  long newPos = myEnc.read();
  if (newPos != position) {
    if (newPos < position) {
      srv += 1;
      if (srv > 180) srv = 180;
    } else {
      srv -= 1;
      if (srv < 0) srv = 0;
    }
    position = newPos;
    myservo.write(srv);
  }
}
</pre>
<p>The code above will check if the rotary encoder has moved and, if it has, then check which direction and adjust the servo accordingly. Note that the servos will hum/jam if you try to turn them past any restrictions: i.e. once hooked to a turnout, the servo's movement will be limited and you should only move them as much as required... don't try and move them past the limits of the turnout. I'm quite sure that you will ruin either the servo or the turnout if you let it hum for too long past the movement of the switch.</p>
<h2>What to do next?</h2>
<p>Control your points based on timing? Or even based on <a href='http://modelrail.otenko.com/arduino/multiplexing-photodetectors-to-detect-train-occupancy'>track occupancy detection</a>. Computerised turnout control will allow you to automate any movement over your layout. Of course, my current goal is to build a node for the <a href='http://www.openlcb.org/'>OpenLCB</a> project to control points via servos. This will need to store data, allow max/min settings per point, etc... but more as it gets built!</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/arduino/controlling-pointsturnouts-with-servos-via-the-arduino/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Persistent Data on the Arduino (EEPROM)</title>
		<link>http://modelrail.otenko.com/arduino/persistent-data-on-the-arduino-eeprom</link>
		<comments>http://modelrail.otenko.com/arduino/persistent-data-on-the-arduino-eeprom#comments</comments>
		<pubDate>Fri, 17 Feb 2012 03:33:05 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[eeprom]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[persistent storage]]></category>
		<category><![CDATA[ram]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2593</guid>
		<description><![CDATA[It's taken me a year to realise that you can actually store data at runtime on the Arduino and happily turn it off, expecting the data to still be there when you turn it on. By this, I don't mean the code you've uploaded; I mean the actual values you've created/calculated/determined whilst your code has [...]]]></description>
			<content:encoded><![CDATA[<p>It's taken me a year to realise that you can actually store data at runtime on the Arduino and happily turn it off, expecting the data to still be there when you turn it on. By this, I don't mean the code you've uploaded; I mean the actual values you've created/calculated/determined whilst your code has been executing on the Arduino.</p>
<p>Actually, I lie... it hasn't taken a year to 'realise'... it's taken a year to actually need the ability to store information. It occurred to me, whilst looking at <a href='http://railstars.com/hardware/io/io-developers-board/'>Don's OpenLCB railstars products</a>, that they'd need to store everything they 'learn' as you set them up with controller nodes. All of my previous projects would've forgotten all settings once you disconnect the power!</p>
<h2>Memory Types on the Arduino</h2>
<p>After a little research, it turns out that <a href='http://www.arduino.cc/playground/Learning/Memory'>Arduinos have three types of memory areas</a>. These would be the flash, EEPROM and SRAM. The former is the location that all 'sketches' and other compiled program code go, therefore being the largest area. The EEPROM is, depending on your chip, an area around 1k to 4k in size for storing data to be persisted. Finally the SRAM is the 'running' area where data is stored during runtime of your code.</p>
<table class="datatable">
<tbody>
<tr>
<th>Memory Type</th>
<th>ATMega168</th>
<th>ATMega328P</th>
<th>ATmega1280</th>
<th>ATmega2560</th>
</tr>
<tr>
<th>Flash</th>
<td>16k</td>
<td>32k</td>
<td>128k</td>
<td>256k</td>
</tr>
<tr>
<th>SRAM</th>
<td>1k</td>
<td>2k</td>
<td>8k</td>
<td>8k</td>
</tr>
<tr>
<th>EEPROM</th>
<td>512 bytes</td>
<td>1k</td>
<td>4k</td>
<td>4k</td>
</tr>
</tbody>
</table>
<p>So, as you can see, the more you pay for the microprocessor, the more space you get to play with. I have used the Arduino Mega 1280 for a while and had never used the space available in the EEPROM... what a waste. Now I'm tinkering with the Atmega328P and, as it shows, there's a lot less space available to play with. Fortunately, depending on how frugal you are with data storage, there's more than enough for creating our <a href='http://www.openlcb.org/'>OpenLCB</a> nodes.</p>
<h2>Working with the EEPROM</h2>
<p>Arduino 1.0 (and all previous versions) include the <a href='http://www.arduino.cc/en/Reference/EEPROM'>EEPROM Library<a/>. This library includes two calls, being <a href='http://arduino.cc/en/Reference/EEPROMRead'>read()</a> and <a href='http://arduino.cc/en/Reference/EEPROMWrite'>write()</a>. For the Atmega328P, I'm able to store a byte in 1024 areas. This expands to 4096 areas for the Mega.</p>
<p>By the way, for time-critical apps, an EEPROM write takes 3.3 ms to complete.</p>
<p><b><u>NOTE</u></b>: As the Arduino page warns, EEPROMs are only good for 100000 writes! Please only write/update your EEPROM areas sparingly and when absolutely required.</p>
<h2>Efficient storage of Bits/Bytes</h2>
<p>Depending on your requirements, you may want to be more efficient in the way you store certain values. We'll start with booleans: if you're lazy and wont need to store over 1024 booleans on an Atmega328p then you can simply check the boolean and store a '1' or '0' in any of the 1024 areas. Of course, if you need more, then you'd want to efficiently use the 8 bits per byte that you have available. As each of those 8 bits can be a '1' or a '0', you can then actually store 8 booleans in each byte. It's simply a matter of 'or'ing 8 booleans together and left-shifting to ensure you set the correct bit.</p>
<pre class="brush: c">
byte setBit(store, bit) { //bit 1 is right-most
      store |= (1 << (bit - 1)); //set bit 5 to '1'.
}

byte clearBit(store, bit) {
      store &#038;= !(1 << (bit - 1));
}

bool getBit(store, bit) {
      byte b = (1 << (bit - 1));
      return (store &#038; b);
}
</pre>
<p>Arduino has a good bit of information on <a href='http://arduino.cc/en/Tutorial/BitMask'>BitMasks</a> and <a href='http://www.arduino.cc/playground/Code/BitMath'>BitMath</a> for those interested.</p>
<h2>Using PROGMEM to store 'known' data</h2>
<p>So, as previously mentioned, the Flash area has the most space available. The Arduino comes with the <a href='http://arduino.cc/en/Reference/PROGMEM'>PROGMEM</a> library for storing variables in this area. Note that you cannot easily write to this at run-time (I haven't dug far enough to work out if you really can) ... the goal is to just store large data in the flash and use it from there at runtime rather than copying to your limited SRAM first.</p>
<p>Firstly, you need to select from a datatype below:</p>
<table class="datatable">
<tr>
<th>Data Type</th>
<th>Description</th>
</tr>
<tr>
<td>prog_char</td>
<td>a signed char (1 byte) -127 to 128</td>
</tr>
<tr>
<td>prog_uchar</td>
<td>an unsigned char (1 byte) 0 to 255</td>
</tr>
<tr>
<td>prog_int16_t</td>
<td>a signed int (2 bytes) -32,767 to 32,768</td>
</tr>
<tr>
<td>prog_uint16_t</td>
<td>an unsigned int (2 bytes) 0 to 65,535</td>
</tr>
<tr>
<td>prog_int32_t</td>
<td>a signed long (4 bytes) -2,147,483,648 to * 2,147,483,647.</td>
</tr>
<tr>
<td>prog_uint32_t</td>
<td>an unsigned long (4 bytes) 0 to 4,294,967,295</td>
</tr>
</table>
<p>Now, declare it in the PROGMEM 'space'. It seems that the Arduino devs recommended it to be stored as an array as you'd usually only use this space for large amount of data.<br />
I've chosen the <b>prog_uint16_t</b> (note that this var size is a 'word'), the code below stores two of these values and then uses them during execution.</p>
<pre class="brush: c">
#include <avr/pgmspace.h>
PROGMEM prog_uint16_t myValues[] = { 123, 456 };

int k; //counter? don't quite know what for.
int readValue1, readValue2;
void setup() {
      k = 0; //read the first word.
      readValue1 = pgm_read_word_near(charSet + k);
      k = 1;
      readValue2 = pgm_read_word_near(charSet + k);
}

void loop() {
      //now you should probably do something with these values...
}
</pre>
<p>And that's it.. I hope this helps some of you to limit your SRAM requirements and also to store data for users each time your device is switched off!</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/arduino/persistent-data-on-the-arduino-eeprom/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Building an Arduino from scratch</title>
		<link>http://modelrail.otenko.com/arduino/building-an-arduino-from-scratch</link>
		<comments>http://modelrail.otenko.com/arduino/building-an-arduino-from-scratch#comments</comments>
		<pubDate>Tue, 14 Feb 2012 08:37:23 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[openlcb]]></category>
		<category><![CDATA[skeleton]]></category>
		<category><![CDATA[standalone]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2523</guid>
		<description><![CDATA[OK, OpenLCB is the new cool... to make 'nodes' for it, we need a skeleton Arduino to build from. This article will define how to go about this. The goal in the end is to have a prototype that can, via the Arduino IDE, have a sketch uploaded to do as you wish. References Firstly, [...]]]></description>
			<content:encoded><![CDATA[<p>OK, <a href='http://modelrail.otenko.com/openlcb/openlcb-controlling-your-model-railroad'>OpenLCB is the new cool</a>... to make 'nodes' for it, we need a skeleton Arduino to build from. This article will define how to go about this. The goal in the end is to have a prototype that can, via the Arduino IDE, have a sketch uploaded to do as you wish.</p>
<h2>References</h2>
<p>Firstly, a list of random links for random information on building your own Arduino:</p>
<ul>
<li>Arduino has a page on this: <a href='http://www.arduino.cc/en/Main/StandaloneAssembly'>Standalone Assembly</a>. Note that the diagram is <u>WRONG</u> and this schematic is not recommended.</li>
<li>TheTransistor has their <a href='http://thetransistor.com/projects/arduino/'>Minimalist Arduino Article</a> which is perfect. This uses USB.</li>
<li>Praveendb’s Weblog has a post titled <a href='http://praveendb.wordpress.com/2009/05/18/interface-the-atmega-1632-with-the-pc/'>Interface the Atmega 16/32 with the PC</a> which shows how to connect the Atmega via a MAX232 Serial (NOT USB)</li>
<li>There's a post at NKC Electronics Tutorials detailing how to <a href='http://mcukits.com/2009/03/12/assembling-the-freeduino-serial-v20-board-max232/'>assemble a 'Freeduino' V2.0 [MAX232]</a> and then the <a href='http://mcukits.com/2009/03/12/assembling-the-freeduino-serial-v10-board/'>'Freeduino' v1.0 [Basic Serial Interface]</a>.</li>
</ul>
<h2>Serial or USB?</h2>
<p>I know the <a href='http://en.wikipedia.org/wiki/Serial_port'>DB-9 Serial Port</a> is archaic... needs an <a href='http://en.wikipedia.org/wiki/Interrupt_request'>Interrupt Request (IRQ)</a> assigned to it etc, etc... but there's something nostalgic about plugging in a chunky cable instead of a new USB-B connector. It's also cheaper and easier to use parts on hand and I had a few MAX232s sitting around.</p>
<p>To use USB you'll need an FTDI chip to convert the USB signal from your PC to the <a href='http://en.wikipedia.org/wiki/Transistor%E2%80%93transistor_logic'>TTL</a> protocol of which the Arduino understands. Note that there are also FTDI chips which convert USB to <a href='http://en.wikipedia.org/wiki/RS-232'>RS232</a>, the serial protocol that allows devices (specifically your old dial-up modems) to communicate over serial cables. You don't want one of these as you'd then have to convert the RS232 again to TTL.</p>
<h2>Which Microcontroller?</h2>
<p>Good question! Your choice of microcontroller comes down to size and quantity of digital/analogue inputs and outputs. I decided on the Atmega328P as it has enough IO lines for what I need on each OpenLCB node; I'll produce more node types and have them specialise rather than one node that does everything from one board. They're cheap on eBay and they are very similar to the MCU used in the <a href='http://arduino.cc/en/Main/arduinoBoardDuemilanove'>Arduino Duemilanove</a> (5 analogue and ~13 digital IOs.)</p>
<h2>Schematic</h2>
<p>You'll find schematics all over the web, although none seem to agree on what components are the exact bare-minimum for an Arduino... it actually makes it quite difficult to know exactly what you need. Below is a solid basis to start your Arduino-based invention, containing everything required to program over the serial port.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10631?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="BareBones"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10631?size=thumb" alt="BareBones"></a></p>
<h2>Building the prototype</h2>
<p>There was not much out of the ordinary on the breadboarding of this project. It's actually quite simple and the standard rules of check, check and double-check your wire placement, IC pin numbers, etc... as you go is imperative. The serial cable connection on this project, due to the cable being rigid, can cause issues of dragging the board around. I'd recommend to seat connection and cable first and secure everything to your workbench... You'll then prevent your breadboard from upending when the serial cable chooses to move around.</p>
<h2>Programming from the IDE</h2>
<p>The MCU chosen is the Atmega328P and, as mentioned, it's closest match is the "Arduino Duemilanove w/ Atmega328". Once everything was connected I attempted to flash using this board, selected in the Arduino GUI, but it didn't work straight away. The initial error was that the chip device ID didn't match. It turns out that the Atmega328 has as a different code to the Atmega328P (something to do with Pico Power.) I had to hack the 'avrdude.conf' file buried in the arduino folder and then it just worked.</p>
<p>Before I knew it I had the servo library in and a mini servo from eBay controlling a Peco point on my layout.</p>
<h2>Re-programming an Atmega MCU</h2>
<p>I accidentally learnt how to do this... At one point I'd put the MCU in the wrong way around and expected that I'd killed it. The circuit then failed to work after numerous attempts with the TX and/or RX lights constantly lit. It wouldn't accept sketches and I therefore thought the best bet was to re-flash the bootloader + program.</p>
<p>It turns out that my <a href='http://www.instructables.com/id/How-to-use-Arduino-Mega-2560-as-Arduino-isp/'>Arduino Mega can be used as an In-Serial Programmer</a> and so I set this up. This can be selected via the "Arduino ISP" option in the "Programmer" menu under the new Arduino 1.0 software.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10629?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="ArduinoMegaISP"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10629?size=thumb" alt="ArduinoMegaISP"></a><br />
(Note that the capacitor from +5v to RESET is a 100n non-polarised.)</p>
<p>After the re-flash and a reconfigure of the MAX232 in/outs (the schematic above is the final version that now works perfectly) it all just worked again... for one of the MCUs anyway. The second simply refused to receive sketches; the RX light would not turn off. I took this as a fundamental failure in the chip (I blame my bread-boarding skills) and therefore tried something sneaky: I copied the entire code off the MCU that worked and flashed it to the 'broken' one with avrdude and it's associated <a href='http://yuki-lab.jp/hw/avrdude-GUI/index.html'>avrdude-GUI</a> [<a href='http://yuki-lab.jp/hw/avrdude-GUI/avrdude-GUI-1.0.5.zip'>direct download link</a>]. It turns out this worked... the chip now did what the previous one did... but in the MAX232 breadboard it still would not accept a new sketch from the Arduino GUI. I attempted to find other methods to 'completely erase/reset' an Atmega, but I couldn't get it to work and so just accepted it's fate of having to copy it's brother.</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/arduino/building-an-arduino-from-scratch/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenLCB: Controlling Your Model Railroad</title>
		<link>http://modelrail.otenko.com/openlcb/openlcb-controlling-your-model-railroad</link>
		<comments>http://modelrail.otenko.com/openlcb/openlcb-controlling-your-model-railroad#comments</comments>
		<pubDate>Thu, 09 Feb 2012 04:41:51 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[OpenLCB]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2440</guid>
		<description><![CDATA[It's been a while since anything remotely home-brew/electronic for model railways has appeared on this blog... but this is about to change. It's now time to try a third method of electronic control after previous attempts of controlling via DCC Boosters and then Arduino Microprocessors. Don E. Goodman-Wilson, who you would've seen commenting on a [...]]]></description>
			<content:encoded><![CDATA[<p>It's been a while since anything remotely home-brew/electronic for model railways has appeared on this blog... but this is about to change. It's now time to try a third method of electronic control after previous attempts of controlling via <a href='http://modelrail.otenko.com/dcc/researching-a-dcc-booster-circuit-and-dcc-computer-control'>DCC Boosters</a> and then <a href='http://modelrail.otenko.com/arduino/controlling-your-trains-with-an-arduino'>Arduino Microprocessors</a>.</p>
<p><a href='http://railstars.com/about-railstars/'>Don E. Goodman-Wilson</a>, who you would've seen commenting on a few of my posts here regarding DCC and Arduino, has gone all-out and started production of some pretty amazing technology. He's started a company called <a href='http://railstars.com/'>railstars</a> which is currently providing DCC boosters, central units and throttles. Not only are these perfectly marketed and designed, they also now incorporate a new concept known as <a href='http://openlcb.org/'>OpenLCB</a>.</p>
<h2>OpenLCB</h2>
<div style='float:left;margin:6px 20px 8px 0px;'><img src='http://openlcb.org/trunk/web/logo-ajs-dph.png' width="200" height="85" /></div>
<p> OpenLCB is an initiative by the OpenLCB team to define a network (protocol and required hardware) to control pretty much everything on your model railway. The end result is layout control and automation which is easy to install, configure and extend. As of the 9th of February 2012, there are motions for <a href='http://www.nmra.org/'>NMRA</a> to work closely with the OpenLCB project in a venture named <a href='http://sourceforge.net/apps/trac/nmranet/'>NMRAnet</a>... stay tuned for more information on that!</p>
<p>It should be noted that the OpenLCB team is still in the early stages of design work and, although prototypes have been built and tested, there is a lot of work to do to get final products to market.</p>
<p>The basic concept consists of a control bus with nodes located along a network bus, terminated at each end. Each node has it's own processor that can create and respond to events. Events can be anything from controlling accessories and trains on your layout to sending informational messages to remote displays. With this, you can have a node controlling points around your layout, a node controlling trains indirectly via DCC and a final node acting as a control panel with buttons and switches configured to send specific events.</p>
<p>In case you were wondering, the OpenLCB venture has no intention to interact with DCC. Other parties, such as Don with his railstars products, are currently bringing DCC in as an option, but do not intend to outright replace it! Don's efforts with railstars OpenLCB components will allow DCC commands to be transmitted over the OpenLCB protocol allowing each node on the network to respond appropriately. A lot of opportunities will open up with this as you will then be able to use the OpenLCB network to transmit DCC information, allowing completely separate DCC blocks on your layout.</p>
<p>You can find a lot more information about OpenLCB <a href='http://openlcb.org/trunk/documents/FirstLookDescription.html'>here at their 'First Look' page</a>.</p>
<h2>I want to control my DC Layout?</h2>
<p>There are currently no nodes designed for use as standard DC throttles; fortunately, controlling DC layouts via the OpenLCB bus should be completely feasible! As per my previous articles on Arduino control of model railways, a simple PWM motor controller is all that is required to supply a model railway with the appropriate power levels. Since OpenLCB is also very compatible with Arduino, it would also therefore be quite practical to transform an Arduino+Motor Controller into an OpenLCB 'node'. This would mean that any 'controller node' could then send 'events' to the 'pwm node' which would then act accordingly... be that 'supply 50% throttle'.</p>
<p>I'd spoken to Don on this concept and he indicated that the OpenLCB key concept was to control 'Trains' rather than 'Blocks'. This is the same as DCC... as you supply the same power+data to all rails on your layout and the locomotives respond only when called. The issue then with DC control is that trains, sitting in blocks, will respond as soon as you apply power. One answer would be to have detection circuits around the layout which would follow movement and assume where each train was. Another would be to have the 'pwm nodes' act simply as 'accessories' that supply power to each block. This concept is still under discussion.</p>
<h2>What's Next...</h2>
<p>I really do want to get into development and testing of the OpenLCB system. Fortunately the whole lot is open source and one can even use standard Arduinos as 'nodes' based on the code available in the OpenLCB repository. Once I have enough components I'll be building and connecting a few nodes to test the communications functionality. After that I'll go ahead and design a block-controller and pwm node. At the least this will allow me to prototype some ideas whilst controlling my latest n-scale-in-a-table layout.</p>
<p>The OpenLCB project will also shortly be offering a '<a href='http://www.openlcb.org/trunk/prototypes/hardware/r-io/index.html'>dev kit</a>' to parties interested in developing for the OpenLCB project. It will have enough components to create a local network able to control a layout. You can find out more information on the <a href='http://www.jnsforum.com/index.php/topic,6217.0.html'>Japanese Modelling &#038; Japan Rail Enthusiasts Forum</a>.</p>
<p>I intend on keeping everyone updated as I tackle the concept of DC in the newly formed OpenLCB realm.</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/openlcb/openlcb-controlling-your-model-railroad/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lima HO NS Koploper</title>
		<link>http://modelrail.otenko.com/n-scale-models/lima-ho-ns-koploper</link>
		<comments>http://modelrail.otenko.com/n-scale-models/lima-ho-ns-koploper#comments</comments>
		<pubDate>Thu, 10 Nov 2011 02:31:08 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[MRR]]></category>
		<category><![CDATA[HO Scale]]></category>
		<category><![CDATA[Netherlands]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2413</guid>
		<description><![CDATA[I purchased one of these from Schaal Treinen Huis in Amsterdam after travelling on one to Groningen. The Koploper reminds me a lot of the JR West Thunderbird (683 Series). The review? It runs like a dog due to it only having a single motorised end carriage (fortunately with all-wheel pickup) and the lighting shines [...]]]></description>
			<content:encoded><![CDATA[<p>I purchased one of these from <a href='http://www.schaaltreinenhuis.nl/'>Schaal Treinen Huis</a> in Amsterdam after travelling on one to Groningen. The Koploper reminds me a lot of the <a href='http://en.wikipedia.org/wiki/Thunderbird_(train)'>JR West Thunderbird (683 Series)</a>.</p>
<p>The review? It runs like a dog due to it only having a single motorised end carriage (fortunately with all-wheel pickup) and the lighting shines brightly though the shell.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10576?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Lima HO NS Koploper"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10576?size=thumb" alt="Lima HO NS Koploper"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10577?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Lima HO NS Koploper"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10577?size=thumb" alt="Lima HO NS Koploper"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10586?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Lima HO NS Koploper"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10586?size=thumb" alt="Lima HO NS Koploper"></a></p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10582?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Lima HO NS Koploper"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10582?size=thumb" alt="Lima HO NS Koploper"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10584?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Lima HO NS Koploper"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10584?size=thumb" alt="Lima HO NS Koploper"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10585?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Lima HO NS Koploper"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10585?size=thumb" alt="Lima HO NS Koploper"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10581?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Lima HO NS Koploper"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10581?size=thumb" alt="Lima HO NS Koploper"></a></p>
<p>As you can see, the train I bought included an add-on carriage and all packaging. The price tag was on-par with what I'm seeing on eBay nowadays. The train was in a glass cabinet on display when I bought it and I didn't realise that the base package only contained one coach. I have since found and purchased another coach from eBay and will attempt to extend this set. You can also see in the comparison shot of the two passenger cars that they are slightly differing in colour. Unfortunately, this is just a side-effect from purchasing second-hand; I have no idea what their story is and if the main set was left in the sun too long... </p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10578?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Lima HO NS Koploper"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10578?size=thumb" alt="Lima HO NS Koploper"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10579?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Lima HO NS Koploper"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10579?size=thumb" alt="Lima HO NS Koploper"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10580?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Lima HO NS Koploper"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10580?size=thumb" alt="Lima HO NS Koploper"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10583?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Lima HO NS Koploper"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10583?size=thumb" alt="Lima HO NS Koploper"></a></p>
<p>Either way, it's a great looking train set.</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/n-scale-models/lima-ho-ns-koploper/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Southern Spirit &#8211; November 2011</title>
		<link>http://modelrail.otenko.com/australian-trains/the-southern-spirit-november-2011</link>
		<comments>http://modelrail.otenko.com/australian-trains/the-southern-spirit-november-2011#comments</comments>
		<pubDate>Mon, 07 Nov 2011 08:04:59 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[AUS]]></category>
		<category><![CDATA[Australia]]></category>
		<category><![CDATA[Prototypes]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2405</guid>
		<description><![CDATA[Right, it's that time of year again... The Southern Spirit was tabled to come back through Melbourne from Adelaide on the 5th and 6th of November. What better excuse for a drive out west to see what had been happening... Of course, there's always concerns that driving 400kms might be a complete waste of time [...]]]></description>
			<content:encoded><![CDATA[<p>Right, it's that time of year again... The Southern Spirit was <a href='http://extranet.artc.com.au/docman/DocManFiles/DocTypes/TAA/Files/1312-2011.PDF'>tabled to come back through Melbourne from Adelaide on the 5th and 6th of November</a>. What better excuse for a drive out west to see what had been happening...</p>
<p>Of course, there's always concerns that driving 400kms might be a complete waste of time and <a href='http://extranet.artc.com.au/docman/DocManFiles/DocTypes/TAA/Files/1393-2011.PDF'>this TAA on occupations near Great Western</a> should have probably received more of my attention. Just in case you're wondering... an 'occupation' is where the <a href='http://www.artc.com.au/'>Australian Rail Track Corporation</a> has requested complete manual control of a section of track. In this case it was the area between Pyrenees Loop – Great Western Loop and Great Western Loop – Deep Lead Loop... they were to do ballast cleaning!? ... this might actually be worth the trek for!</p>
<h2>Planning</h2>
<p>As per usual, I perused through ARTC's Train Alteration Advice and determined items which might have applied to the 5th of November; fortunately there was nothing apart from the above ballast cleaning. I therefore recorded the times on ARTC's timetables for the area into a diamond diagram and, from this, worked out where I should have been when. I, this time, wanted to check out places I hadn't been to yet and therefore started working out what train I could see where.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10559?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Diamond diagram for chasing the SS"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10559?size=thumb" alt="Diamond diagram for chasing the SS"></a></p>
<p>How to read the above? The vertical axis shows the time-of-day and the horizontal the location. Each location has an arrival and departure time... so if you see a flat horizontal line for any service then it means that train has not stopped. Therefore, the train with the flat line will be moving whilst the diagonal will be waiting in a loop when you see two lines intersecting.</p>
<p>From the above you can see where all the regularly scheduled trains cross. I had errands to run on Saturday morning and, based on google maps estimates, could only just get to Tatyoon Loop by 11:00am. This would just be enough to see 6AM3 pass The Overland. The goal was then to wait for the Mineral Sands from Portland and follow it through to Murtoa. I would then wait for the Horsham container train, arriving in time to see the Southern Spirit arrive. 4PM6 would then be following and I'd choose a point along the way back to see this again.</p>
<h2>Tatyoon</h2>
<p>No, not <a href='http://en.wikipedia.org/wiki/Tatooine'>Tatooine</a>... there's no pod racing here. This was meant to be a loop for a pass, but it didn't seem anywhere near long enough. There was a seemingly-abandoned grain silo with a definitely unused siding for it. The poor old station platform didn't even have a station sign on it anymore... I imagine the last passenger service here would've been steam-hauled?</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10447?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Tatyoon Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10447?size=thumb" alt="Tatyoon Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10452?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Silos at Tatyoon"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10452?size=thumb" alt="Silos at Tatyoon"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10460?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Silos at Tatyoon"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10460?size=thumb" alt="Silos at Tatyoon"></a><br />
 <a href="http://www.otenko.com/gallery3/index.php/rest/data/10450?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Silos at Tatyoon"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10450?size=thumb" alt="Silos at Tatyoon"></a>  <a href="http://www.otenko.com/gallery3/index.php/rest/data/10453?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Tatyoon Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10453?size=thumb" alt="Tatyoon Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10454?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Silos at Tatyoon"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10454?size=thumb" alt="Silos at Tatyoon"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10458?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Silos at Tatyoon"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10458?size=thumb" alt="Silos at Tatyoon"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10462?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Water tanks at Tatyoon"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10462?size=thumb" alt="Water tanks at Tatyoon"></a></p>
<p>I waited up until the time 6AM3 was meant to arrive but realised that I was lying to myself and it wasn't coming. The lighting at Tatyoon wasn't the best for The Overland, so I bolted to Maroona and waited for it there. At the western-end of the loop was a great view with the railway sweeping to the left... it would've been perfect in the morning sun for a Melbourne-bound freighter!</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10444?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Tatyoon - Looking towards Maroona"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10444?size=thumb" alt="Tatyoon - Looking towards Maroona"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10445?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Tatyoon - Looking towards Maroona"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10445?size=thumb" alt="Tatyoon - Looking towards Maroona"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10446?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Tatyoon - Looking towards Tatyoon"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10446?size=thumb" alt="Tatyoon - Looking towards Tatyoon"></a></p>
<h2>Maroona</h2>
<p>Yes, Ma-roo-na. Not to be confused with: Mooroopna, Moorooduc, Maroondah, Maroota, Mooralla, etc...<br />
This township is located due-south of Ararat (not do be confused with Ballarat) and ... there isn't much to it. Fortunately, there's a junction here to Portland which means the railway infrastructure was slightly interesting. The roads in the yard had been used recently and it seems that the trains to Portland must arrive into the yard and then depart, crossing the main.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10476?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Maroona Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10476?size=thumb" alt="Maroona Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10477?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Maroona Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10477?size=thumb" alt="Maroona Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10483?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Maroona Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10483?size=thumb" alt="Maroona Station"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10484?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Maroona Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10484?size=thumb" alt="Maroona Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10487?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Maroona Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10487?size=thumb" alt="Maroona Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10490?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Old point levers at Maroona"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10490?size=thumb" alt="Old point levers at Maroona"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10482?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Maroona Yard"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10482?size=thumb" alt="Maroona Yard"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10486?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Maroona Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10486?size=thumb" alt="Maroona Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10485?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Line to Portland"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10485?size=thumb" alt="Line to Portland"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10489?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Maroona Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10489?size=thumb" alt="Maroona Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10491?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Maroona Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10491?size=thumb" alt="Maroona Station"></a></p>
<p>The Overland, running 25 minutes late, arrived from the East and proceeded at a slower-than-usual pace through the station. This was the first and last time I was to see it.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10494?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Overland approaching Maroona"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10494?size=thumb" alt="Overland approaching Maroona"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10495?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Overland approaching Maroona"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10495?size=thumb" alt="Overland approaching Maroona"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10498?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Overland passing Maroona"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10498?size=thumb" alt="Overland passing Maroona"></a></p>
<p>I then waited for the Mineral Sands train... but realised it was never going to turn up. I therefore decided the better option was to bypass Ararat and head to Murtoa.</p>
<h2>Murtoa</h2>
<p>I'd never been here either... It's a large detour from the highway and it's the reason why I previously beat The Overland to Horsham as, although it can do 115km/h, the path via Murtoa adds quite a few more kilometres. Of course, it also meant I wouldn't see The Overland at Murtoa as I was never going to catch up to it on the country roads. Murtoa is the junction for the branch North to Hopetoun... the rails were quite shiny, so something must've run that way recently, but the Mineral Sands train wasn't to run this day.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10502?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Murtoa Yard"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10502?size=thumb" alt="Murtoa Yard"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10503?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Line to Warracknabeal/Hopetoun"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10503?size=thumb" alt="Line to Warracknabeal/Hopetoun"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10507?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Looking towards Murtoa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10507?size=thumb" alt="Looking towards Murtoa Station"></a></p>
<p>I decided that I'd wait here for the Horsham freight. There was no reason it wasn't running, but as The Overland was 25mins late, this train would probably also be late. </p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10510?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Grain infrastructure at Murtoa"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10510?size=thumb" alt="Grain infrastructure at Murtoa"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10514?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Murtoa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10514?size=thumb" alt="Murtoa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10515?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Murtoa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10515?size=thumb" alt="Murtoa Station"></a></p>
<p>After dealing with wildlife (brown snakes, etc..) the train came through fast.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10516?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="8030+GML10 on Horsham freight"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10516?size=thumb" alt="8030+GML10 on Horsham freight"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10517?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="8030+GML10 on Horsham freight"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10517?size=thumb" alt="8030+GML10 on Horsham freight"></a></p>
<p>I then jumped in the car to Horsham... expecting to see the tail of this train, but it had a headstart on me and there was no chance.</p>
<h2>Horsham</h2>
<p>Last time we saw C501 and T386 doing the Horsham freight, this time it was 8030 and GML10. Other than that, not much as changed... same colourful characters on the platform watching the trains go by. Actually, there is now a rail tractor LOK001 doing the shunting/splitting of the container train instead of the actual locos that brought it in.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10520?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Rail Tractor used for shunting"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10520?size=thumb" alt="Rail Tractor used for shunting"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10525?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Rail tractor at Horsham"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10525?size=thumb" alt="Rail tractor at Horsham"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10526?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="8030+GML10 at Horhsam"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10526?size=thumb" alt="8030+GML10 at Horhsam"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10528?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="GML10 at Horsham"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10528?size=thumb" alt="GML10 at Horsham"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10529?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="8030+7334 at Horsham"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10529?size=thumb" alt="8030+7334 at Horsham"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10533?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="LOK001+8030+GML10 at Horsham"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10533?size=thumb" alt="LOK001+8030+GML10 at Horsham"></a></p>
<p>NR85 brought the Southern Spirit in around 20mins late. The consist was as long as usual.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10537?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NR85 on Southern Spirit at Horsham"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10537?size=thumb" alt="NR85 on Southern Spirit at Horsham"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10539?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NR85 on Southern Spirit at Horsham"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10539?size=thumb" alt="NR85 on Southern Spirit at Horsham"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10540?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Horsham Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10540?size=thumb" alt="Horsham Station"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10541?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Southern Spirit at Horsham"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10541?size=thumb" alt="Southern Spirit at Horsham"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10542?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Southern Spirit at Horsham"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10542?size=thumb" alt="Southern Spirit at Horsham"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10543?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Southern Spirit at Horsham"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10543?size=thumb" alt="Southern Spirit at Horsham"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10545?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Southern Spirit at Horsham"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10545?size=thumb" alt="Southern Spirit at Horsham"></a></p>
<p>And then 4PM6 came through on time based on its amended running.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10548?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="4PM6 passes Southern Spirit at Horsham"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10548?size=thumb" alt="4PM6 passes Southern Spirit at Horsham"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10549?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="4PM6 passes Southern Spirit at Horsham"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10549?size=thumb" alt="4PM6 passes Southern Spirit at Horsham"></a></p>
<p>And that was it... the day had turned dim and the freighter was running with the light for the rest of the trip... I chose to return home.</p>
<h2>Ararat</h2>
<p>So, the initial TAA I mentioned had something about ballast cleaning in it? I forgot to tell you that I actually saw the track gang in the first loop directly after Ararat. It had to be a loop (was a fair distance from the highway) as The Overland had already bolted through. I was hoping they'd be in a location closer to a road on the way back, but they'd already packed up and were in Ararat yard.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10551?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Track machines at Ararat"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10551?size=thumb" alt="Track machines at Ararat"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10552?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Track machines at Ararat"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10552?size=thumb" alt="Track machines at Ararat"></a></p>
<h2>The next day...</h2>
<p>The Southern Spirit spend the night in Maroona. It proceeded east via Melbourne but was to only stop at Broadmeadows briefly. Fortunately it was to pass the large standard gauge viaducts as per usual and I decided to catch it at the one closest to Jacana. The up V/Line SG Albury service was running around 30 minutes late, but the Southern Spirit then got the green and bolted past.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10553?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="N470 on late up Albury at Jacana"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10553?size=thumb" alt="N470 on late up Albury at Jacana"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10554?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NR85 heads to BMS"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10554?size=thumb" alt="NR85 heads to BMS"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10555?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NR85 heads to BMS"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10555?size=thumb" alt="NR85 heads to BMS"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10557?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NR85 heads to BMS"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10557?size=thumb" alt="NR85 heads to BMS"></a></p>
<p>And that was it... this train returns via Melbourne on the 14th of November. It will actually pass via Southern Cross Station, after a pause up in Somerton. We'll see what happens...</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/australian-trains/the-southern-spirit-november-2011/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cup Day: NSWRTM heads to Mexico</title>
		<link>http://modelrail.otenko.com/australian-trains/cup-day-nswrtm-heads-to-mexico</link>
		<comments>http://modelrail.otenko.com/australian-trains/cup-day-nswrtm-heads-to-mexico#comments</comments>
		<pubDate>Wed, 02 Nov 2011 07:59:32 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[AUS]]></category>
		<category><![CDATA[Australia]]></category>
		<category><![CDATA[Prototypes]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2393</guid>
		<description><![CDATA[Just in case the title confused you: Most Australian's know Victoria as 'south of the border' and therefore 'Mexico'. It's a colloquialism/pay-out that's lasted generations and wont stop anytime soon. Now that we have that sorted we can get back on to the trains... The NSW Rail Transport Museum owns a large amount of heritage [...]]]></description>
			<content:encoded><![CDATA[<p>Just in case the title confused you: Most Australian's know Victoria as 'south of the border' and therefore 'Mexico'. It's a colloquialism/pay-out that's lasted generations and wont stop anytime soon. Now that we have that sorted we can get back on to the trains... The <a href='http://www.nswrtm.org.au/'>NSW Rail Transport Museum</a> owns a large amount of heritage stock and annually visits Melbourne for the infamous 'Melbourne Cup' horse race. Unfortunately the train didn't make it all the way last year due to a derailment at Albury!</p>
<h2>West Footscray</h2>
<p>Melbourne struggles when it comes to good trainspotting locations making use of the morning sun. The main issue is that most of the good locations (viaducts, etc...) are good in the morning for out-bound traffic and the afternoon for in-bound traffic. As the train was in-bound in the AM it was time to think of a new strategy. I'd previously checked out Middle Footscray, but the options were limited and so I instead headed up to West Footscray.</p>
<p>It turns out 3 other onlookers had thought up the same concept and we all sat and waited. Fortunately we didn't have to wait long as the usual suspects soon came through... The XPT, The Overland, NRs on containers, Gs on containers... etc... etc...</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10364?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="LDP001 at West Footscray"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10364?size=thumb" alt="LDP001 at West Footscray"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10369?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="XPT at West Footscray"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10369?size=thumb" alt="XPT at West Footscray"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10373?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NR+NR at West Footscray"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10373?size=thumb" alt="NR+NR at West Footscray"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10365?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="V/Locity at West Footscray"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10365?size=thumb" alt="V/Locity at West Footscray"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10370?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="XPT at West Footscray"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10370?size=thumb" alt="XPT at West Footscray"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10375?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NR+NR at West Footscray"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10375?size=thumb" alt="NR+NR at West Footscray"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10377?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NR on Overland leaving Melbourne"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10377?size=thumb" alt="NR on Overland leaving Melbourne"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10381?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="G+DL+G on 2CM2"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10381?size=thumb" alt="G+DL+G on 2CM2"></a></p>
<p>And then ... the one we'd all been waiting for...</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10389?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="4490+4520 on RTM Southern Aurora"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10389?size=thumb" alt="4490+4520 on RTM Southern Aurora"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10390?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="4490+4520 on RTM Southern Aurora"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10390?size=thumb" alt="4490+4520 on RTM Southern Aurora"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10393?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="4490+4520 on RTM Southern Aurora"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10393?size=thumb" alt="4490+4520 on RTM Southern Aurora"></a></p>
<p>Pretty ugly eh? a 44-Class arse-end-leading isn't the prettiest site at 9am in the morning. Either way, it was worth the wait as the damn thing hauled ass through Footscray. That was it for the mornings movements; the train wasn't due out again until 1830.</p>
<h2>Departures</h2>
<p>ARTC posted that the departure time was 1830 and the train was right on time... fortunately there was more than enough entertainment at Sims St right up until the train left.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10398?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NR18 and QR6004 at South Dynon Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10398?size=thumb" alt="NR18 and QR6004 at South Dynon Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10400?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NR47+NR57 arriving with steel"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10400?size=thumb" alt="NR47+NR57 arriving with steel"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10402?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NR47+NR57 arriving with steel"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10402?size=thumb" alt="NR47+NR57 arriving with steel"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10406?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="SS, GHAN, IP at South Dynon Loco"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10406?size=thumb" alt="SS, GHAN, IP at South Dynon Loco"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10408?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NR89 departing with intermodal"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10408?size=thumb" alt="NR89 departing with intermodal"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10412?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="G530 departing South Dynon"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10412?size=thumb" alt="G530 departing South Dynon"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10416?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="G530 departing South Dynon"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10416?size=thumb" alt="G530 departing South Dynon"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10418?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="A78 departing South Dynon"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10418?size=thumb" alt="A78 departing South Dynon"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10422?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="A78 departing South Dynon"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10422?size=thumb" alt="A78 departing South Dynon"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10425?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="V/Line Albury Service departing Melbourne"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10425?size=thumb" alt="V/Line Albury Service departing Melbourne"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10427?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="V/Line Albury Service departing Melbourne"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10427?size=thumb" alt="V/Line Albury Service departing Melbourne"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10430?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="4520 passing 8114"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10430?size=thumb" alt="4520 passing 8114"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10435?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Southern Aurora deparing Melbourne"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10435?size=thumb" alt="Southern Aurora deparing Melbourne"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10439?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Southern Aurora deparing Melbourne"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10439?size=thumb" alt="Southern Aurora deparing Melbourne"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10442?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Southern Aurora deparing Melbourne"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10442?size=thumb" alt="Southern Aurora deparing Melbourne"></a></p>
<p>...and that was a wrap... Supposedly the Southern Spirit is back in town again this weekend... might go out West and see what is happening.</p>
<p><a href='http://modelrail.otenko.com/photo-album?itemid=10361'>Complete album here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/australian-trains/cup-day-nswrtm-heads-to-mexico/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yass Junction &#8211; October 2011</title>
		<link>http://modelrail.otenko.com/australian-trains/yass-junction-october-2011</link>
		<comments>http://modelrail.otenko.com/australian-trains/yass-junction-october-2011#comments</comments>
		<pubDate>Tue, 01 Nov 2011 01:00:32 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[AUS]]></category>
		<category><![CDATA[Australia]]></category>
		<category><![CDATA[Prototypes]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2385</guid>
		<description><![CDATA[The old haunt hadn't been visited for months; it was time to check out if Saturday mornings still had a good selection of traffic. It turns out that there weren't nearly as many grain trains as I would've expected and there were absolutely zero south-bound container trains... The XPL and XPT ran as usual though. [...]]]></description>
			<content:encoded><![CDATA[<p>The old haunt hadn't been visited for months; it was time to check out if Saturday mornings still had a good selection of traffic. It turns out that there weren't nearly as many grain trains as I would've expected and there were absolutely zero south-bound container trains... The XPL and XPT ran as usual though.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10323?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="CLF4 leading freight through Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10323?size=thumb" alt="CLF4 leading freight through Yass Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10327?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="8159 on grain at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10327?size=thumb" alt="8159 on grain at Yass Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10331?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NR76 leading steel through Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10331?size=thumb" alt="NR76 leading steel through Yass Junction"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10333?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NR76 leading steel through Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10333?size=thumb" alt="NR76 leading steel through Yass Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10334?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Griffith Xplorer at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10334?size=thumb" alt="Griffith Xplorer at Yass Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10340?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="XPT at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10340?size=thumb" alt="XPT at Yass Junction"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10341?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="XPT at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10341?size=thumb" alt="XPT at Yass Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10342?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="XPT at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10342?size=thumb" alt="XPT at Yass Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10343?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="XPT at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10343?size=thumb" alt="XPT at Yass Junction"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10325?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="CLF4 leading freight through Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10325?size=thumb" alt="CLF4 leading freight through Yass Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10328?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="8159 on grain at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10328?size=thumb" alt="8159 on grain at Yass Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10337?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Griffith Xplorer at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10337?size=thumb" alt="Griffith Xplorer at Yass Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10338?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Griffith Xplorer at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10338?size=thumb" alt="Griffith Xplorer at Yass Junction"></a></p>
<h2>Infrastructure</h2>
<p>Yass Junction Signal Box seems to have had a repainting. I imagine ARHS ACT are to be commended as they probably still have the lease on it. Meanwhile the mudholes around the place are still just as bad as ever.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10339?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Repainted signal box at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10339?size=thumb" alt="Repainted signal box at Yass Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10329?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Mudholes at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10329?size=thumb" alt="Mudholes at Yass Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10330?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Mudholes at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10330?size=thumb" alt="Mudholes at Yass Junction"></a></p>
<h2>...and then something different</h2>
<p>It's always nice when the signals switch red... It means someone is in control and something different is happening. Seeing the points then shift is better, as it usually means something is about to wrong-road into the loop and allow a pass. This time around it was BL30 (I hadn't seen a BL in Yass before) leading 3x 48s on what must have been a pretty heavy load of grain.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10345?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="BL30+48+48+48 at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10345?size=thumb" alt="BL30+48+48+48 at Yass Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10347?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="BL30+48+48+48 at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10347?size=thumb" alt="BL30+48+48+48 at Yass Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10348?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="BL30+48+48+48 at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10348?size=thumb" alt="BL30+48+48+48 at Yass Junction"></a></p>
<p>The end of the loop is a fair way north of the station. The better viewpoint is a road bridge up along Cooks Hill Road. I could've just stayed and seen what was passing from the platforms... but I hadn't been up that way in a while.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10349?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="BL30+48+48+48 at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10349?size=thumb" alt="BL30+48+48+48 at Yass Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10350?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="FL220 in LE consist heading North"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10350?size=thumb" alt="FL220 in LE consist heading North"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10351?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="FL220 in LE consist heading North"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10351?size=thumb" alt="FL220 in LE consist heading North"></a></p>
<p>It turns out that light-engine consists can fly! FL220 lead 48s35, LVR's 4702 and 48s33 on the up, flying past me near the road bridge. The poor old BL and 48s then struggled up the incline and continued north.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10353?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="BL30+48+48+48 at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10353?size=thumb" alt="BL30+48+48+48 at Yass Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10355?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="BL30+48+48+48 at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10355?size=thumb" alt="BL30+48+48+48 at Yass Junction"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10356?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="BL30+48+48+48 at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10356?size=thumb" alt="BL30+48+48+48 at Yass Junction"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10358?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="4898 on grain at Yass"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10358?size=thumb" alt="4898 on grain at Yass"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10359?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="BL30+48+48+48 at Yass Junction"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10359?size=thumb" alt="BL30+48+48+48 at Yass Junction"></a></p>
<p>And that was a wrap... the day had actually warmed up and there was family to visit.</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/australian-trains/yass-junction-october-2011/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spain &#8211; August/September 2011</title>
		<link>http://modelrail.otenko.com/international/spain-augustseptember-2011</link>
		<comments>http://modelrail.otenko.com/international/spain-augustseptember-2011#comments</comments>
		<pubDate>Wed, 12 Oct 2011 00:45:58 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[INTL]]></category>
		<category><![CDATA[Europe]]></category>
		<category><![CDATA[Prototypes]]></category>
		<category><![CDATA[Spain]]></category>
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2371</guid>
		<description><![CDATA[The final country for the European leg of the world-tour was Spain. I'd previously purchased high-speed rail tickets from RENFE and was looking forward to using them. Time in Spain was to be shared between Valencia, Barcelona and Madrid. Valencia was visited briefly; the goal there was to head out of town to 'La Tomatina'... [...]]]></description>
			<content:encoded><![CDATA[<p>The final country for the European leg of the world-tour was Spain. I'd previously <a href='modelrail.otenko.com/international/buying-renfe-train-tickets-online'>purchased high-speed rail tickets from RENFE</a> and was looking forward to using them.</p>
<p>Time in Spain was to be shared between Valencia, Barcelona and Madrid. Valencia was visited briefly; the goal there was to head out of town to 'La Tomatina'... I can only recommend that NOBODY bother doing this... ever. Barcelona then received the most time and Madrid got one night.</p>
<p>We landed in Barcelona from Athens and headed straight for Barcelona Sants. We had a connecting train from there to Valencia in 'Preferente Class'. This happened to be first class and was purchased very cheaply!</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10216?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="High-speed at Barcelona Sants"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10216?size=thumb" alt="High-speed at Barcelona Sants"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10220?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Headphones in Renfe First Class"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10220?size=thumb" alt="Headphones in Renfe First Class"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10221?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Lunch on Renfe First Class"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10221?size=thumb" alt="Lunch on Renfe First Class"></a></p>
<p>Before we knew it we were speeding south to Valencia.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10222?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Not moving yet..."><img src="http://www.otenko.com/gallery3/index.php/rest/data/10222?size=thumb" alt="Not moving yet..."></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10223?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="En-route to Valencia"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10223?size=thumb" alt="En-route to Valencia"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10224?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="First class cabin on Renfe"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10224?size=thumb" alt="First class cabin on Renfe"></a></p>
<h2>Valencia</h2>
<p>The rail system around Valencia was quite nice, it seems they had recently extended the high-speed there and built a new station (or were in the progress of converting an old one.) The old Valencia Nord station was also very impressive.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10225?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Valencia Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10225?size=thumb" alt="Valencia Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10226?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Renfe at Valencia"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10226?size=thumb" alt="Renfe at Valencia"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10227?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Renfe at Valencia"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10227?size=thumb" alt="Renfe at Valencia"></a></p>
<p>As the main goal was a daytrip to La Tomatina in Bunol, there wasn't much time to check out the freight yards in the south. </p>
<h2>Barcelona</h2>
<p>I'd seen a lot of freight action near Tarragona from the train to Valencia and wanted to check it out. A day was spent on the rail around Barcelona and, due to a late start, I decided that Tarragona was a little too far. Instead I made it half way south through to Sitges and Cunit.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10233?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Track machine at Sitges"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10233?size=thumb" alt="Track machine at Sitges"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10234?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Track machine at Sitges"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10234?size=thumb" alt="Track machine at Sitges"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10236?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Track machine at Sitges"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10236?size=thumb" alt="Track machine at Sitges"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10237?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU at Cunit"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10237?size=thumb" alt="EMU at Cunit"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10239?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Cunit Station, Spain"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10239?size=thumb" alt="Cunit Station, Spain"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10243?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU approaching Cunit"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10243?size=thumb" alt="EMU approaching Cunit"></a> </p>
<p>There wasn't a freight train to be seen and hardly any high-speed stock, mainly just standard EMUs floating around. I therefore decided to go to Martorell in the north of Barcelona where, via google maps, I'd seen that freight, passenger and high-speed converged.</p>
<p>Fortunately I chose to stop through Garraf on the way through. This town is on the coast just above Sitges and has a beautiful old station building. There is a tunnel to the south and it all provides a great backdrop for shots.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10261?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Garraf Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10261?size=thumb" alt="Garraf Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10266?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU approaching Garraf Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10266?size=thumb" alt="EMU approaching Garraf Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10269?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU departing Garraf Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10269?size=thumb" alt="EMU departing Garraf Station"></a></p>
<p>Especially when a high-speed consist comes through...</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10279?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="High-speed passing Garraf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10279?size=thumb" alt="High-speed passing Garraf"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10280?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="High-speed passing Garraf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10280?size=thumb" alt="High-speed passing Garraf"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10281?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="High-speed passing Garraf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10281?size=thumb" alt="High-speed passing Garraf"></a></p>
<p>At Martorell I was instantly greeted by a freighter heading west.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10288?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight at Martorell"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10288?size=thumb" alt="Freight at Martorell"></a></p>
<p>I then wandered from the station to the high-speed line around one kilometre north. I only had to wait 5 minutes to see a train bolt past.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10289?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="High-speed near Martorell"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10289?size=thumb" alt="High-speed near Martorell"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10290?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="High-speed near Martorell"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10290?size=thumb" alt="High-speed near Martorell"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10291?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="High-speed near Martorell"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10291?size=thumb" alt="High-speed near Martorell"></a></p>
<p>I then returned to Martorell station and was greeted by a SEAT Car Carrier.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10292?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Martorell Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10292?size=thumb" alt="Martorell Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10293?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="SEAT Car Carrier at Martorell"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10293?size=thumb" alt="SEAT Car Carrier at Martorell"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10294?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="SEAT Car Consist at Martorell"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10294?size=thumb" alt="SEAT Car Consist at Martorell"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10295?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="SEAT Car Carrier at Martorell"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10295?size=thumb" alt="SEAT Car Carrier at Martorell"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10296?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="FGC on SEAT Car Consist at Martorell"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10296?size=thumb" alt="FGC on SEAT Car Consist at Martorell"></a></p>
<p>I'd also seen via google maps that there was a nice tunnel/castle/vineyard area one stop east of Martorell. The station was known as Castellbisbal and was easy to get to. I caught the next service east and wandered up to the road overpass of the high-speed.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10298?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="High-speed line near Castellbisbal"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10298?size=thumb" alt="High-speed line near Castellbisbal"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10300?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="High-speed passing Castellbisbal"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10300?size=thumb" alt="High-speed passing Castellbisbal"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10301?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="High-speed passing Castellbisbal"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10301?size=thumb" alt="High-speed passing Castellbisbal"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10302?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="High-speed passing Castellbisbal"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10302?size=thumb" alt="High-speed passing Castellbisbal"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10299?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU passing Castellbisbal"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10299?size=thumb" alt="EMU passing Castellbisbal"></a></p>
<p>I then wandered back to the station.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10297?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Shunter at Castellbisbal"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10297?size=thumb" alt="Shunter at Castellbisbal"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10304?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Shunter at Castellbisbal"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10304?size=thumb" alt="Shunter at Castellbisbal"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10303?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU at Castellbisbal"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10303?size=thumb" alt="EMU at Castellbisbal"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10305?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU approaching Castellbisbal"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10305?size=thumb" alt="EMU approaching Castellbisbal"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10306?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU approaching Castellbisbal"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10306?size=thumb" alt="EMU approaching Castellbisbal"></a></p>
<p>When I last expected it a freight came through heading west.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10308?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight passing Castellbisbal"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10308?size=thumb" alt="Freight passing Castellbisbal"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10309?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight passing Castellbisbal"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10309?size=thumb" alt="Freight passing Castellbisbal"></a> </p>
<p>And that was it for the daytrip...</p>
<h2>Madrid</h2>
<p>The final trip was 'Touriste Class' to Madrid. This was on the ICE-3'looking rolling stock from Barcelona Sants to Madrid Atocha. The service was non-existent compared to First Class, but the train was great. Unfortunately the track condition along the way lead to a few rollercoaster-like experiences. At one point we even had to hold on to our drinks! I couldn't believe they were running the train at 300km/h over the rough patches.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10311?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="High-speed to Madrid"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10311?size=thumb" alt="High-speed to Madrid"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10312?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="High-speed cabin control panel"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10312?size=thumb" alt="High-speed cabin control panel"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10313?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="High-speed cabin"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10313?size=thumb" alt="High-speed cabin"></a></p>
<p>The final stop was Madrid Atocha. This was a newly rebuilt station, full of concrete. At least it was quite clean.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10314?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Madrid Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10314?size=thumb" alt="Madrid Station"></a></p>
<p>We stayed near a station called 'Principe Pio'. It seems to have two sides, one which they have rebuilt with the other falling into disrepair.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10317?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Principe Pio Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10317?size=thumb" alt="Principe Pio Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10316?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Príncipe Pío‎ Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10316?size=thumb" alt="Príncipe Pío‎ Station"></a></p>
<p>And that was it... the next day saw a flight to Hong Kong. They've since stopped freight to Hung Hom and so there was no real advantage to chasing trains. I vowed to do more upon returning to Oz.</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/international/spain-augustseptember-2011/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Athens &#8211; August 2011</title>
		<link>http://modelrail.otenko.com/international/athens-august-2011</link>
		<comments>http://modelrail.otenko.com/international/athens-august-2011#comments</comments>
		<pubDate>Mon, 10 Oct 2011 01:38:36 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[INTL]]></category>
		<category><![CDATA[Athens]]></category>
		<category><![CDATA[Europe]]></category>
		<category><![CDATA[Greece]]></category>
		<category><![CDATA[Prototypes]]></category>
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2354</guid>
		<description><![CDATA[The second last stop on the list of train-hunting was Athens. Greece, as we all know, has copped a beating globally over it's recent financial issues and this shows throughout the city. Many shops are closed or damaged, leaving a very solemn feeling with anyone travelling through. This also extends to the railways; the Goverment-owned [...]]]></description>
			<content:encoded><![CDATA[<p>The second last stop on the list of train-hunting was Athens. Greece, as we all know, has copped a beating globally over it's recent financial issues and this shows throughout the city. Many shops are closed or damaged, leaving a very solemn feeling with anyone travelling through. This also extends to the railways; the <a href='http://en.wikipedia.org/wiki/TrainOSE'>Goverment-owned TrainOSE</a> has been progressing the redevelopment of the main regional railway line (known as <a href='http://en.wikipedia.org/wiki/Proastiakos'>Proastiakos</a>) but this seems to have been put on hold.</p>
<h2>Larissis Station (aka 'Athens Central', 'Larissa Station')</h2>
<p>This is where everything starts to get very confusing; there is no direct Wikipedia reference to this station and, depending on which site you're browsing through, everyone has a different name for it. I've come across two reasons for this: firstly most people translate the Greek language into English differently and secondly it seems that the area used to have two stations for two different destinations. Peloponnisou, the second station, was closed in 2005, but I can't determine when the new Larissis station development started. Either way, as you can see below, it hasn't finished.</p>
<p>As I arrived a DMU was departing the original Larissis Station. The station was quite busy as the train was approaching.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10180?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DMU departing Larissa"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10180?size=thumb" alt="DMU departing Larissa"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10181?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DMU departing Larissa"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10181?size=thumb" alt="DMU departing Larissa"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10182?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DMU departing Larissa"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10182?size=thumb" alt="DMU departing Larissa"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10183?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DMU departing Larissa"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10183?size=thumb" alt="DMU departing Larissa"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10184?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DMU departing Larissa"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10184?size=thumb" alt="DMU departing Larissa"></a></p>
<p>The yard was looking pretty dismal... the track had been skewed to allow more point installations and there was a lot of material lying around in stockpiles.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10189?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Old point at Larissa"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10189?size=thumb" alt="Old point at Larissa"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10190?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Stockpiled sleepers at Larissa"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10190?size=thumb" alt="Stockpiled sleepers at Larissa"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10186?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Larissa Station Redevelopment"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10186?size=thumb" alt="Larissa Station Redevelopment"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10187?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Slewed track at Larissa"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10187?size=thumb" alt="Slewed track at Larissa"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10188?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Larissa Station Redevelopment"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10188?size=thumb" alt="Larissa Station Redevelopment"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10191?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Old/new track at Larissa"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10191?size=thumb" alt="Old/new track at Larissa"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10192?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Water feeder at Larissa"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10192?size=thumb" alt="Water feeder at Larissa"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10193?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Larissa Yard"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10193?size=thumb" alt="Larissa Yard"></a></p>
<p>I then did a lap of the area to see what had become of the new development. A track machine and a rail train were stabled in the empty platforms. I don't know how long 55-213 had been parked there, but there was absolutely no evidence of work being carried out at the time.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10194?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Track Machine at Larissa"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10194?size=thumb" alt="Track Machine at Larissa"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10196?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="55-213 at Larissa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10196?size=thumb" alt="55-213 at Larissa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10197?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="55-213 at Larissa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10197?size=thumb" alt="55-213 at Larissa Station"></a></p>
<p>At the other end of the station you could see the tunnelling that was partially in use. It was also made obvious that there was a lot more work to do on the station.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10198?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Larissa Station Redevelopment"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10198?size=thumb" alt="Larissa Station Redevelopment"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10199?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Tunnel southbound from Larissa"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10199?size=thumb" alt="Tunnel southbound from Larissa"></a><a href="http://www.otenko.com/gallery3/index.php/rest/data/10200?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Larissa Station Redevelopment"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10200?size=thumb" alt="Larissa Station Redevelopment"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10201?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Old Larissa Station (still in use)"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10201?size=thumb" alt="Old Larissa Station (still in use)"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10202?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="New Larissa Station platforms"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10202?size=thumb" alt="New Larissa Station platforms"></a></p>
<p>Finally, the underpass to the shopping area and Metro station had some nice artwork of days gone by.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10203?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Underpass art at Larissa"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10203?size=thumb" alt="Underpass art at Larissa"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10204?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Underpass art at Larissa"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10204?size=thumb" alt="Underpass art at Larissa"></a></p>
<p>That was it for Athens... the rest of the time in Greece was spent driving a Nissan Micra in Santorini on the wrong side of the road.<br />
The next stop was to be spain; it was finally time to use the <a href='http://modelrail.otenko.com/international/buying-renfe-train-tickets-online'>Renfe tickets I'd previously purchased</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/international/athens-august-2011/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Istanbul &#8211; August 2011</title>
		<link>http://modelrail.otenko.com/international/istanbul-august-2011</link>
		<comments>http://modelrail.otenko.com/international/istanbul-august-2011#comments</comments>
		<pubDate>Fri, 07 Oct 2011 02:32:50 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[INTL]]></category>
		<category><![CDATA[Europe]]></category>
		<category><![CDATA[Istanbul]]></category>
		<category><![CDATA[Prototypes]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[Turkey]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2335</guid>
		<description><![CDATA[Next on the list was Istanbul. Turkey is a huge country, but the 4 days inside its borders weren't to be enough to venture outside this amazing city. The city of Istanbul of two sides, separated by the Bosphorus River. It turns out that the western half is known as the 'European Side', as it's [...]]]></description>
			<content:encoded><![CDATA[<p>Next on the list was <a href='http://en.wikipedia.org/wiki/Istanbul'>Istanbul</a>. <a href='http://en.wikipedia.org/wiki/Turkey'>Turkey</a> is a huge country, but the 4 days inside its borders weren't to be enough to venture outside this amazing city.</p>
<p>The city of <a href='http://en.wikipedia.org/wiki/Istanbul'>Istanbul</a> of two sides, separated by the <a href='http://en.wikipedia.org/wiki/Bosphorus'>Bosphorus River</a>. It turns out that the western half is known as the 'European Side', as it's phyiscally a part of the continent of Europe, and the eastern half is therefore the 'Asian Side'. Locals don't actually use the terms as above; they simply say 'opposite side' depending on the context of the conversation.</p>
<h2>Sirkeci, the European side</h2>
<p>Right next to the <a href='http://en.wikipedia.org/wiki/Sultan_Ahmed_Mosque'>Blue Mosque</a> is the <a href='http://en.wikipedia.org/wiki/Sirkeci_Station'>Sirkeci Railway Station</a>, the end of the line for the railway coming from Europe. It used to be the initial station/final destination for the <a href='http://en.wikipedia.org/wiki/Orient_Express'>Orient Express</a> when it was still in operation. Turkey does not yet have a rail tunnel from the European to the Asian side and so travellers must transfer to a different mode of transport here to continue their journey east.</p>
<p>Turkey operates a varied amount of electric rolling stock, most of which can be seen at this station. At ~8:00am each morning the international train will also arrive bringing in tourists from far afield. In the end, I failed to take a shot of the actual station itself... I seemed to have been too keen on the trains this trip rather than the infrastructure.</p>
<p>Speaking of infrastructure... freight trains do actually have a method of getting across the Bosphorus. Turkish Railways still operate a train ferry from Sirkeci to Haydarpaşa Station. The boats seem to be able to carry around 6 wagons; unfortunately I never got to see one in transit. Note that the last shot below is from the platforms of Sirkeci station. You can see the pipe train in the background which had been taken off the ferry in the few hours that I'd been on the other side of the river.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10130?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Train ferry at Sirkeci"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10130?size=thumb" alt="Train ferry at Sirkeci"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10131?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Train ferry at Sirkeci"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10131?size=thumb" alt="Train ferry at Sirkeci"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10132?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Train ferry at Sirkeci"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10132?size=thumb" alt="Train ferry at Sirkeci"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10133?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Train ferry at Sirkeci"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10133?size=thumb" alt="Train ferry at Sirkeci"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10134?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Train ferry at Sirkeci"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10134?size=thumb" alt="Train ferry at Sirkeci"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10116?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Sirkeci Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10116?size=thumb" alt="Sirkeci Station"></a></p>
<h2>Haydarpaşa, the Asian side</h2>
<p>It was nice to finally see some infrastructure and rolling stock after a pretty quiet western side. <a href='http://en.wikipedia.org/wiki/%C4%B0stanbul_Haydarpa%C5%9Fa_Terminal'>Haydarpaşa Station</a> is the final station on the eastern side and all services heading into Turkey and further initiate there. There are a lot of loco-hauled passenger services and that means there is a lot of consist rearranging in the yard. There is also quite a bit of freight action visible as the ferry terminates just north of the station.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10135?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10135?size=thumb" alt="Haydarpaşa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10136?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Passenger consists at Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10136?size=thumb" alt="Passenger consists at Haydarpaşa Station"></a><a href="http://www.otenko.com/gallery3/index.php/rest/data/10138?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight shunting from the train ferry at Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10138?size=thumb" alt="Freight shunting from the train ferry at Haydarpaşa Station"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10139?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Shunter at Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10139?size=thumb" alt="Shunter at Haydarpaşa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10144?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Haydarpaşa Station Yard"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10144?size=thumb" alt="Haydarpaşa Station Yard"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10145?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight at Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10145?size=thumb" alt="Freight at Haydarpaşa Station"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10140?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10140?size=thumb" alt="Haydarpaşa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10141?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10141?size=thumb" alt="Haydarpaşa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10142?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight at Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10142?size=thumb" alt="Freight at Haydarpaşa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10147?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10147?size=thumb" alt="Haydarpaşa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10151?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Electric loco at Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10151?size=thumb" alt="Electric loco at Haydarpaşa Station"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10157?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="E43 008 at Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10157?size=thumb" alt="E43 008 at Haydarpaşa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10159?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Double crossover at Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10159?size=thumb" alt="Double crossover at Haydarpaşa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10156?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Shunter loitering near train wash at Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10156?size=thumb" alt="Shunter loitering near train wash at Haydarpaşa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10162?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Do not enter"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10162?size=thumb" alt="Do not enter"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10169?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10169?size=thumb" alt="Haydarpaşa Station"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10161?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight yard next to Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10161?size=thumb" alt="Freight yard next to Haydarpaşa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10167?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMUs at Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10167?size=thumb" alt="EMUs at Haydarpaşa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10170?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10170?size=thumb" alt="Haydarpaşa Station"></a></p>
<p>And then you have the other end of the train ferry... The final shot below was taken as our ferry was back to Sirkeci; there is now a different load on the boat.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10173?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10173?size=thumb" alt="Haydarpaşa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10174?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10174?size=thumb" alt="Haydarpaşa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10175?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10175?size=thumb" alt="Haydarpaşa Station"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10176?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Train ferry at Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10176?size=thumb" alt="Train ferry at Haydarpaşa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10177?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Train ferry at Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10177?size=thumb" alt="Train ferry at Haydarpaşa Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10115?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Train ferry at Haydarpaşa Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10115?size=thumb" alt="Train ferry at Haydarpaşa Station"></a></p>
<h2>Halkali, back on the European side</h2>
<p>I had google maps'd this location and saw a freight yard. It was the last freight yard before the line narrowed into Sirkeci station and seemed to have a lot of rolling stock. I jumped on an EMU from Sirkeci which took 40mins to get around to the yard. Once there, there was not a sound to be heard... no one was working in the area and then the call-to-prayer came over the PA system. This was the final stop for the service I was on, so I held on to my train 'token' (they used coins as tickets in Turkey) and waited to return on the same consist.</p>
<p>Fortunately, while I was there a rail tractor shunted a ballast rake. There was also a rail consist stabled without locomotives.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10119?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Halkali Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10119?size=thumb" alt="Halkali Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10121?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Rail train at Halkali Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10121?size=thumb" alt="Rail train at Halkali Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10125?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Ballast train at Halkali Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10125?size=thumb" alt="Ballast train at Halkali Station"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10126?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Tractor at Halkali Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10126?size=thumb" alt="Tractor at Halkali Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10122?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU at Halkali Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10122?size=thumb" alt="EMU at Halkali Station"></a></p>
<p>And that was it for Turkey... the next stop was Greece.</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/international/istanbul-august-2011/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Croatia &#8211; August 2011</title>
		<link>http://modelrail.otenko.com/international/croatia-august-2011</link>
		<comments>http://modelrail.otenko.com/international/croatia-august-2011#comments</comments>
		<pubDate>Thu, 06 Oct 2011 03:10:25 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[INTL]]></category>
		<category><![CDATA[Croatia]]></category>
		<category><![CDATA[Europe]]></category>
		<category><![CDATA[Prototypes]]></category>
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2299</guid>
		<description><![CDATA[Following Germany was a visit to Split, Dubrovnik and Zagreb. This was going to be another whirlwind tour with a total of 2 days spent in each location. Split I'd seen from Google Maps that Split had a main railway station on the water and the line seemed to be the southern-most point of the [...]]]></description>
			<content:encoded><![CDATA[<p>Following Germany was a visit to <a href='http://en.wikipedia.org/wiki/Split,_Croatia'>Split</a>, <a href='http://en.wikipedia.org/wiki/Dubrovnik'>Dubrovnik</a> and <a href='http://en.wikipedia.org/wiki/Zagreb'>Zagreb</a>. This was going to be another whirlwind tour with a total of 2 days spent in each location.</p>
<h2>Split</h2>
<p>I'd seen from Google Maps that Split had a main railway station on the water and the line seemed to be the southern-most point of the entire Croatian system. There was quite a bit of freight infrastructure around the base of the harbour, but it was hard to tell from Google if it was still in use.</p>
<p>We landed by plane from Berlin and caught the bus into town. The single line could be seen paralleling the highway, but there was zero traffic. Closer in to town there was a selection of freight stock around an industrial plant, but the larger freight yards further into the city weren't visible from the road.</p>
<p>Split wasn't high on my railway-viewing list; the main reason was to check out the beaches and the town. Therefore the shots taken below were all done within a 20minute segment at Split Station at around 7am on a Wednesday.</p>
<p>First up was 2062 110 shunting the autorail into the station platform.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10109?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Autorail at Split"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10109?size=thumb" alt="Autorail at Split"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10110?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="2 062 110 shunting autorail"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10110?size=thumb" alt="2 062 110 shunting autorail"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10015?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="2 062 110 at Split"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10015?size=thumb" alt="2 062 110 at Split"></a></p>
<p>Next 2062 038 departed with a passenger service, presumably North.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10017?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="2 062 038 departing Split"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10017?size=thumb" alt="2 062 038 departing Split"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10018?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="2 062 038 departing Split"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10018?size=thumb" alt="2 062 038 departing Split"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10019?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="2 062 038 departing Split"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10019?size=thumb" alt="2 062 038 departing Split"></a></p>
<p>2062 110 then ran back around to it's consist.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10023?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="2 062 110 at Split Railway Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10023?size=thumb" alt="2 062 110 at Split Railway Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10024?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="2 062 110 at Split Railway Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10024?size=thumb" alt="2 062 110 at Split Railway Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10025?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="2 062 110 at shunting at Split"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10025?size=thumb" alt="2 062 110 at shunting at Split"></a></p>
<p>DMU 7122 001 arrived with a whole bunch of backpackers... this service gets close to the airport... they may well have been smart enough to only take a taxi a short distance and a train the rest of the way.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10028?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="7 122 001 DMU at Split"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10028?size=thumb" alt="7 122 001 DMU at Split"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10030?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="7 122 001 DMU at Split"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10030?size=thumb" alt="7 122 001 DMU at Split"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10031?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="2 062 110 and 7 122 001 at Split"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10031?size=thumb" alt="2 062 110 and 7 122 001 at Split"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10032?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="7 122 001 at Split"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10032?size=thumb" alt="7 122 001 at Split"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10040?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Backpackers arriving at Split"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10040?size=thumb" alt="Backpackers arriving at Split"></a></p>
<p>2062 110 then shot off north.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10036?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="2 062 110 departing Split"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10036?size=thumb" alt="2 062 110 departing Split"></a></p>
<h2>Dubrovnik</h2>
<p>Dubrovnik used to have a connected railway line... but... politics prevailed and it was cut off in 1975. It was narrow gauge too! They also used to have a tram in the city, but this was cancelled around the same time.</p>
<p>The beaches though... the beaches are fantastic! Take an island tour... amazing. Unfortunately, the 'old town' is a bit of a disappointment. The shops are all nastily commercial and you have to pay to even get on the city wall.</p>
<h2>Zagreb</h2>
<p>This place was great... I hadn't expected much from Zagreb; all the reviews were that it was a drab city from the dark ages, but this turned out to be its charm. The city has a railway line through the south and also a large tram network. </p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10041?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Zagrab Trams"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10041?size=thumb" alt="Zagrab Trams"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10047?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Main square in Zagreb"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10047?size=thumb" alt="Main square in Zagreb"></a><a href="http://www.otenko.com/gallery3/index.php/rest/data/10049?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Route 14 in Zagreb"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10049?size=thumb" alt="Route 14 in Zagreb"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10048?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Route 14 in Zagreb"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10048?size=thumb" alt="Route 14 in Zagreb"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10081?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Tram loop"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10081?size=thumb" alt="Tram loop"></a></p>
<p>There's a funicular tram and also a cable car up in the north which wasn't running the day we were in town.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10065?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Zagreb Funicular"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10065?size=thumb" alt="Zagreb Funicular"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10066?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Zagreb Funicular"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10066?size=thumb" alt="Zagreb Funicular"></a></p>
<p>The main station is known as <a href='http://en.wikipedia.org/wiki/Zagreb_Main_Station'>Zagrebački Glavni kolodvor</a> (Zagreb Main Station). All local and regional railway services start from this location meaning it is quite busy at all times of the day. International services also arrive/depart here and there were often a lot of annoyed backpackers hanging around for late trains.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10050?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU at Zagreb Railway Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10050?size=thumb" alt="EMU at Zagreb Railway Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10053?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Loco-hauled at Zagreb Railway Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10053?size=thumb" alt="Loco-hauled at Zagreb Railway Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10054?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Zagreb departures"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10054?size=thumb" alt="Zagreb departures"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10055?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Loco-hauled at Zagreb Railway Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10055?size=thumb" alt="Loco-hauled at Zagreb Railway Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10056?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Shunter at Zagreb Railway Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10056?size=thumb" alt="Shunter at Zagreb Railway Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10060?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU at Zagreb Railway Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10060?size=thumb" alt="EMU at Zagreb Railway Station"></a></p>
<p>I then headed west via Tram to the next station along the line. I can't remember the exact name, but it's definitely not in use anymore. The most action seen was the red diesel shunter heading further west.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10091?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="West Zagreb Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10091?size=thumb" alt="West Zagreb Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10092?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="West Zagreb Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10092?size=thumb" alt="West Zagreb Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10093?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Shunter at West Zagreb Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10093?size=thumb" alt="Shunter at West Zagreb Station"></a></p>
<p>The rest of the afternoon was spent wandering around the abandonded? freight yards to the east of Zagreb Station. There are some interesting 'garden' communities here where it seems everyone gets a plot of land and a shed to grow small crops. The line to the west is also quite busy!</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10080?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU heading east"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10080?size=thumb" alt="EMU heading east"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10082?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU at Maksimir"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10082?size=thumb" alt="EMU at Maksimir"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10083?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Yard out east past Maksimir"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10083?size=thumb" alt="Yard out east past Maksimir"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10084?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Loco-hauled passing Maksimir"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10084?size=thumb" alt="Loco-hauled passing Maksimir"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10085?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Loco-hauled passing Maksimir"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10085?size=thumb" alt="Loco-hauled passing Maksimir"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10086?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Loco-hauled heading east"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10086?size=thumb" alt="Loco-hauled heading east"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10087?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Stored wagons in east Zagreb"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10087?size=thumb" alt="Stored wagons in east Zagreb"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10090?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Stored wagons in east Zagreb"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10090?size=thumb" alt="Stored wagons in east Zagreb"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10089?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Loco-hauled heading into Zagreb"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10089?size=thumb" alt="Loco-hauled heading into Zagreb"></a></p>
<p>I also took a trip out to Dugo Selo (further east) to see what would pass through. It was a pretty desolate station, but there were people waiting for the train. A loco-hauled service paused briefly in the yard, but it seemed to just collect papers from the station master. Passengers did try to get on it though, obviously faster than the EMU.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10106?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Work trains at Dugo Selo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10106?size=thumb" alt="Work trains at Dugo Selo"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10107?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Passenger service passing Dugo Selo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10107?size=thumb" alt="Passenger service passing Dugo Selo"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10108?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="PAX at Dugo Selo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10108?size=thumb" alt="PAX at Dugo Selo"></a></p>
<p>The final afternoon was spent at the main station... there's always something going on.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10068?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Zagreb Railway Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10068?size=thumb" alt="Zagreb Railway Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10072?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight at Zagreb Railway Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10072?size=thumb" alt="Freight at Zagreb Railway Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10073?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Zagreb Railway Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10073?size=thumb" alt="Zagreb Railway Station"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10077?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU at Zagreb Railway Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10077?size=thumb" alt="EMU at Zagreb Railway Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10079?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Zagreb Railway Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10079?size=thumb" alt="Zagreb Railway Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10095?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="2 044 004 at Zagreb"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10095?size=thumb" alt="2 044 004 at Zagreb"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10094?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Track gang at Zagreb"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10094?size=thumb" alt="Track gang at Zagreb"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10096?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Track gang at Zagreb"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10096?size=thumb" alt="Track gang at Zagreb"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10097?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Station building at Zagreb"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10097?size=thumb" alt="Station building at Zagreb"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10098?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Loco-hauled at Zagreb"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10098?size=thumb" alt="Loco-hauled at Zagreb"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10099?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight at Zagreb"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10099?size=thumb" alt="Freight at Zagreb"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10108?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="PAX at Dugo Selo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10108?size=thumb" alt="PAX at Dugo Selo"></a></p>
<p>They also even pay respects to bygone eras via a plynth out the front.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10111?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="SL at Zagreb"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10111?size=thumb" alt="SL at Zagreb"></a></p>
<p>The entire <a href='http://modelrail.otenko.com/photo-album?itemid=10012'>album from Croatia is available here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/international/croatia-august-2011/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Germany &#8211; August 2011</title>
		<link>http://modelrail.otenko.com/international/germany-august-2011</link>
		<comments>http://modelrail.otenko.com/international/germany-august-2011#comments</comments>
		<pubDate>Sat, 01 Oct 2011 06:48:22 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[INTL]]></category>
		<category><![CDATA[Europe]]></category>
		<category><![CDATA[Germany]]></category>
		<category><![CDATA[Prototypes]]></category>
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2273</guid>
		<description><![CDATA[The Netherlands was the Motherland; Germany is the Fatherland. It was time to visit where my Grandparents came from and check out Berlin and the Rhine at the same time. The trip had started from Venlo in Holland and, after a single change at Viersen, ended at Bochum Hauptbahnhof. Bochum Being located in the North-Rhine [...]]]></description>
			<content:encoded><![CDATA[<p>The Netherlands was the Motherland; Germany is the Fatherland. It was time to visit where my Grandparents came from and check out Berlin and the Rhine at the same time. The trip had started from Venlo in Holland and, after a single change at Viersen, ended at Bochum Hauptbahnhof.</p>
<h2>Bochum</h2>
<p>Being located in the North-Rhine area, Bochum is right in the mix of the <a href='http://en.wikipedia.org/wiki/Ruhr_area'>Ruhr area</a> known for it's large industrial complexes. From the train, this was immediately obvious; we passed freight train after freight train heading in and we also saw a lot of freight yard infrastructure. I was more than impressed with what I saw and was even happier to find a large freight yard in the middle of Bochum.</p>
<p>Checking in to the <a href='http://www.ibishotel.com/gb/hotel-0790-ibis-bochum-city/index.shtml'>Ibis Bochum City</a> was painless and the view was straight onto the train tracks... Unfortunately, due to 'non-smoking rooms' the window was sealed to prevent air-con wastage. I therefore headed straight out for a lap of the station to see what was going down. It turns out there is a good view of the platforms in the afternoon light from the south-west of the station... there also happens to be a carpark with minimal fencing that you can take some good shots from.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9902?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB120 on passenger service at Bochum Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9902?size=thumb" alt="DB120 on passenger service at Bochum Hbf"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10008?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Approaching Bochum Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10008?size=thumb" alt="Approaching Bochum Hbf"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10009?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB101 at Bochum Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10009?size=thumb" alt="DB101 at Bochum Hbf"></a></p>
<p>Proceeding onto the station platforms produced some better results. Due to the multitude of private operators involved, it seems that tickets are all checked on-board trains rather than having gated platforms. This meant that there was easy access to all platforms.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/10011?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Abellio at Bochum Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10011?size=thumb" alt="Abellio at Bochum Hbf"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9904?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Bochum Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9904?size=thumb" alt="Bochum Hbf"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9905?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Bochum Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9905?size=thumb" alt="Bochum Hbf"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9907?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="ICE arriving at Bochum Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9907?size=thumb" alt="ICE arriving at Bochum Hbf"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9908?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB112 at Bochum Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9908?size=thumb" alt="DB112 at Bochum Hbf"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9909?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Platform 5 at Bochum Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9909?size=thumb" alt="Platform 5 at Bochum Hbf"></a></p>
<p>It turns out that the DB loves the loco-hauled end-cab-control system as well. The whole concept is that the motive power is all in the locomotive at one end, but the train can be controlled from the far-end passenger car as well. This would never happen in Australia as we have very strict operating rules; I also wouldn't want to be in an accident where you have an extremely heavy (not to mention powerful) locomotive pushing tin-foil cars in to eachother. Then again, having the loco hit something first means the passenger cars have free will to fly around... I suppose the point is not to be in an accident at all!?</p>
<p>From the station I continued on-foot around the yard to the north-east. There is a branch from this yard further north-east, but it looked pretty abandoned. Google maps shows that there are cars and relatively new-looking infrastructure... I didn't follow the line to confirm this.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9913?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Branch off freight yard"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9913?size=thumb" alt="Branch off freight yard"></a></p>
<p>Instead I continued around to a road-bridge over the east-end of the yard. Here came fun! After a few passengers services at the south end of the bridge..</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9916?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU approaching Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9916?size=thumb" alt="EMU approaching Bochum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9919?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Loco hauled departing Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9919?size=thumb" alt="Loco hauled departing Bochum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9920?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Old shed near Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9920?size=thumb" alt="Old shed near Bochum"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9922?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="ICE departing Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9922?size=thumb" alt="ICE departing Bochum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9924?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU approaching Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9924?size=thumb" alt="EMU approaching Bochum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9925?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Abellio EMU approaching Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9925?size=thumb" alt="Abellio EMU approaching Bochum"></a></p>
<p>I then heard a diesel pulling in to the yard. Here I saw a <a href='http://en.wikipedia.org/wiki/DB_Class_V_90'>V90? diesel shunter</a> pulling a small consist into a loop. It then proceeded to run around, getting ready to pull the consist back in the direction it came. In the meantime though, 3 other trains came through; two continued on, but the third dropped more load for the shunter to pick up and continue on with.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9926?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="V90 detaching from consist"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9926?size=thumb" alt="V90 detaching from consist"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9927?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="V90 detaching from consist"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9927?size=thumb" alt="V90 detaching from consist"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9928?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="V90 running around in Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9928?size=thumb" alt="V90 running around in Bochum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9929?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="V90 at Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9929?size=thumb" alt="V90 at Bochum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9930?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="V90 re-attaching"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9930?size=thumb" alt="V90 re-attaching"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9933?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB155 on transfer"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9933?size=thumb" alt="DB155 on transfer"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9936?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB185 approaching with more load"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9936?size=thumb" alt="DB185 approaching with more load"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9938?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB185 running around"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9938?size=thumb" alt="DB185 running around"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9939?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB185 at Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9939?size=thumb" alt="DB185 at Bochum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9941?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB185 departing Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9941?size=thumb" alt="DB185 departing Bochum"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9942?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB155 approaching with large consist"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9942?size=thumb" alt="DB155 approaching with large consist"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9943?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB155 at Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9943?size=thumb" alt="DB155 at Bochum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9945?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB155 at Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9945?size=thumb" alt="DB155 at Bochum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9946?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB155 at Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9946?size=thumb" alt="DB155 at Bochum"></a></p>
<p>I'd spent a good few hours on the bridge and decided to return to the hotel... Fortunately there's good visibility of the rail all the way back.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9947?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB155 at Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9947?size=thumb" alt="DB155 at Bochum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9948?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="ICE departing Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9948?size=thumb" alt="ICE departing Bochum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9951?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="ICE departing Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9951?size=thumb" alt="ICE departing Bochum"></a></p>
<p>The rest of the time in Bochum was spent checking out the city. It's quite old and, I suppose cold? It's hard to explain, but it was the underlying theme to the rest Germany as I was to find out. There wasn't much graffiti around and the buildings were quite clean, but the architecture was all very similar and there was a lot of concrete. Fortunately the people were very friendly and accepted our very limited knowledge of the German language. There also happened to be a festival on in the middle of town which went on well in to the night.</p>
<h2>A 24-hour trip to Berlin [aka 'The Comedy of Errors']</h2>
<p>This was always going to be one of the highlights of the time spent in Germany. The goal was simple; start from Bochum, get as far down the Rhine as possible and then intercept the overnight train and travel to Berlin. What happened in the end was nothing short of disastrous but, in the end, was a great trip and a good story to tell. We boarded a train south from Bochum and started our journey. There was meant to be an initial stop in Cologne, but a late start saw us skip this and head straight for the Rhine.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9953?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight rake at Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9953?size=thumb" alt="Freight rake at Bochum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9954?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight rake at Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9954?size=thumb" alt="Freight rake at Bochum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9955?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Vectus DMU at Bochum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9955?size=thumb" alt="Vectus DMU at Bochum"></a></p>
<h2>Wuppertal</h2>
<p>As the train was snaking through Wuppertal I noticed a large amount of infrastructure looking something like a monorail track. It wasn't until I saw the vehicle hanging from it that I wished I'd stopped. Unfortunately, Wuppertal hadn't been on my radar for a visit, but if I'd known that monorail existed, then I'd have definitely checked it out!</p>
<p>It turns out it's called the '<a href='http://en.wikipedia.org/wiki/Wuppertal_Schwebebahn'>Wuppertal Schwebebahn</a>' or 'Wuppertal Floating Tram'. It was built <b>over a century ago</b> and, although it's had a lot of 'modernisation' work, still carries 25 million passengers a year! Wuppertal was built through the valleys alongside the Wupper river of which actual monorail was built suspended above.</p>
<h2>St Goarshausen</h2>
<p>After switching to <a href='http://www.vias-online.de/'>VIAS GmbH</a> at Koblenz, we proceeded across the Rhine in the direction of Frankfurt. The goal was to stop at a river-side station somewhere down the line to eat and check out the scenery. This railway has an interesting mid-way 'terminal' style station at <a href='http://en.wikipedia.org/wiki/Wiesbaden'>Wiesbaden</a>. The trains then reverse and head on to Frankfurt where they then turn around and bounce back to Koblenz.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9957?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="VIAS EMU at St Goarshausen"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9957?size=thumb" alt="VIAS EMU at St Goarshausen"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9958?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="VIAS EMU at St Goarshausen"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9958?size=thumb" alt="VIAS EMU at St Goarshausen"></a></p>
<p>I still don't remember why I chose <a href='http://en.wikipedia.org/wiki/Sankt_Goarshausen'>St Goarshausen</a> as a location for lunch and freighters, but it did pay off in the end... unfortunately it was also the place of initiation for the proceeding comedy-of-errors. We got off the train in a hurry, which vaguely reminds me that the location was chosen quite randomly, and made it down to the Rhine. Here we ate lunch and saw the tour buses and boats proceeding up and down the roads and river. All was swell until I got up to walk back to the station. It was time to see what ran on the line and it wasn't until I went to pick up my two bags that I realised I only had one! At that point I remembered that I'd thrown my 'carry on' bag on the rack above us in the train and had not remembered to take it back down as we were getting off.</p>
<p>It occurred to me that there was not much I could do after a few deep breaths... We paid for lunch and headed back to the station. Unfortunately it was well-abandoned and all the numbers to call weren't working from my Dutch Lebara sim card. The next <a href='http://www.vias-online.de/data/9_vias_r10.pdf'>VIAS train wasn't for an hour</a>... so... I took photos of freighters as I had the camera around my neck.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9959?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="St Goarshausen Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9959?size=thumb" alt="St Goarshausen Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9960?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight passing St Goarshausen"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9960?size=thumb" alt="Freight passing St Goarshausen"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9961?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB152 passing St Goarshausen"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9961?size=thumb" alt="DB152 passing St Goarshausen"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9962?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Tankers passing St Goarshausen"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9962?size=thumb" alt="Tankers passing St Goarshausen"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9963?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="St Goarshausen Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9963?size=thumb" alt="St Goarshausen Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9965?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB185 passing St Goarshausen"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9965?size=thumb" alt="DB185 passing St Goarshausen"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9966?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight passing St Goarshausen"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9966?size=thumb" alt="Freight passing St Goarshausen"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9969?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight passing St Goarshausen"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9969?size=thumb" alt="Freight passing St Goarshausen"></a></p>
<p>The next service came and we boarded, waiting for the conductor. After checking our Eurail pass, we asked her what we should do. It was Saturday and her answer was to call Lost&#038;Found on Monday. She was also finishing shift at the next stop and a new conductor coming on might be able to help. Unfortunately he spoke less english, asking if we spoke french.</p>
<p>We ended up at the terminal in Wiesbaden where we were meant to switch to DB and head on through to Freiburg. Unfortunately, without my bag (containing train tickets for the overnight train), we weren't going anywhere fast. The goal at Wiesbaden was then to find a station office and determine what the best plan of attack was. 5 minutes before arriving we decided that we might also continue on VIAS to Frankfurt, as the train we were originally on should have been cleaned prior to turning around?</p>
<p>We chose to alight at Wiesbaden and headed to the ticket counter to find an office. We expected that they could call Frankfurt to check the train we'd been on... I'd taken a photo of the train and knew the actual loco number. As we approached the end of the platform I noticed another VIAS train (amongst all the DB stock) was hanging in platform one. It had already bounced back from Frankfurt and was about to head off for Koblenz! I passed my luggage to my friend and bolted for it... I still feel sorry for the passengers waiting to depart as I stormed through the carriage looking for the shelf that I'd left my bag on. Unfortunately, it wasn't there.</p>
<p>Meanwhile, my friend had intercepted the conductor who was just finishing his shift and wandering down the platform. The language barrier had prevented him from getting the message through, but I rocked up and just used sign language to describe my bag. He all of a sudden realised what we meant and took me back to the drivers compartment. It turns out he'd seen it on the shelf at Frankfurt and put it in with the driver, expecting to return it to Koblenz and store it there. I could not believe my luck when he returned my bag back to me with my laptop, camera lenses, phone charger, train tickets, travel documents, etc... etc... in it.</p>
<p>We then jumped on the next train south towards <a href='http://en.wikipedia.org/wiki/Freiburg_im_Breisgau'>Freiburg</a>; the goal was to have Dinner in <a href='http://en.wikipedia.org/wiki/Worms,_Germany'>Worms</a>.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9968?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Wiesbaden Hauptbahnhof"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9968?size=thumb" alt="Wiesbaden Hauptbahnhof"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9971?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Wiesbaden Hauptbahnhof"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9971?size=thumb" alt="Wiesbaden Hauptbahnhof"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9970?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Worms Hauptbahnhof"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9970?size=thumb" alt="Worms Hauptbahnhof"></a></p>
<h2>Stuttgart</h2>
<p>Not <a href='http://en.wikipedia.org/wiki/Freiburg_im_Breisgau'>Freiburg</a> you say? Not <a href='http://en.wikipedia.org/wiki/Worms,_Germany'>Worms</a> either? I still can't give you the correct answer as to how we got here. We printed the 'travel advice' from the DB machine showing the connections... we went to the right platform... we got on the train that we thought was to take us in the correct direction and we ended up in <a href='http://en.wikipedia.org/wiki/Stuttgart'>Stuttgart</a>. Now that I look at the map I realise that we headed south-east instead of due south.</p>
<p>It was getting to late afternoon and this foul-up meant that we wouldn't make the night-train intercept at Freiburg! I went to the station office and told the attendant my dilemma. I suggested <a href='http://en.wikipedia.org/wiki/Karlsruhe'>Karlsruhe</a> as an alternate intercept point and she indicated this would be fine... I also then assumed the train conductor would be informed. We then caught the next train to Karlsruhe after a snack.</p>
<h2>Karlsruhe</h2>
<p>We got here in good time for the intercept... I decided to practise night-time photography and tinkered with my camera. </p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9972?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Karlsruhe Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9972?size=thumb" alt="Karlsruhe Hbf"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9973?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Karlsruhe Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9973?size=thumb" alt="Karlsruhe Hbf"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9974?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Karlsruhe Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9974?size=thumb" alt="Karlsruhe Hbf"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9975?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Karlsruhe Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9975?size=thumb" alt="Karlsruhe Hbf"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9976?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Karlsruhe Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9976?size=thumb" alt="Karlsruhe Hbf"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9977?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Karlsruhe Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9977?size=thumb" alt="Karlsruhe Hbf"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9978?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Karlsruhe Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9978?size=thumb" alt="Karlsruhe Hbf"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9979?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Karlsruhe Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9979?size=thumb" alt="Karlsruhe Hbf"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9980?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Karlsruhe Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9980?size=thumb" alt="Karlsruhe Hbf"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9981?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Karlsruhe Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9981?size=thumb" alt="Karlsruhe Hbf"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9982?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Karlsruhe Hbf"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9982?size=thumb" alt="Karlsruhe Hbf"></a></p>
<p>We had a full meal at the station and, before we knew it, the night train was approaching.</p>
<p>We boarded the train and attempted to enter our cabin... it was locked. I let out a yelp, but then tracked down the conductor. He looked at my ticket and grunted... disappearing somewhere in the wrong direction. Before long he returned and proceeded to give me an ear-full about being late and informed me of their policy on re-selling rooms if the original passenger no-shows more than 2 stations beyond there original joining point. It turns out that, now when I look at a map, we should've continued further south to <a href='http://en.wikipedia.org/wiki/Offenburg'>Offenburg</a>... although I can't remember if that would've been possible. I think the lady at Stuttgart would've recommended that if it had been the case?</p>
<p>Either way, he pulled out his keys stating that he thought our cabin was no longer available... whilst still walking us towards it. He unlocked the room and we all saw that it wasn't occupied. He then continued the rant that we should have gotten on earlier and that we were making his job difficult. I explained the story and he stated that the DB station staff had no ability to contact train conductors if/when there are issues. We thanked him for his help and he went on his 'merry' way.</p>
<p>After 3 fails, we finally had somewhere to sleep and were on the way to Berlin.</p>
<h2>Berlin</h2>
<p>So... 0700 hours... off the train to Berlin Hauptbahnhof. Amazing station! How the hell do we get to Rosa-Luxemborg-Platz? It's amazing how dependent you get on technology... specifically data connections on mobile phones and google maps. We navigated the maps and jumped on a train to Alexanderplatz. This turned out to be another great station. We then transferred to the U-Bahn and ended up at the correct station. It was now 0800 and we dropped our bags... it's Sunday... turns out nothing is open!? So... <a href='http://fattirebiketours.com/berlin>Fat Bike Bicycle Tour</a> it is... great primer for Berlin culture and history! Well recommended. We also ended up climbing the TV tower.</p>
<p>By this time there were a few department stores open, but all the niche shops in the Mitte District were well shut, not to open until at least 1100 hours the next day. Therefore it was to the pub on the roof at the hostel for social activities.</p>
<p>As for trains... the center of Berlin doesn't offer you more than a little DB, lots of S-Bahn and the invisible U-Bahn... the following are some examples of what to expect.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9983?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Berlin Trams"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9983?size=thumb" alt="Berlin Trams"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9984?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Berlin Trams"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9984?size=thumb" alt="Berlin Trams"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9987?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Berlin Trams"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9987?size=thumb" alt="Berlin Trams"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9991?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB passing Bode-Museum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9991?size=thumb" alt="DB passing Bode-Museum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9995?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB approaching Friedrichstrasse Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9995?size=thumb" alt="DB approaching Friedrichstrasse Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9997?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="DB departing Friedrichstrasse Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9997?size=thumb" alt="DB departing Friedrichstrasse Station"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/10001?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Alexanderplatz Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10001?size=thumb" alt="Alexanderplatz Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10004?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Alexanderplatz Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10004?size=thumb" alt="Alexanderplatz Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10005?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Alexanderplatz Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10005?size=thumb" alt="Alexanderplatz Station"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9998?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Rosa-Luxemburg-Platz"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9998?size=thumb" alt="Rosa-Luxemburg-Platz"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9999?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Rosa-Luxemburg-Platz"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9999?size=thumb" alt="Rosa-Luxemburg-Platz"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/10000?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Rosa-Luxemburg-Platz"><img src="http://www.otenko.com/gallery3/index.php/rest/data/10000?size=thumb" alt="Rosa-Luxemburg-Platz"></a></p>
<p>This city needs to be re-visited... there's a lot more to check out!</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/international/germany-august-2011/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Netherlands &#8211; August 2011</title>
		<link>http://modelrail.otenko.com/international/the-netherlands-august-2011</link>
		<comments>http://modelrail.otenko.com/international/the-netherlands-august-2011#comments</comments>
		<pubDate>Wed, 28 Sep 2011 22:36:50 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[INTL]]></category>
		<category><![CDATA[Europe]]></category>
		<category><![CDATA[Prototypes]]></category>
		<category><![CDATA[SL]]></category>
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2257</guid>
		<description><![CDATA[Amsterdam This city surprised me... I was expecting somewhat of a metropolis, Amsterdam being the capital and all. Instead it's a beautiful canal city with fantastic architecture, despite some of the houses leaning towards canals or other buildings. Nederlandse Spoorwegen [aka 'Dutch Railways'] (Official site) is the national railway operator and provided us with all [...]]]></description>
			<content:encoded><![CDATA[<h2>Amsterdam</h2>
<p>This city surprised me... I was expecting somewhat of a metropolis, Amsterdam being the capital and all. Instead it's a beautiful canal city with fantastic architecture, despite some of the houses leaning towards canals or other buildings.</p>
<p><a href='http://en.wikipedia.org/wiki/Nederlandse_Spoorwegen'>Nederlandse Spoorwegen</a> [aka 'Dutch Railways'] (<a href='www.ns.nl'>Official site</a>) is the national railway operator and provided us with all the transport requirements we needed. Multiple trips were taken out to random locations and the trains were always fast and on time.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9849?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU at Amsterdam"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9849?size=thumb" alt="EMU at Amsterdam"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9886?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Thalys at Amsterdam"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9886?size=thumb" alt="Thalys at Amsterdam"></a></p>
<h2>Amersfoort</h2>
<p>Just south-west of Amsterdam, Amersfoort is an interchange station for anyone wanting to head north/north-west. We used this interchange on the way through to Groningen. A modern EMU was caught from Amsterdam Centraal but then the connecting train was a <a href='http://en.wikipedia.org/wiki/NS_Koploper'>Koploper</a> to Groningen! Checking out this model of EMU was high on my priority list!</p>
<p>The Koploper looks very similar to the JR West Thunderbird (683 Series) and the standard 183/485 EMUs as well, but I'm not too sure who copied who. I also bought a model of this in HO by Lima; I'll post on that at a later date.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9847?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NS Koploper"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9847?size=thumb" alt="NS Koploper"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9846?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Koploper approaching Amersfoort"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9846?size=thumb" alt="Koploper approaching Amersfoort"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9898?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Koploper approaching Amersfoort"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9898?size=thumb" alt="Koploper approaching Amersfoort"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9850?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Koploper at Amersfoort"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9850?size=thumb" alt="Koploper at Amersfoort"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9880?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NS EMUs at Amersfoort"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9880?size=thumb" alt="NS EMUs at Amersfoort"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9882?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU at Amersfoort"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9882?size=thumb" alt="EMU at Amersfoort"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9883?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU approaching Amersfoort"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9883?size=thumb" alt="EMU approaching Amersfoort"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9884?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Airport train approaching Amersfoort"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9884?size=thumb" alt="Airport train approaching Amersfoort"></a></p>
<h2>Groningen</h2>
<p>My grandparents are from this area and it had to be visited... getting here by Koploper was an added bonus. Groningen is known for its high student population and universities. We had lunch in the town square and checked out the shops; there was a better selection there than the capital of Australia <img src='http://modelrail.otenko.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9877?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Groningen Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9877?size=thumb" alt="Groningen Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9852?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Koplopers at Groningen"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9852?size=thumb" alt="Koplopers at Groningen"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9854?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Koplopers at Groningen"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9854?size=thumb" alt="Koplopers at Groningen"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9878?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMUs at Groningen"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9878?size=thumb" alt="EMUs at Groningen"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9879?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Groningen Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9879?size=thumb" alt="Groningen Station"></a></p>
<h2>Veendam</h2>
<p>The <a href='http://www.stadskanaalrail.nl/star/star.php'>Museum Railway S·T·A·R</a> runs from Staadskanaal to Veendam and this wasn't far away from Groningen. We took the DMU from Groningen to Veendam and intercepted the first run of the SL for the morning from Staadskanaal. Note that this service has only just been re-connected to Veendam. The train used to stop one station short until June this year (2011) when they re-extended the service.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9868?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Groningen DMU at Veendam"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9868?size=thumb" alt="Groningen DMU at Veendam"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9870?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Shunting at Veendam"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9870?size=thumb" alt="Shunting at Veendam"></a></p>
<p>The STAR Museum Train had to cross a canal when coming from the south (Stadskanaal); a manually-operated bridge is turned into place when required.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9855?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Canal crossing south of Veendam"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9855?size=thumb" alt="Canal crossing south of Veendam"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9857?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Star SL approaching Veendam"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9857?size=thumb" alt="Star SL approaching Veendam"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9861?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Star SL approaching Veendam"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9861?size=thumb" alt="Star SL approaching Veendam"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9863?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Star SL approaching Veendam"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9863?size=thumb" alt="Star SL approaching Veendam"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9866?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Star SL at Veendam"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9866?size=thumb" alt="Star SL at Veendam"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9867?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Star SL at Veendam"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9867?size=thumb" alt="Star SL at Veendam"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9873?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Star SL T3-5933 at Veendam"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9873?size=thumb" alt="Star SL T3-5933 at Veendam"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9874?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Star SL T3-5933 at Veendam"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9874?size=thumb" alt="Star SL T3-5933 at Veendam"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9875?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Star SL T3-5933 at Veendam"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9875?size=thumb" alt="Star SL T3-5933 at Veendam"></a></p>
<p>We then took the next DMU back to Groningen and then connected to a return service to Amsterdam.</p>
<h2>Venlo</h2>
<p>The final day was spent taking the train from Amsterdam Centraal to Bochum, Germany. This was extremely easy and fast. There were three connections in total, all with no issues or delays. Venlo was the last stop before switching to the German railways and was a hub for freight train drivers to change shifts. There happened to be a constant procession of freighters pausing for 5 minutes in the yard, coming in from both directions.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9887?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight at Venlo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9887?size=thumb" alt="Freight at Venlo"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9893?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight at Venlo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9893?size=thumb" alt="Freight at Venlo"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9894?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight at Venlo heading West"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9894?size=thumb" alt="Freight at Venlo heading West"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9895?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NS at Venlo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9895?size=thumb" alt="NS at Venlo"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9892?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NS Loco Hauled at Venlo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9892?size=thumb" alt="NS Loco Hauled at Venlo"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9897?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="EMU at Venlo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9897?size=thumb" alt="EMU at Venlo"></a></p>
<p><a href='http://modelrail.otenko.com/photo-album?itemid=9844'>You can find the whole album here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/international/the-netherlands-august-2011/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby on Rails &#8211; Disturbing Errors</title>
		<link>http://modelrail.otenko.com/electronics/ruby-on-rails-disturbing-errors</link>
		<comments>http://modelrail.otenko.com/electronics/ruby-on-rails-disturbing-errors#comments</comments>
		<pubDate>Tue, 27 Sep 2011 23:52:29 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[Code / Electronics]]></category>
		<category><![CDATA[Exceptions]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Wrong number of arguments]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2249</guid>
		<description><![CDATA[Excuse my efforts in going slightly off topic in an attempt to help out anyone else who may have struck this issue. I'd been given a good challenge by a friend: mimic an install of ruby on rails on a local VM. I'd never worked with ruby before and google'd for a tutorial. Before I [...]]]></description>
			<content:encoded><![CDATA[<p>Excuse my efforts in going slightly off topic in an attempt to help out anyone else who may have struck this issue.<br />
I'd been given a good challenge by a friend: mimic an install of ruby on rails on a local VM. I'd never worked with ruby before and google'd for a tutorial. Before I knew it I had <a href='http://www.turnkeylinux.org/rails'>Turnkey Linux's Ruby Appliance</a> up and running on <a href='http://www.oracle.com/index.html'>Oracle's</a> <a href='http://www.virtualbox.org/'>Virtual Box</a> on 64-Bit Windows 7.</p>
<p>I wont go in to deployment steps here... it's all covered on the web. The basic concepts were to point an apache virtual host at a new directory in /var/www and then browse to the application. To my delight it started, throwing an error. I hadn't even configured a thing yet, so how could I expect it to run?</p>
<p>After configuring the <a href='http://www.facebook.com/'>Facebook</a> connector and the database connection the site came up and I could log in and muck around. It wasn't long until I hit the following error. It was only on a specific data class that extended the <a href='http://api.rubyonrails.org/classes/ActiveRecord/Base.html'>ActiveRecord</a> interface and only when checking if the data was valid or trying to save it. I could happily create the class and change attributes...</p>
<h2>Wrong number of arguments (1 of 0)</h2>
<p>What the hell... I hadn't seen ruby exceptions before, so I started to dig. The <b>RAILS_ENV</b> environment variable was set to 'development' and so there was a 'development.log' file sitting in the 'log' directory inside the application. This provided a stack trace and a few other bits and pieces.</p>
<p>After a lot of code commenting and uncommenting I narrowed it down to the '<b>save</b>' method of the specific data item class. This was inherited from the ActiveRecord::base class and I had no say in what it did or how it did it. I did know that it was expecting no arguments, so that's where the '0' came from in the error, but I was also not passing it any arguments, so where the hell did the '1' come from!?!?!</p>
<p>I then tried the '<b>valid?</b>' call as well... same result.</p>
<p>I chose to override the '<b>save</b>' function in the model file by using a pass through... all of a sudden the code continued (after hours of exceptions) and the next related table row creation had a null foreign key for the item that should have been saved. It turns out that by creating a pass through I bypassed the entire '<b>save</b>' method and therefore didn't attempt to write anything to the db. As soon as I tried to use the base '<b>save</b>'I got the same error but now in the model file.</p>
<p>I was stuck... so I tried to bring up the debugger via the mini <a href='http://en.wikipedia.org/wiki/WEBrick'>WEBrick</a> server. It, unfortunately, didn't give me any more information than what the development.log file had provided.</p>
<p>Next I tried downgrading and upgrading ruby and rails. I was impressed with the 'gem' system... but nothing helped.</p>
<p>The final step was to google more and more... I had already tried gutting my model implementation (there was extra code in the for other tasks) but none of this changed the inability to call '<b>save</b>'. All of a sudden one google search came across someone mentioning something about a 'reserved word'.... I google'd further.</p>
<h2>Reserved Words</h2>
<p>It seems that Ruby has a few words that you MUST NOT GO NEAR if you want your code to work. The main issue is that, when you do, you'll have no idea what you have done as the error message that results has NOTHING TO DO WITH the actual problem. It turns out that after browsing to <a href='http://www.ruby-forum.com/topic/97381'>a post by someone with a similar problem</a> I saw the comment stating that they had used the word 'notify' for a column name.</p>
<p>... so had the original developer of the code I had worked on ...</p>
<p>There was no response to the post that pointed this out in the previous link, so that either means the original author was too ashamed and it was the correct fix, or they found the real fix and never got back to this.</p>
<p>Either way, I corrected my database by changing 'notify' to 'notify_opp' and ... fkn presto ... 10 hours of debugging resulted in a SUCCESS!</p>
<h2>Further information on these magical reserved creatures</h2>
<p>Ok, the fun part... in hind-sight I've done a little research and there are sites indicating what 'words' are 'reserved' for ruby. Unfortunately, not all of them say that 'notify' is!</p>
<ul>
<li><a href='http://www.rubyholic.com/Languages/Ruby/QuickRef.html#4'>Ruby QuickRef</a> [does not]</li>
<li><a href='http://www.java2s.com/Code/Ruby/Language-Basics/Rubysreservedwords.htm'>Ruby's reserved words</a> [does not]</li>
<li><a href='http://oldwiki.rubyonrails.org/rails/pages/ReservedWords'>Ruby on Rails - ReservedWords</a> [does]</li>
</ul>
<h2>References:</h2>
<ul>
<li><a href='http://www.ruby-forum.com/topic/97381'>[Problem] wrong number of arguments (1 for 0)</a></li>
<li><a href='http://paulsturgess.co.uk/articles/55-wrong-number-of-arguments-0-for-1-on-notifiy-method-in-ruby-on-rails'>Wrong number of arguments (0 for 1) on notifiy method in Ruby on Rails</a><br/>I imagine the title should have been '(1 of 0)' ... but it is still the same issue</li>
<li><a href='http://stackoverflow.com/questions/573459/problem-saving-model-in-rails'>Problem saving model in Rails</a></li>
<li><a href='http://railsforum.com/viewtopic.php?id=907'>rails forum: wrong number of arguments error</a> ... same error, different reserved word.</li>
</ul>
<h2>Conclusion</h2>
<p>Be bloody careful with errors from ruby that don't make sense and don't spend too long digging in to a dead end.<br />
Be diligent with your google searches too.</p>
<p>I spent a lot of time debugging this and I hope this post helps out others in the same scenario.</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/electronics/ruby-on-rails-disturbing-errors/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New York &#8211; August 2011</title>
		<link>http://modelrail.otenko.com/international/new-york-august-2011</link>
		<comments>http://modelrail.otenko.com/international/new-york-august-2011#comments</comments>
		<pubDate>Thu, 22 Sep 2011 04:18:07 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[INTL]]></category>
		<category><![CDATA[America]]></category>
		<category><![CDATA[New York]]></category>
		<category><![CDATA[Prototypes]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[USA]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2213</guid>
		<description><![CDATA[New York is intense. The city is amazing and, as per any metropolis, perpetually under construction. I happened to be staying in 'serviced apartments' in the Financial District near Fulton St. subway station... but this turned out to be a Jewish synagogue. Pretty bad false-advertising on the website, but survivable. Either way, the place was [...]]]></description>
			<content:encoded><![CDATA[<p>New York is intense. The city is amazing and, as per any metropolis, perpetually under construction. I happened to be staying in 'serviced apartments' in the Financial District near Fulton St. subway station... but this turned out to be a Jewish synagogue. Pretty bad false-advertising on the website, but survivable. Either way, the place was only to be a bed... there was too much to do outside and no reason to care as long as there was a roof.</p>
<p>As per usual, I'd google-mapped NY prior to coming and new that there wasn't much freight action on the island. I had seen a few yards on the the east coast of Long Island near Brooklyn and had decided that would be a first stop once I had time.</p>
<h2>Car floats and empty lots on Long Island</h2>
<p>I thought we all called them train ferries or rail ferries, but it turns out they're known as <a href='http://en.wikipedia.org/wiki/Car_float'>car floats</a> in America. The <a href='http://en.wikipedia.org/wiki/New_York_New_Jersey_Rail,_LLC'>New York New Jersey Rail, LLC</a> run one from Bay Ridge to New Jersey on-demand. Turns out that when I visited there was no demand whatsoever, to the point where I was actually sure that the whole site had been abandoned. It wasn't until I google'd today that I realised it is the end of the <a href='http://en.wikipedia.org/wiki/Bay_Ridge_Branch'>Bay Ridge Branch</a> owned by the <a href='http://en.wikipedia.org/wiki/Long_Island_Rail_Road'>Long Island Railroad</a>....<br />
Actually, as I'm writing this I'm seeing conflicting information on Wikipedia as to what carfloat service is actually still in operation...</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9792?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Train ferry yard near Belt Pkwy"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9792?size=thumb" alt="Train ferry yard near Belt Pkwy"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9793?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Train ferry yard near Belt Pkwy"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9793?size=thumb" alt="Train ferry yard near Belt Pkwy"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9794?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Train ferry yard near Belt Pkwy"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9794?size=thumb" alt="Train ferry yard near Belt Pkwy"></a></p>
<p>I then walked north to the other visible yard on google maps but it turns out the photos are old and the yard no longer existed. I turned east to see the subway depot near 9th Ave Station. It was pretty cool, nice diesel maintenance equipment, but I'd failed to take any good photos.</p>
<h2>CSX: The Bronx</h2>
<p>This was a fun trip... on my last day in NY I decided to venture north to see a yard just across Harlem River. At the time of research I'd neglected to check suburb names and so just went for it, on foot. I found the CSX depot with quite a lot of rolling stock, random Amtrak services shooting through and a track gang working.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9796?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="CSX Yard - The Bronx"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9796?size=thumb" alt="CSX Yard - The Bronx"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9797?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="CSX #1304"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9797?size=thumb" alt="CSX #1304"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9836?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="CSX Yard - The Bronx"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9836?size=thumb" alt="CSX Yard - The Bronx"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9800?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="CSX #2804"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9800?size=thumb" alt="CSX #2804"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9801?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="CSX #8842"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9801?size=thumb" alt="CSX #8842"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9802?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Caboose!"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9802?size=thumb" alt="Caboose!"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9803?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="More box cars"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9803?size=thumb" alt="More box cars"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9806?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Heavy duty hi-rail"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9806?size=thumb" alt="Heavy duty hi-rail"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9808?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Old wooden sleepers"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9808?size=thumb" alt="Old wooden sleepers"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9810?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="More box cars"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9810?size=thumb" alt="More box cars"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9812?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Power gantry"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9812?size=thumb" alt="Power gantry"></a></p>
<p>I walked the length of the yard south after coming from the intersection at Baretto Street. In the distance there were two CSX locomotives doing some minor shunting. Fortunately I waited around long enough for an Amtrak service to bolt through.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9811?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="CSX shunting the port"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9811?size=thumb" alt="CSX shunting the port"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9813?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="CSX #1305"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9813?size=thumb" alt="CSX #1305"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9839?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Amtrak heading north"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9839?size=thumb" alt="Amtrak heading north"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9815?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Amtrak #2026 in the lead"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9815?size=thumb" alt="Amtrak #2026 in the lead"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9816?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Amtrak heading north"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9816?size=thumb" alt="Amtrak heading north"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9818?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Amtrak #2026"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9818?size=thumb" alt="Amtrak #2026"></a></p>
<p>The next part was meant to be a leisurely stroll across to the large junction of the Metro North and Amtrak railway near 149th Street 'Grand Concourse'. As I crossed the streets I started feeling slightly conscious... it wasn't until I saw a portable police turret keeping an eye out on an intersection that I realised a tourist should probably not be walking through the district with a large camera hanging around their neck.</p>
<h2>Metro North and Amtrak near 149th Street</h2>
<p>This area provided a nice amount of action. Around 1 train every 5-10 minutes in both directions and from both Metro North and Amtrak. Although the sun wasn't in the best position, and there were a lot of fences preventing clear shots, it was a good location to just relax in the high 20-degree temperatures + humidity.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9817?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Ex CPR stock"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9817?size=thumb" alt="Ex CPR stock"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9834?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="NY MTA"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9834?size=thumb" alt="NY MTA"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9820?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Northbound MTA"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9820?size=thumb" alt="Northbound MTA"></a></p>
<h2>Harlem River</h2>
<p>I then walked south and crossed Harlem River. There seems to be a lot of freight infrastructure on the northern side, including a low-lying viaduct allowing the trains to traverse the border of the northern shore. The main Metro North rail bridge is also a great backdrop.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9821?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Freight rail viaduct near the Bronx"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9821?size=thumb" alt="Freight rail viaduct near the Bronx"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9822?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Rail bridge near E135th St"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9822?size=thumb" alt="Rail bridge near E135th St"></a></p>
<h2>Harlem-125th Street Station</h2>
<p>This is one of the first stations on the south-side of the line on the bridge shown previously. Therefore it carried the expresses and locals stopping at this station. Fortunately the sun was in the right position for anything heading south. It was a pretty busy location and the foyer of the building was amazing.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9842?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Harlem-125th St Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9842?size=thumb" alt="Harlem-125th St Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9823?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Harlem Station NY"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9823?size=thumb" alt="Harlem Station NY"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9824?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Harlem Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9824?size=thumb" alt="Harlem Station"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9825?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Metro-North at Harlem"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9825?size=thumb" alt="Metro-North at Harlem"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9826?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Metro-North departing Harlem"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9826?size=thumb" alt="Metro-North departing Harlem"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9827?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Loco hauled Metro-North at Harlem"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9827?size=thumb" alt="Loco hauled Metro-North at Harlem"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9828?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="MTA at Harlem"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9828?size=thumb" alt="MTA at Harlem"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9829?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Metro-North heading North"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9829?size=thumb" alt="Metro-North heading North"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9843?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Metro-North Commuter Railroad"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9843?size=thumb" alt="Metro-North Commuter Railroad"></a></p>
<p>And that was it for New York... the next day was Amsterdam...</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/international/new-york-august-2011/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>California &#8211; August 2011</title>
		<link>http://modelrail.otenko.com/international/california</link>
		<comments>http://modelrail.otenko.com/international/california#comments</comments>
		<pubDate>Mon, 19 Sep 2011 11:36:32 +0000</pubDate>
		<dc:creator>stevenh</dc:creator>
				<category><![CDATA[INTL]]></category>
		<category><![CDATA[America]]></category>
		<category><![CDATA[Prototypes]]></category>
		<category><![CDATA[San Francisco]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[USA]]></category>

		<guid isPermaLink="false">http://modelrail.otenko.com/?p=2115</guid>
		<description><![CDATA[Right, here we go... I've been back in Australia for over a week and am only just getting on top of the stack of photos taken from my most recent holiday. This was the not-Japan trip and it began in the USA. California The goal was simple... fly the red-eye A380 from Melbourne to LAX, [...]]]></description>
			<content:encoded><![CDATA[<p>Right, here we go... I've been back in Australia for over a week and am only just getting on top of the stack of photos taken from my most recent holiday. This was the not-Japan trip and it began in the USA.</p>
<h2>California</h2>
<p>The goal was simple... fly the red-eye A380 from Melbourne to LAX, jump in a hire-car and make it to San Francisco the 'scenic way'. A few days would then be spent in San Francisco before returning to LA via the inland route. This would include Yosemite and a few of the larger railroad junctions as seen from Google Maps.</p>
<h2>San Luis Obispo</h2>
<p><a href='http://www.amtrak.com/servlet/ContentServer?c=AM_Route_C&#038;pagename=am%2FLayout&#038;cid=1241245649505'>The Pacific Surfliner</a> (I think?) happened to arrive just as we did. There were a few UP Locos stored as well... maybe for banking? The town was great, unfortunately we didn't check out the coffee; there were quite a few lively places around the station to do so though.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9691?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Amtrak and UP at San Luis Obispo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9691?size=thumb" alt="Amtrak and UP at San Luis Obispo"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9694?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Amtrak 90208 at San Luis Obispo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9694?size=thumb" alt="Amtrak 90208 at San Luis Obispo"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9692?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="UP at San Luis Obispo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9692?size=thumb" alt="UP at San Luis Obispo"></a></p>
<p>The pedestrian bridge at San Luis Obispo was well designed. It provided a great view of the station and yard too.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9704?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="San Luis Obispo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9704?size=thumb" alt="San Luis Obispo"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9695?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Pedestrian Bridge at San Luis Obispo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9695?size=thumb" alt="Pedestrian Bridge at San Luis Obispo"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9701?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Pedestrian Bridge at San Luis Obispo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9701?size=thumb" alt="Pedestrian Bridge at San Luis Obispo"></a></p>
<p>I had always thought that the Bachmann models of the Amtrak cars were just cheap and didn't include side-frames on the bogies... turns out they're actually like this in reality... not the prettiest view.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9719?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Frameless bogie"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9719?size=thumb" alt="Frameless bogie"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9705?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="San Luis Obispo Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9705?size=thumb" alt="San Luis Obispo Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9706?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Amtrak at San Luis Obispo"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9706?size=thumb" alt="Amtrak at San Luis Obispo"></a></p>
<h2>Paso Robles</h2>
<p>The next stop via Highway 101 was Paso Robles. Not much happening here at all... I nearly expected to see the same Amtrak train coming through, but it seems that we beat it way too easily. The station has a Sushi shop built in, but the prices weren't what we were willing to dish out despite paying the US$.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9709?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Paso Robles Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9709?size=thumb" alt="Paso Robles Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9711?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Paso Robles Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9711?size=thumb" alt="Paso Robles Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9718?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Sushi at Paso Robles Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9718?size=thumb" alt="Sushi at Paso Robles Station"></a></p>
<h2>Quarry Lake (east of Watsonville)</h2>
<p>An accidental detour saw us visit a quarry near Quarry Lake. The initial plan was to divert from 101 to check out the seemingly large junction at Watsonville, but the weather and time wasn't on our side.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9713?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Quarry Lake"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9713?size=thumb" alt="Quarry Lake"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9715?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Rake at Quarry Lake"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9715?size=thumb" alt="Rake at Quarry Lake"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9714?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Facilities at Quarry Lake"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9714?size=thumb" alt="Facilities at Quarry Lake"></a></p>
<h2>Caltrain Station, San Francisco</h2>
<p>Caltrain is a loco-hauled/control-cab operating passenger service from San Francisco (right next to the baseball stadium) down to San Jose. Turns out there's a few great restaurants next to the station in San Fran and whilst waiting for dinner I had a few minutes with a friends camera to check out the yard. Fortunately the sun was also in my favour.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9678?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="San Francisco Caltrain Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9678?size=thumb" alt="San Francisco Caltrain Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9683?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Line-up at Caltrain Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9683?size=thumb" alt="Line-up at Caltrain Station"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9685?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="9xx Locomotives at Caltrain Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9685?size=thumb" alt="9xx Locomotives at Caltrain Station"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9693?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Passenger cars at Caltrain Station"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9693?size=thumb" alt="Passenger cars at Caltrain Station"></a></p>
<p>As you can see, it's a terminus; they'll end up in the water unless the dig or build over to Oakland. Unfortunately I didn't get to see any of the trains in action, nor ride one, but it's something I'll go back again for.</p>
<h2>Trams/Trolley buses in San Fran</h2>
<p>I was quite impressed to see the trolley bus routes in San Francisco. I had never actually seen any running and the biggest shock was the lack of noise. I'm used to diesel buses here in Australia and the electric versions are bloody quiet. I imagine it could even be a safety issue if no one can hear them coming?<br />
Another impressive feature was that the trams used one of the trolley bus wires where they shared paths. Of course, the bus would not pick up the other polarity from the ground, so they needed two wires in the air. Trams, on the other hand, only used one and so you'd see, at intersections, trolley buses and trams banked up behind each other.<br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9717?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Trolley Bus"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9717?size=thumb" alt="Trolley Bus"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9720?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Tram #1893"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9720?size=thumb" alt="Tram #1893"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9721?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="PCC Trolley #1051"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9721?size=thumb" alt="PCC Trolley #1051"></a></p>
<h2>San Francisco Cable Car Museum</h2>
<p>This is a must-see for any rail enthusiast. Sure, the they're not exactly 'trams', but the techonology behind the system is awesome. This Museum actually still acts as the motive power source for the cars. The cables are turned here to pull the cars up the gradients. The cars are controlled by levers where the driver can choose to detach from the cable and apply brakes... i.e. allowing them to stop at 'stops'. Hence the cables are perpetually spinning, or during hours of operation anyway.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9726?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Cable Car Museum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9726?size=thumb" alt="Cable Car Museum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9728?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Cable Car Museum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9728?size=thumb" alt="Cable Car Museum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9729?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Cable Car Museum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9729?size=thumb" alt="Cable Car Museum"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9730?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Cable Car Museum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9730?size=thumb" alt="Cable Car Museum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9732?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Cable Car Museum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9732?size=thumb" alt="Cable Car Museum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9734?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Cable Car Museum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9734?size=thumb" alt="Cable Car Museum"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9733?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Cable Car Museum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9733?size=thumb" alt="Cable Car Museum"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9735?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Cable Car Museum"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9735?size=thumb" alt="Cable Car Museum"></a></p>
<h2>And then... the Cable Cars...</h2>
<p>The world-famous cars that run on the cables are a tourist trap. The ticket price is 4x a standard fare and the queues to ride them are usually large. The cars to move quickly, but I imagine there's a limit to the amount of cars on the cable at once as you'll often see the drivers at the end stops waiting for the other cars to climb the hill. Pretty frustrating as someone in the line waiting.</p>
<p>As for the ride, the gradients are awesome and the passing is pretty dangerous... hang of the side if you dare, but keep your head in!</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9736?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="San Francisco Cable Cars"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9736?size=thumb" alt="San Francisco Cable Cars"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9741?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Cable Car Turntable"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9741?size=thumb" alt="Cable Car Turntable"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9746?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Cable Car Turntable"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9746?size=thumb" alt="Cable Car Turntable"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9745?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Powell and Hyde (or Mason)"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9745?size=thumb" alt="Powell and Hyde (or Mason)"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9748?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Heading into the city"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9748?size=thumb" alt="Heading into the city"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9749?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Close passing"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9749?size=thumb" alt="Close passing"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9749?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Close passing"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9749?size=thumb" alt="Close passing"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9771?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Another pass"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9771?size=thumb" alt="Another pass"></a></p>
<h2>Oakdale</h2>
<p>A random stop through Oakdale on the way to the Yosemite National Park found a random caboose and the <a href='http://en.wikipedia.org/wiki/Sierra_Railroad'>Sierra Railroad</a>'s <a href='http://www.sierrarailroad.com/dinnertrain/'>Dinner Train</a>. Not much was happening around the yards, so I didn't hang around long.<br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9754?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Caboose in Oakdale"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9754?size=thumb" alt="Caboose in Oakdale"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9756?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Mendocino Railway at Oakdale"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9756?size=thumb" alt="Mendocino Railway at Oakdale"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9758?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Mendocino Railway at Oakdale"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9758?size=thumb" alt="Mendocino Railway at Oakdale"></a></p>
<h2>Fresno</h2>
<p>The initial perception of Fresno indicated little railway infrastructure and life... fortunately I was wrong. After a little false navigation following disused lines I came across 'South Railroad Avenue' which followed the main line. It turns out that there's a junction and then the BNSF depot. Finally some real american horsepower. Santa Fe had always been my favourite railroad (first model train, etc...) and it was nice to see them, although in the amalgamated BNSF livery.</p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9763?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="BNSF Locomotive at Fresno"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9763?size=thumb" alt="BNSF Locomotive at Fresno"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9765?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="BNSF Locomotive at Fresno"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9765?size=thumb" alt="BNSF Locomotive at Fresno"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9766?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Stored freight cars at Fresno"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9766?size=thumb" alt="Stored freight cars at Fresno"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9768?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="BNSF Locomotive at Fresno"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9768?size=thumb" alt="BNSF Locomotive at Fresno"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9769?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="BNSF Locomotive at Fresno"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9769?size=thumb" alt="BNSF Locomotive at Fresno"></a></p>
<h2>The last miles on Interstate 5</h2>
<p>After Fresno the countdown was on to get back to LA before midnight. The plane to NY was leaving early the next morning and we needed some time to check out Hollywood. Along the way back there were a few freighters hanging around loading sites, one was from Golden State Feed and Grain and another from Rail America. </p>
<p><a href="http://www.otenko.com/gallery3/index.php/rest/data/9770?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Golden State Feed and Grain"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9770?size=thumb" alt="Golden State Feed and Grain"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9778?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Unused signals"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9778?size=thumb" alt="Unused signals"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9780?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Grain silos"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9780?size=thumb" alt="Grain silos"></a><br />
<a href="http://www.otenko.com/gallery3/index.php/rest/data/9789?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Rail America"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9789?size=thumb" alt="Rail America"></a> <a href="http://www.otenko.com/gallery3/index.php/rest/data/9790?size=full" rel="lightbox[photos]" class="lightbox-enabled" title="Rail America"><img src="http://www.otenko.com/gallery3/index.php/rest/data/9790?size=thumb" alt="Rail America"></a></p>
<p>And that was it... New York was next.</p>
]]></content:encoded>
			<wfw:commentRss>http://modelrail.otenko.com/international/california/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

