-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGPS5.cs
More file actions
36 lines (35 loc) · 751 Bytes
/
Copy pathGPS5.cs
File metadata and controls
36 lines (35 loc) · 751 Bytes
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
using System;
namespace Cromatix.MP4Reader
{
internal class GPS5
{
/// <summary>
/// Latitude
/// </summary>
public double Lat;
/// <summary>
/// Longitude
/// </summary>
public double Lon;
/// <summary>
/// Altirude
/// </summary>
public double Alt;
/// <summary>
/// 2D speed
/// </summary>
public double Speed2d;
/// <summary>
/// 3D speed
/// </summary>
public double Speed3d;
/// <summary>
/// DOP
/// </summary>
public double DOP;
/// <summary>
/// Fix (0, 2D or 3D)
/// </summary>
public short Fix;
}
}