Ejemplo n.º 1
0
 public function testWGS84ToED50()
 {
     $LatLng = new LatLng(12.3, 12.3, 0, RefEll::wgs84());
     $LatLng->toED50();
     $expected = "(12.30121, 12.30071)";
     self::assertEquals($expected, $LatLng->__toString());
 }