File Coverage

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


line stmt bran cond sub pod time code
1             package GIS::Distance::Cosine;
2 1     1   24 use 5.008001;
  1         3  
3 1     1   5 use strictures 2;
  1         23  
  1         39  
4             our $VERSION = '0.18';
5              
6 1     1   204 use parent 'GIS::Distance::Formula';
  1         1  
  1         11  
7              
8 1     1   68 use Math::Trig qw( deg2rad acos );
  1         2  
  1         69  
9 1     1   7 use GIS::Distance::Constants qw( :all );
  1         3  
  1         101  
10 1     1   7 use namespace::clean;
  1         2  
  1         33  
11              
12             sub _distance {
13 5     5   10 my ($lat1, $lon1, $lat2, $lon2) = @_;
14              
15 5         40 $lon1 = deg2rad($lon1);
16 5         108 $lat1 = deg2rad($lat1);
17 5         35 $lon2 = deg2rad($lon2);
18 5         33 $lat2 = deg2rad($lat2);
19              
20 5         36 my $a = sin($lat1) * sin($lat2);
21 5         17 my $b = cos($lat1) * cos($lat2) * cos($lon2 - $lon1);
22 5         13 my $c = acos($a + $b);
23              
24 5         45 return $KILOMETER_RHO * $c;
25             }
26              
27             1;
28             __END__