OSGB36ToWGS84() public method

Convert this LatLng object from OSGB36 datum to WGS84 datum.
public OSGB36ToWGS84 ( )
Ejemplo n.º 1
0
 public function testUTMRefWorkHQ()
 {
     $LatLng = new LatLng(51.54105, -0.12319, RefEll::Airy1830());
     $LatLng->OSGB36ToWGS84();
     $UTMRef = $LatLng->toUTMRef();
     $expected = "30U 699375 5713970";
     self::assertEquals($expected, $UTMRef->__toString());
 }