Location\Distance\VincentyTest::testNotMatchingEllispoids PHP Method

testNotMatchingEllispoids() public method

    public function testNotMatchingEllispoids()
    {
        $coordinate1 = new Coordinate(19.820664, -155.468066, $this->ellipsoid);
        $coordinate2 = new Coordinate(20.709722, -156.253333, new Ellipsoid("AnotherEllipsoid", 6378140.0, 299.2));
        $calculator = new Vincenty();
        $distance = $calculator->getDistance($coordinate1, $coordinate2);
    }