
Convert::Temperature - Convert Temperatures

Version 0.03

use Convert::Temperature;
my $c = new Convert::Temperature();
my $res = $c->from_fahr_to_cel('59'); => result in Celsius
...

Creates a new Temperature::Convert object.
my $c = new Convert::Temperature();
Convert from Fahrenheit to Celsius
my $res = $c->from_fahr_to_cel('59');
Convert from Celsius to Fahrenheit
my $res = $c->from_cel_to_fahr('31');
Convert from Fahrenheit to Kelvin
my $res = $c->from_fahr_to_kelvin('59');
Convert from Kelvin to Fahrenheit
my $res = $c->from_kelvin_to_fahr('215');
Convert from Fahrenheit to Rankine
my $res = $c->from_fahr_to_rankine('59');
Convert from Rankine to Fahrenheit
my $res = $c->from_rankine_to_fahr('518');
Convert from Fahrenheit to Reaumur
my $res = $c->from_fahr_to_reaumur('59');
Convert from Reaumur to Fahrenheit
my $res = $c->from_reaumur_to_fahr('12');

You can find documentation for this module with the perldoc command.
perldoc Convert::Temperature

Filipe Dutra, <mopy@cpan.org<gt>

Copyright (C) 2008 by Filipe Dutra
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.