Passed
Push — extents ( 6d8774...01b6e3 )
by Doug
61:12
created

Extent2365   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 29
Duplicated Lines 0 %

Test Coverage

Coverage 66.67%

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 29
ccs 2
cts 3
cp 0.6667
rs 10
c 0
b 0
f 0
wmc 1
1
<?php
2
/**
3
 * PHPCoord.
4
 *
5
 * @author Doug Wright
6
 */
7
declare(strict_types=1);
8
9
namespace PHPCoord\Geometry\Extents\BoundingBoxOnly;
10
11
/**
12
 * Asia-ExFSU/Philippines - Mindanao onshore.
13
 * @internal
14
 */
15
class Extent2365
16
{
17 8
    public function __invoke(): array
18
    {
19
        return
20
        [
21
            [
22
                [
23 8
                    [120.30658410395, 5.396380641843], [119.76647027955, 5.396380641843], [119.76647027955, 4.9993610320383], [120.30658410395, 4.9993610320383], [120.30658410395, 5.396380641843],
24
                ],
25
            ],
26
            [
27
                [
28
                    [121.47715385551, 6.1380548220249], [120.81885148562, 6.1380548220249], [120.81885148562, 5.8044575246226], [121.47715385551, 5.8044575246226], [121.47715385551, 6.1380548220249],
29
                ],
30
            ],
31
            [
32
                [
33
                    [120.65312567201, 6.4444084688292], [120.42985543657, 6.4444084688292], [120.42985543657, 6.1905207451877], [120.65312567201, 6.1905207451877], [120.65312567201, 6.4444084688292],
34
                ],
35
            ],
36
            [
37
                [
38
                    [122.28842236437, 6.8021333297983], [121.7426563414, 6.8021333297983], [121.7426563414, 6.3586811040045], [122.28842236437, 6.3586811040045], [122.28842236437, 6.8021333297983],
39
                ],
40
            ],
41
            [
42
                [
43
                    [126.64827894904, 10.51600259919], [121.84676286574, 10.51600259919], [121.84676286574, 5.5049385056582], [126.64827894904, 5.5049385056582], [126.64827894904, 10.51600259919],
44
                ],
45
            ],
46
        ];
47
    }
48
}
49