mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:56:29 +00:00
f58dd3d04f
lat lon -> geopoint correct location for gps if small keypoints number
18 lines
367 B
C#
18 lines
367 B
C#
namespace Azaion.Common.DTO;
|
|
|
|
public class Direction
|
|
{
|
|
public double Distance { get; set; }
|
|
public double Azimuth { get; set; }
|
|
|
|
public Direction() { }
|
|
|
|
public Direction(double distance, double azimuth)
|
|
{
|
|
Distance = distance;
|
|
Azimuth = azimuth;
|
|
}
|
|
|
|
public override string ToString() => $"{Distance:F2}, {Azimuth:F1} deg";
|
|
}
|