class RailFeeds::NetworkRail::Schedule::TrainSchedule::Location::Origin

A class for holding information about a particular train's origin location

Attributes

engineering_allowance[RW]

@!attribute [rw] line

@return [String]

@!attribute [rw] scheduled_departure

@return [String] The sheduled time for departing from the location.

@!attribute [rw] public_departure

@return [String] The public departure time (HHMM).

@!attribute [rw] engineering_allowance

@return [Float] Number of minutes.

@!attribute [rw] pathing_allowance

@return [Float] Number of minutes.

@!attribute [rw] performance_allowance

@return [Float] Number of minutes.
line[RW]

@!attribute [rw] line

@return [String]

@!attribute [rw] scheduled_departure

@return [String] The sheduled time for departing from the location.

@!attribute [rw] public_departure

@return [String] The public departure time (HHMM).

@!attribute [rw] engineering_allowance

@return [Float] Number of minutes.

@!attribute [rw] pathing_allowance

@return [Float] Number of minutes.

@!attribute [rw] performance_allowance

@return [Float] Number of minutes.
pathing_allowance[RW]

@!attribute [rw] line

@return [String]

@!attribute [rw] scheduled_departure

@return [String] The sheduled time for departing from the location.

@!attribute [rw] public_departure

@return [String] The public departure time (HHMM).

@!attribute [rw] engineering_allowance

@return [Float] Number of minutes.

@!attribute [rw] pathing_allowance

@return [Float] Number of minutes.

@!attribute [rw] performance_allowance

@return [Float] Number of minutes.
performance_allowance[RW]

@!attribute [rw] line

@return [String]

@!attribute [rw] scheduled_departure

@return [String] The sheduled time for departing from the location.

@!attribute [rw] public_departure

@return [String] The public departure time (HHMM).

@!attribute [rw] engineering_allowance

@return [Float] Number of minutes.

@!attribute [rw] pathing_allowance

@return [Float] Number of minutes.

@!attribute [rw] performance_allowance

@return [Float] Number of minutes.
public_departure[RW]

@!attribute [rw] line

@return [String]

@!attribute [rw] scheduled_departure

@return [String] The sheduled time for departing from the location.

@!attribute [rw] public_departure

@return [String] The public departure time (HHMM).

@!attribute [rw] engineering_allowance

@return [Float] Number of minutes.

@!attribute [rw] pathing_allowance

@return [Float] Number of minutes.

@!attribute [rw] performance_allowance

@return [Float] Number of minutes.
scheduled_departure[RW]

@!attribute [rw] line

@return [String]

@!attribute [rw] scheduled_departure

@return [String] The sheduled time for departing from the location.

@!attribute [rw] public_departure

@return [String] The public departure time (HHMM).

@!attribute [rw] engineering_allowance

@return [Float] Number of minutes.

@!attribute [rw] pathing_allowance

@return [Float] Number of minutes.

@!attribute [rw] performance_allowance

@return [Float] Number of minutes.

Public Class Methods

from_cif(line) click to toggle source

rubocop:disable Metrics/AbcSize Initialize a new origin location from a CIF file line

# File lib/rail_feeds/network_rail/schedule/train_schedule/location/origin.rb, line 35
def self.from_cif(line)
  fail ArgumentError, "Invalid line:\n#{line}" unless line[0..1].eql?('LO')

  new(
    tiploc: line[2..8].strip,
    tiploc_suffix: line[9].to_i,
    scheduled_departure: line[10..14].strip,
    public_departure: line[15..18].strip,
    platform: line[19..21].strip,
    line: line[22..24].strip,
    activity: line[29..40].strip,
    engineering_allowance: parse_allowance(line[25..26].strip),
    pathing_allowance: parse_allowance(line[27..28].strip),
    performance_allowance: parse_allowance(line[41..42].strip)
  )
end
new(**attributes) click to toggle source
# File lib/rail_feeds/network_rail/schedule/train_schedule/location/origin.rb, line 27
def initialize(**attributes)
  attributes.each do |attribute, value|
    send "#{attribute}=", value
  end
end

Public Instance Methods

to_cif() click to toggle source

rubocop:disable Metrics/AbcSize rubocop:disable Style/FormatStringToken

# File lib/rail_feeds/network_rail/schedule/train_schedule/location/origin.rb, line 55
def to_cif
  format('%-80.80s', [
    'LO',
    format('%-7.7s', tiploc),
    format('%-1.1s', tiploc_suffix),
    format('%-5.5s', scheduled_departure),
    format('%-4.4s', public_departure),
    format('%-3.3s', platform),
    format('%-3.3s', line),
    format('%-2.2s', allowance_cif(engineering_allowance)),
    format('%-2.2s', allowance_cif(pathing_allowance)),
    format('%-12.12s', activity),
    format('%-2.2s', allowance_cif(performance_allowance))
  ].join) + "\n"
end
to_hash_for_json() click to toggle source

rubocop:enable Metrics/AbcSize rubocop:enable Style/FormatStringToken

# File lib/rail_feeds/network_rail/schedule/train_schedule/location/origin.rb, line 73
def to_hash_for_json
  {
    location_type: 'LO',
    record_identity: 'LO',
    tiploc_code: tiploc,
    tiploc_instance: tiploc_suffix,
    departure: scheduled_departure,
    public_departure: public_departure,
    platform: platform,
    line: line,
    engineering_allowance: allowance_json(engineering_allowance),
    pathing_allowance: allowance_json(pathing_allowance),
    performance_allowance: allowance_json(performance_allowance)
  }
end