types/geo: add geo.Point and its associated units (#16583)

Package geo provides functionality to represent and process
geographical locations on a sphere. The main type, geo.Point,
represents a pair of latitude and longitude coordinates.

Updates tailscale/corp#29968

Signed-off-by: Simon Law <sfllaw@tailscale.com>
This commit is contained in:
Simon Law
2025-07-17 01:30:08 -07:00
committed by GitHub
parent e7238efafa
commit 93511be044
7 changed files with 1648 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
// Copyright (c) Tailscale Inc & AUTHORS
// SPDX-License-Identifier: BSD-3-Clause
// Package geo provides functionality to represent and process geographical
// locations on a spherical Earth.
package geo