OSRef::OSRef PHP Method

OSRef() public method

Grid references with accuracy greater than 1m can be represented using floating point values for the easting and northing. For example, a value representing an easting or northing accurate to 1mm would be given as 651400.0001.
public OSRef ( $easting, $northing )
    function OSRef($easting, $northing)
    {
        $this->easting = $easting;
        $this->northing = $northing;
    }