line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
1
|
|
|
1
|
|
3319
|
use 5.14.0; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
40
|
|
2
|
1
|
|
|
1
|
|
10
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
41
|
|
3
|
1
|
|
|
1
|
|
3
|
use warnings; |
|
1
|
|
|
|
|
7
|
|
|
1
|
|
|
|
|
49
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package Map::Metro::Plugin::Map::Brussels; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.1001'; # VERSION |
8
|
|
|
|
|
|
|
# ABSTRACT: Map::Metro map for Brussels |
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
4
|
use Moose; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
7
|
|
11
|
|
|
|
|
|
|
with 'Map::Metro::Plugin::Map'; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
has '+mapfile' => ( |
14
|
|
|
|
|
|
|
default => 'map-brussels.metro', |
15
|
|
|
|
|
|
|
); |
16
|
|
|
|
|
|
|
sub map_version { |
17
|
0
|
|
|
0
|
0
|
0
|
return $VERSION; |
18
|
|
|
|
|
|
|
} |
19
|
|
|
|
|
|
|
sub map_package { |
20
|
1
|
|
|
1
|
0
|
2
|
return __PACKAGE__; |
21
|
|
|
|
|
|
|
} |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
1; |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
__END__ |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=pod |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=encoding UTF-8 |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 NAME |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
Map::Metro::Plugin::Map::Brussels - Map::Metro map for Brussels |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 VERSION |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Version 0.1001, released 2015-02-03. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 SYNOPSIS |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
use Map::Metro; |
42
|
|
|
|
|
|
|
my $graph = Map::Metro->new('Brussels')->parse; |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Or: |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
map-metro.pl route Brussels "Gare de l'Ouest" 'Centraal Station' |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 DESCRIPTION |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
See L<Map::Metro> for usage information. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head1 Status |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
This map L<contains|Map::Metro::Plugin::Map::Brussels::Lines>: |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=over 4 |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=item * |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
The four metro lines I<L1>, I<L2>, I<L5> and I<L6> [L<wikipedia|https://en.wikipedia.org/wiki/Brussels_Metro>] |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=item * |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
The I<T3> tram line, but only between I<Gare du Nord/Noordstation> and I<Albert> [L<wikipedia|https://en.wikipedia.org/wiki/Brussels_tram_route_3>] |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=back |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=for HTML <p><a href="https://raw.githubusercontent.com/Csson/p5-Map-Metro-Brussels/master/static/images/brussels.png"><img src="https://raw.githubusercontent.com/Csson/p5-Map-Metro-Brussels/master/static/images/brussels.png" style="max-width: 600px" /></a></p> |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=head1 SOURCE |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
L<https://github.com/Csson/p5-Map-Metro-Brussels> |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=head1 HOMEPAGE |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
L<https://metacpan.org/release/Map-Metro-Plugin-Map-Brussels> |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
=head1 AUTHOR |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
Erik Carlsson <info@code301.com> |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
This software is copyright (c) 2015 by Erik Carlsson <info@code301.com>. |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
87
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
=cut |