Geocentric points ================= A geocentric point is one that measures distances from the centre of the Earth. These are usually in ``(x,y,z)`` format. A ``GeocentricPoint`` can be constructed by calling ``GeocentricPoint::create`` which has the following signature: .. code-block:: php public static function create( Geocentric $crs, Length $x, Length $y, Length $z, ?DateTimeInterface $epoch = null ): GeocentricPoint Examples: .. code-block:: php getX(); // Length $y = $point->getY(); // Length $z = $point->getZ(); // Length $epoch = $point->getCoordinateEpoch(); // DateTimeImmutable|null $crs = $point->getCRS(); // Geocentric $asString = (string) $point; // '(6121152, -1563979, -872615)'