Ejemplo n.º 1
0
 public function testNAD27ToWGS84()
 {
     $LatLng = new LatLng(12.3, 12.3, 0, RefEll::clarke1866());
     $LatLng->toWGS84();
     $expected = "(12.30061, 12.30145)";
     self::assertEquals($expected, $LatLng->__toString());
 }