for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* PHPCoord.
*
* @author Doug Wright
*/
declare(strict_types=1);
namespace PHPCoord\CoordinateOperation;
use PHPCoord\UnitOfMeasure\Length\Metre;
class IGNFHeightGrid extends GeographicGeoidHeightGrid
{
use IGNFGrid;
* @return Metre[]
public function getValues(float $x, float $y): array
$shift = $this->interpolate($x, $y)[0];
return [new Metre($shift)];
}