Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
9 | 13 | protected function detectDegreePrecision( float $degree ): float { |
|
10 | 13 | $seconds = $degree * 3600; |
|
11 | 13 | $split = explode( '.', (string)round( $seconds, 4 ) ); |
|
12 | |||
13 | 13 | if ( isset( $split[1] ) ) { |
|
14 | 6 | return pow( 10, -strlen( $split[1] ) ) / 3600; |
|
15 | } |
||
16 | |||
17 | 7 | return 1 / 3600; |
|
18 | } |
||
19 | |||
21 |