NAME
Map::Tube::Node - Defines the node for Map::Tube
VERSION
Version 2.11
AWARD
Map::Tube has been granted the "Famous Software Award" by Download.FamousWhy.com on Tue 09 Nov 2010.
http://download.famouswhy.com/map_tube/
SYNOPSIS
B -------- C
/ \ / \
/ \ / \
/ \ / \
A ------ G ------- D
\ / \ /
\ / \ /
\ / \ /
F -------- E
/
/
/
H
\
\
\
I
which can be defined as below:
{ 'A' => ['B','F','G'],
'B' => ['A','C','G'],
'C' => ['B','D','G'],
'D' => ['C','E','G'],
'E' => ['D','F','G'],
'F' => ['A','E','G','H'],
'G' => ['A','B','C','D','E','F'],
'H' => ['F','I'],
'I' => ['H']
}
METHODS
load_node_mappings()
This is the core method of the module, where we actually define the relationship among the diffrerent nodes. I have taken extra care to depict the relationship. However I would be more than happy to receieve any suggestion to improve the logic. Please note "Transport for London" is the owner of the data used here.
use strict; use warnings;
use Map::Tube::Node;
# Loads up the default node mapping definitions.
my $mappings = Map::Tube::Node::load_node_mappings();
load_nodes()
This loads all the nodes defined. It covers Bakerloo, Central, Circle, District, DLR, Hammersmith & City, Jubilee, Metropolitan, Northern, Overground, Piccadilly, Victoria and Waterloo & City. Please note this is still very experimental in nature.
use strict; use warnings;
use Map::Tube::Node;
# Loads all the node definitions.
my $nodes = Map::Tube::Node::load_nodes();
load_node_lines()
This loads all the tube lines with their node code.
use strict; use warnings;
use Map::Tube::Node;
# Loads all the node codes with the default tube lines information.
my $lines = Map::Tube::Node::load_node_lines();
upcase_node_names()
This loads all the nodes with name in uppercase. This is to allow case-insensitive name lookup. User can also provide the node list otherwise it will pick the default list.
use strict; use warnings;
use Map::Tube::Node;
# Returns a new list of element with names in upper case.
my $upcase = Map::Tube::Node::upcase_node_names();
AUTHOR
Mohammad S Anwar, <mohammad.anwar@yahoo.com>
BUGS
Please report any bugs or feature requests to bug-map-tube@rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Map-Tube. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Map::Tube::Node
You can also look for information at:
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
LICENSE AND COPYRIGHT
Copyright 2010 Mohammad S Anwar.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.