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

Extent4547   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Test Coverage

Coverage 66.67%

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 14
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/Vietnam - 104°20'E to 106°10'E by province - Hanoi.
13
 * @internal
14
 */
15
class Extent4547
16
{
17 8
    public function __invoke(): array
18
    {
19
        return
20
        [
21
            [
22
                [
23 8
                    [105.941734314, 10.973005295], [105.185401917, 10.973005295], [105.185401917, 8.9777700969872], [105.941734314, 8.9777700969872], [105.941734314, 10.973005295],
24
                ],
25
            ],
26
            [
27
                [
28
                    [106.183349609, 21.573841095], [104.374557495, 21.573841095], [104.374557495, 19.25571023266], [106.183349609, 19.25571023266], [106.183349609, 21.573841095],
29
                ],
30
            ],
31
        ];
32
    }
33
}
34