-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathGeospatialInformation.cs
46 lines (41 loc) · 1.45 KB
/
GeospatialInformation.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright (c) .NET Foundation and Contributors
// Portions Copyright (c) Eclo Solutions
// See LICENSE file in the project root for full license information.
namespace Iot.Device.Swarm
{
/// <summary>
/// Geospatial information of the Tile.
/// </summary>
public class GeospatialInformation
{
/// <summary>
/// Gets latitude in d.dddd format.
/// </summary>
/// <remarks>
/// The latitude is presented in the N basis (negative latitudes are in the southern hemisphere).
/// </remarks>
public float Latitude { get; internal set; }
/// <summary>
/// Gets longitude in d.dddd format.
/// </summary>
/// <remarks>
/// The longitude is presented in the E basis (negative longitudes are in the western hemisphere).
/// </remarks>
public float Longitude { get; internal set; }
/// <summary>
/// Gets altitude in meters.
/// </summary>
public float Altitude { get; internal set; }
/// <summary>
/// Gets course in degrees (0..359).
/// </summary>
/// <remarks>
/// Course proceeds clockwise, with 0=north, 90=east, 180=south, and 270=west.
/// </remarks>
public float Course { get; internal set; }
/// <summary>
/// Gets speed in kilometers per hour (0..999).
/// </summary>
public float Speed { get; internal set; }
}
}