Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class Projected extends CoordinateReferenceSystem |
||
14 | { |
||
15 | public function __construct( |
||
16 | int $epsgCode, |
||
17 | CoordinateSystem $coordinateSystem, |
||
18 | CoordinateReferenceSystem $baseCRS |
||
19 | ) { |
||
20 | $this->epsgCode = $epsgCode; |
||
21 | $this->coordinateSystem = $coordinateSystem; |
||
22 | $this->baseCRS = $baseCRS; |
||
23 | $this->datum = $baseCRS->getDatum(); |
||
24 | } |
||
25 | |||
26 | public function getEpsgCode(): int |
||
29 | } |
||
30 | |||
31 | public function getCoordinateSystem(): CoordinateSystem |
||
34 | } |
||
35 | |||
36 | public function getBaseCRS(): CoordinateReferenceSystem |
||
41 |