00001 using System;
00002 using System.Collections.Generic;
00003 using System.Linq;
00004 using System.Text;
00005
00006 namespace GpsModule {
00007 public class RmcData : SharedGpsData {
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 char _status = 'V';
00032 public char Status {
00033 get { return _status; }
00034 }
00035 public void setStatus(char status) {
00036 _status = status;
00037 }
00038
00039 double _speedOverGround = 0;
00040 public double SpeedOverGround {
00041 get { return _speedOverGround; }
00042 }
00043 public void setSpeedOverGround(double speedOverGround) {
00044 _speedOverGround = speedOverGround;
00045 }
00046
00047 double _trackMadeGood = 0;
00048 public double TrackMadeGood {
00049 get { return _trackMadeGood; }
00050 }
00051 public void setTrackMadeGood(double trackMadeGood) {
00052 _trackMadeGood = trackMadeGood;
00053 }
00054
00055 double _magneticVariation = 0;
00056 public double MagneticVariation {
00057 get { return _magneticVariation; }
00058 }
00059 public void setMagneticVariation(double magneticVariation) {
00060 _magneticVariation = magneticVariation;
00061 }
00062
00063 char _eastOrWestM = 'E';
00064 public char EastOrWestM {
00065 get { return _eastOrWestM; }
00066 }
00067 public void setEastOrWestM(char eastOrWestM) {
00068 _eastOrWestM = eastOrWestM;
00069 }
00070 }
00071 }