Vertical points =============== A vertical point is one that has a *height* (or *depth* as negative) component only. Since this is of limited practical use, they are usually paired with 2D ``GeographicPoint`` or a ``ProjectedPoint`` as part of a ``CompoundPoint``. A ``VerticalPoint`` can be constructed by calling ``VerticalPoint::create``, which has the following signature: .. code-block:: php public static function create( Vertical $crs, Length $height, ?DateTimeInterface $epoch = null ): VerticalPoint Examples: .. code-block:: php getHeight(); // Length $epoch = $point->getCoordinateEpoch(); // DateTimeImmutable|null $crs = $point->getCRS(); // Vertical $asString = (string) $point; // '(12.34)'