File Coverage

blib/lib/GIS/Distance/MathTrig.pm
Criterion Covered Total %
statement 19 19 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 26 26 100.0


line stmt bran cond sub pod time code
1             package GIS::Distance::MathTrig;
2 1     1   16 use 5.008001;
  1         3  
3 1     1   5 use strictures 2;
  1         6  
  1         29  
4             our $VERSION = '0.20';
5              
6 1     1   155 use parent 'GIS::Distance::Formula';
  1         1  
  1         5  
7              
8 1     1   59 use Math::Trig qw( great_circle_distance deg2rad );
  1         2  
  1         44  
9 1     1   4 use GIS::Distance::Constants qw( :all );
  1         2  
  1         91  
10 1     1   6 use namespace::clean;
  1         2  
  1         5  
11              
12             sub _distance {
13 5     5   11 my ($lat1, $lon1, $lat2, $lon2) = @_;
14              
15 5         12 return great_circle_distance(
16             deg2rad($lon1),
17             deg2rad(90 - $lat1),
18             deg2rad($lon2),
19             deg2rad(90 - $lat2),
20             $KILOMETER_RHO,
21             );
22             }
23              
24             1;
25             __END__