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

Extent2130   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Test Coverage

Coverage 66.67%

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 24
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
 * Europe-FSU/Europe - 30°E to 36°E and ETRS89 by country.
13
 * @internal
14
 */
15
class Extent2130
16
{
17 8
    public function __invoke(): array
18
    {
19
        return
20
        [
21
            [
22
                [
23 8
                    [31.581962499212, 63.734722539287], [30, 63.734722539287], [30, 61.73563754338], [31.581962499212, 61.73563754338], [31.581962499212, 63.734722539287],
24
                ],
25
            ],
26
            [
27
                [
28
                    [30.612775657723, 64.530470443201], [30, 64.530470443201], [30, 63.749796265758], [30.612775657723, 63.749796265758], [30.612775657723, 64.530470443201],
29
                ],
30
            ],
31
            [
32
                [
33
                    [30.206872245712, 64.795547485352], [30, 64.795547485352], [30, 64.587659881644], [30.206872245712, 64.587659881644], [30.206872245712, 64.795547485352],
34
                ],
35
            ],
36
            [
37
                [
38
                    [36, 84.697994126795], [30, 84.697994126795], [30, 69.466743422258], [36, 69.466743422258], [36, 84.697994126795],
39
                ],
40
            ],
41
        ];
42
    }
43
}
44