OSDN Git Service

NavSvInfo,RxmSfrB実装
[yubeshi/yubeshi.git] / Yubeshi / Constants.cs
1 /*\r
2  *      Yubeshi GPS Parser\r
3  *\r
4  *      This software is distributed under a zlib-style license.\r
5  *      See license.txt for more information.\r
6  */\r
7 \r
8 using System;\r
9 using System.Collections.Generic;\r
10 using System.Text;\r
11 \r
12 namespace Yubeshi\r
13 {\r
14     public static class Constants\r
15     {\r
16         #region fields\r
17         // based on WGS84\r
18         public const double SemiMajorAxisA = 6378137.00000;\r
19         public const double SemiMajorAxisB = 6356752.31425;\r
20         public const double FirstEccentricitySquared = 6.69437999013e-3;\r
21         public const double SecondEccentricitySquared = 6.73949674226e-3;\r
22         public const double Pi = 3.1415926535898;\r
23         #endregion\r
24     }\r
25 }\r