|
1 /* |
|
2 * Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef __CT_LBS_SIMULATION_PSY_POS_TP242_CONSTANTS_H |
|
21 #define __CT_LBS_SIMULATION_PSY_POS_TP242_CONSTANTS_H |
|
22 |
|
23 const TReal32 KHorizontalAcc = 40; |
|
24 const TReal32 KVerticalAcc = 60; |
|
25 const TReal64 KLatitude = -6.0; |
|
26 const TReal64 KLongitude = -61.0; |
|
27 const TReal32 KAltitude = 200; |
|
28 |
|
29 // Speed Capabilities |
|
30 const TReal32 KHorizontalSpeed = 1.852F; |
|
31 |
|
32 // Direction Capabilities |
|
33 const TReal32 KHeading = 256.5F; |
|
34 |
|
35 // Compass Capabilities |
|
36 const TReal32 KTrueCourse = 256.5F; |
|
37 const TReal32 KMagneticVariation = 3.3F; |
|
38 |
|
39 // NMEA Capabilities |
|
40 const TUint8 KNMEASentences = 1; |
|
41 _LIT(KNMEASentencesStart, "$GPGSV,3,2,12,24,32,051,,22,21,292,,01,20,315,,14,20,321,*71"); |
|
42 |
|
43 // Satellite Capabilities |
|
44 const TInt8 KSatelliteNumInView = 6; |
|
45 const TInt8 KSatelliteNumUsed = 5; |
|
46 |
|
47 const TReal KSatelliteTime = 150010.10; |
|
48 const TInt KSatelliteDate = 241203; |
|
49 const TReal32 KSatelliteHorizontalDoP = 4.0; |
|
50 const TReal32 KSatelliteVerticalDoP = 5.5; |
|
51 const TReal32 KSatelliteCalVerticalDoP = 0.9f; |
|
52 const TReal32 KSatelliteCalPositionDoP = 4.1f; |
|
53 const TReal32 KSatelliteTimeDoP = 10; |
|
54 const TReal32 KSatellitePositionDoP = 3.5; |
|
55 const TReal32 KSatelliteAltitude = 166.5; |
|
56 const TReal32 KSatelliteGeoidalSeparation = 33.5; // From GGA |
|
57 |
|
58 |
|
59 const TReal32 KElevation1 = 11; |
|
60 const TReal32 KAzimuth1 = 111; |
|
61 const TInt KSignalStrength1 = 11; |
|
62 const TBool KIsUsed1 = 1; |
|
63 |
|
64 const TReal32 KAzimuth2 = 222; |
|
65 const TInt KSignalStrength2 = 22; |
|
66 const TBool KIsUsed2 = 1; |
|
67 |
|
68 const TReal32 KElevation3 = 3; |
|
69 const TInt KSignalStrength3 = 33; |
|
70 const TBool KIsUsed3 = 1; |
|
71 |
|
72 const TReal32 KElevation4 = 44; |
|
73 const TReal32 KAzimuth4 = 444; |
|
74 const TInt KSignalStrength4 = 0; |
|
75 const TBool KIsUsed4 = 1; |
|
76 |
|
77 const TReal32 KElevation5 = -5; |
|
78 const TReal32 KAzimuth5 = 555; |
|
79 const TInt KSignalStrength5 = 55; |
|
80 const TBool KIsUsed5 = 1; |
|
81 |
|
82 const TReal32 KElevation6 = 66; |
|
83 const TReal32 KAzimuth6 = 666; |
|
84 const TInt KSignalStrength6 = 66; |
|
85 const TBool KIsUsed6 = 0; |
|
86 |
|
87 #endif // __CT_LBS_SIMULATION_PSY_POS_TP242_CONSTANTS_H |
|
88 |
|
89 // End of File |