NAME
Geo::Constants - Package for standard Geo:: constants.
SYNOPSIS
"PI: "
, PI(),
"\n"
;
"d/r: "
, DEG(),
"\n"
;
"r/d: "
, RAD(),
"\n"
;
my
$obj
= Geo::Constants->new();
"PI: "
,
$obj
->PI,
"\n"
;
"d/r: "
,
$obj
->DEG,
"\n"
;
"r/d: "
,
$obj
->RAD,
"\n"
;
DESCRIPTION
CONSTRUCTOR
new
The new() constructor
my
$obj
= Geo::Constants->new();
initialize
FUNCTIONS
PI
DEG
UOM: degrees/radian
RAD
UOM: radians/degree
KNOTS
1 nautical mile per hour = (1852/3600) m/s - United States Department of Commerce, National Institute of Standards and Technology, NIST Special Publication 330, 2001 Edition
Returns 1852/3600 m/s/knot
UOM: meters/second per knot
AUTHOR
Michael R. Davis
LICENSE
Copyright (c) 2006-2025 Michael R. Davis
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.