Beispiel #1
0
 public function inverse($p)
 {
     $x = $p->x;
     $y = $p->y;
     $p->x = Sourcemap_Proj::adjust_lon($this->long0 + ($x - $this->x0) / ($this->a * $this->rc));
     $p->y = Sourcemap_Proj::adjust_lat($this->lat0 + ($y - $this->y0) / $this->a);
     return $p;
 }