Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
76 | public function toLatLng(): LatLng |
||
77 | { |
||
78 | $N = $this->y; |
||
79 | $E = $this->x; |
||
80 | $N0 = $this->getOriginNorthing(); |
||
81 | $E0 = $this->getOriginEasting(); |
||
82 | $phi0 = $this->getOriginLatitude(); |
||
83 | $lambda0 = $this->getOriginLongitude(); |
||
84 | |||
85 | return $this->convertToLatitudeLongitude($N, $E, $N0, $E0, $phi0, $lambda0); |
||
86 | } |
||
97 |