From 6a3bf12ddb96e49d2e509f4807c74dedd1c89279 Mon Sep 17 00:00:00 2001 From: michealroberts Date: Wed, 26 Mar 2025 16:38:00 +0000 Subject: [PATCH] feat: add optional elevation field to GeographicCoordinate type in @observerly/astrometry feat: add optional elevation field to GeographicCoordinate type in @observerly/astrometry --- src/common.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/common.ts b/src/common.ts index a9ea609..1adb4b1 100644 --- a/src/common.ts +++ b/src/common.ts @@ -189,6 +189,16 @@ export type GeographicCoordinate = { * */ longitude: number + /** + * + * + * The elevation of a geographic coordinate is the distance above sea level of the point + * on the Earth's surface, or the height of the point on the Earth's surface above the + * surface of the Earth (in SI metres). + * + * + */ + elevation?: number } /*****************************************************************************************************************/