summaryrefslogtreecommitdiff
path: root/lib/Travel/Status
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Travel/Status')
-rw-r--r--lib/Travel/Status/DE/EFA.pm57
-rw-r--r--lib/Travel/Status/DE/EFA/Result.pm8
2 files changed, 35 insertions, 30 deletions
diff --git a/lib/Travel/Status/DE/EFA.pm b/lib/Travel/Status/DE/EFA.pm
index c92a726..fe54bac 100644
--- a/lib/Travel/Status/DE/EFA.pm
+++ b/lib/Travel/Status/DE/EFA.pm
@@ -116,7 +116,7 @@ sub new {
$self->{tree} = XML::LibXML->load_xml( string => $self->{xml}, );
- # say $self->{tree}->toString(1);
+ say $self->{tree}->toString(1);
$self->check_for_ambiguous();
@@ -314,14 +314,15 @@ sub results {
my $rdate = $e_rdate ? sprintf_date($e_rdate) : $date;
my $rtime = $e_rtime ? sprintf_time($e_rtime) : $time;
- my $platform = $e->getAttribute('platform');
- my $line = $e_line->getAttribute('number');
- my $dest = $e_line->getAttribute('direction');
- my $info = $e_info->textContent;
- my $key = $e_line->getAttribute('key');
- my $countdown = $e->getAttribute('countdown');
- my $delay = $e_info->getAttribute('delay') // 0;
- my $type = $e_info->getAttribute('name');
+ my $platform; # 'platform' attribute is unreliable
+ my $platform_name = $e->getAttribute('platformName');
+ my $line = $e_line->getAttribute('number');
+ my $dest = $e_line->getAttribute('direction');
+ my $info = $e_info->textContent;
+ my $key = $e_line->getAttribute('key');
+ my $countdown = $e->getAttribute('countdown');
+ my $delay = $e_info->getAttribute('delay') // 0;
+ my $type = $e_info->getAttribute('name');
my $platform_is_db = 0;
@@ -329,27 +330,31 @@ sub results {
= grep { $_->{identifier} eq $e_line->getAttribute('stateless') }
@{ $self->{lines} };
- if ( $platform =~ s{ ^ \# }{}ox ) {
+ if ( $platform_name =~ m{ ^ Gleis }ox ) {
$platform_is_db = 1;
}
+ # Gleis x / Bstg. x -> take x
+ $platform = ( split( / /, $platform_name ) )[1];
+
push(
@results,
Travel::Status::DE::EFA::Result->new(
- date => $rdate,
- time => $rtime,
- platform => $platform,
- platform_db => $platform_is_db,
- key => $key,
- lineref => $line_obj[0] // undef,
- line => $line,
- destination => decode( 'UTF-8', $dest ),
- countdown => $countdown,
- info => decode( 'UTF-8', $info ),
- delay => $delay,
- sched_date => $date,
- sched_time => $time,
- type => $type,
+ date => $rdate,
+ time => $rtime,
+ platform => $platform,
+ platform_db => $platform_is_db,
+ platform_name => $platform_name,
+ key => $key,
+ lineref => $line_obj[0] // undef,
+ line => $line,
+ destination => decode( 'UTF-8', $dest ),
+ countdown => $countdown,
+ info => decode( 'UTF-8', $info ),
+ delay => $delay,
+ sched_date => $date,
+ sched_time => $time,
+ type => $type,
)
);
}
@@ -382,8 +387,8 @@ Travel::Status::DE::EFA - unofficial EFA departure monitor
for my $d ($status->results) {
printf(
- "%s %d %-5s %s\n",
- $d->time, $d->platform, $d->line, $d->destination
+ "%s %-8s %-5s %s\n",
+ $d->time, $d->platform_name, $d->line, $d->destination
);
}
diff --git a/lib/Travel/Status/DE/EFA/Result.pm b/lib/Travel/Status/DE/EFA/Result.pm
index 151b77a..691c49a 100644
--- a/lib/Travel/Status/DE/EFA/Result.pm
+++ b/lib/Travel/Status/DE/EFA/Result.pm
@@ -9,8 +9,8 @@ use parent 'Class::Accessor';
our $VERSION = '1.07';
Travel::Status::DE::EFA::Result->mk_ro_accessors(
- qw(countdown date delay destination is_cancelled info key line lineref platform
- platform_db sched_date sched_time time type)
+ qw(countdown date delay destination is_cancelled info key line lineref
+ platform platform_db platform_name sched_date sched_time time type)
);
sub new {
@@ -48,7 +48,7 @@ departure received by Travel::Status::DE::EFA
for my $departure ($status->results) {
printf(
- "At %s: %s to %s from platform %s\n",
+ "At %s: %s to %s from platform %d\n",
$departure->time, $departure->line, $departure->destination,
$departure->platform
);
@@ -121,7 +121,7 @@ detail.
=item $departure->platform
-Departure platform number.
+Departure platform number (may not be a number).
=item $departure->platform_db