GarminGPS.hh
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef GARMINGPS_HH
00028 #define GARMINGPS_HH
00029
00030 #if HAVE_PROJ4
00031 #include <projects.h>
00032 #endif
00033
00034 #include "Model.hh"
00035
00036
00037 typedef struct gz_gps gz_gps_t;
00038
00039
00040 class GarminGPS : public Model
00041 {
00042
00043 public: GarminGPS( World *world );
00044 public: virtual ~GarminGPS();
00045
00046
00047 public: virtual int Load( WorldFile *file, WorldFileNode *node );
00048
00049
00050 public: virtual int Init( WorldFile *file, WorldFileNode *node );
00051
00052
00053 public: virtual int Fini();
00054
00055
00056 public: virtual void Update( double step );
00057
00058
00059 private: void GpsPutData();
00060
00061
00062 private: Body *body;
00063
00064
00065 private: double updatePeriod, updateTime;
00066
00067
00068 private: GzVector utm;
00069 private: double utc, lat, lon, alt;
00070 private: int sats, qual;
00071 private: double hdop, vdop;
00072
00073 #if HAVE_PROJ4
00074
00075 private: PJ *proj;
00076 #endif
00077
00078
00079 private: gz_gps_t *gps;
00080 };
00081
00082 #endif
Last updated 12 September 2005 21:38:45
|