📄 gga.cpp
字号:
/*
** Author: Samuel R. Blackburn
** Internet: wfc@pobox.com
**
** Copyright, 1996-2005, Samuel R. Blackburn
**
** "You can get credit for something or get it done, but not both."
** Dr. Richard Garwin
**
** BSD License follows.
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions
** are met:
**
** Redistributions of source code must retain the above copyright notice,
** this list of conditions and the following disclaimer. Redistributions
** in binary form must reproduce the above copyright notice, this list
** of conditions and the following disclaimer in the documentation and/or
** other materials provided with the distribution. Neither the name of
** the WFC nor the names of its contributors may be used to endorse or
** promote products derived from this software without specific prior
** written permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**
** $Workfile: gga.cpp $
** $Revision: 6 $
** $Modtime: 10/12/98 6:39a $
*/
#include "nmea0183.h"
#pragma hdrstop
#if defined( _DEBUG ) && defined( _INC_CRTDBG )
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#define new DEBUG_NEW
#endif // _DEBUG
GGA::GGA()
{
Mnemonic = TEXT( "GGA" );
Empty();
}
GGA::~GGA()
{
Mnemonic.Empty();
Empty();
}
void GGA::Empty( void )
{
UTCTime.Empty();
Position.Empty();
GPSQuality = 0;
NumberOfSatellitesInUse = 0;
HorizontalDilutionOfPrecision = 0.0;
AntennaAltitudeMeters = 0.0;
GeoidalSeparationMeters = 0.0;
AgeOfDifferentialGPSDataSeconds = 0.0;
DifferentialReferenceStationID = 0;
}
BOOL GGA::Parse( const SENTENCE& sentence )
{
/*
** GGA - Global Positioning System Fix Data
** Time, Position and fix related data fora GPS receiver.
**
** 11
** 1 2 3 4 5 6 7 8 9 10 | 12 13 14 15
** | | | | | | | | | | | | | | |
** $--GGA,hhmmss.ss,llll.ll,a,yyyyy.yy,a,x,xx,x.x,x.x,M,x.x,M,x.x,xxxx*hh<CR><LF>
**
** Field Number:
** 1) Universal Time Coordinated (UTC)
** 2) Latitude
** 3) N or S (North or South)
** 4) Longitude
** 5) E or W (East or West)
** 6) GPS Quality Indicator,
** 0 - fix not available,
** 1 - GPS fix,
** 2 - Differential GPS fix
** 7) Number of satellites in view, 00 - 12
** 8) Horizontal Dilution of precision
** 9) Antenna Altitude above/below mean-sea-level (geoid)
** 10) Units of antenna altitude, meters
** 11) Geoidal separation, the difference between the WGS-84 earth
** ellipsoid and mean-sea-level (geoid), "-" means mean-sea-level
** below ellipsoid
** 12) Units of geoidal separation, meters
** 13) Age of differential GPS data, time in seconds since last SC104
** type 1 or 9 update, null field when DGPS is not used
** 14) Differential reference station ID, 0000-1023
** 15) Checksum
*/
/*
** First we check the checksum...
*/
const NMEA0183_BOOLEAN checksum_is_bad = sentence.IsChecksumBad();
if ( checksum_is_bad == True )
{
InvalidChecksum();
return( FALSE );
}
UTCTime = sentence.Field( 1 );
Time = sentence.Time( 1 );
Position.Parse( 2, 3, 4, 5, sentence );
GPSQuality = sentence.Integer( 6 );
NumberOfSatellitesInUse = sentence.Integer( 7 );
HorizontalDilutionOfPrecision = sentence.Double( 8 );
AntennaAltitudeMeters = sentence.Double( 9 );
GeoidalSeparationMeters = sentence.Double( 11 );
AgeOfDifferentialGPSDataSeconds = sentence.Double( 13 );
DifferentialReferenceStationID = sentence.Integer( 14 );
return( TRUE );
}
CString GGA::ToText( void ) const
{
CString return_string;
return_string = TEXT( "At " );
return_string += Time.Format( TEXT( "%I:%M.%S %p" ) );
return_string += TEXT( " UTC, you were at " );
return_string += Position.ToText();
return_string += TEXT( ", " );
switch( GPSQuality )
{
case 1:
return_string += TEXT( "based upon a GPS fix" );
break;
case 2:
return_string += TEXT( "based upon a differential GPS fix" );
break;
default:
return_string += TEXT( "a GPS fix was not available" );
break;
}
CString temp_string;
temp_string.Format( TEXT( ", %d satellites are in use." ), NumberOfSatellitesInUse );
return_string += temp_string;
return( return_string );
}
BOOL GGA::Write( SENTENCE& sentence )
{
/*
** Let the parent do its thing
*/
RESPONSE::Write( sentence );
sentence += UTCTime;
sentence += Position;
sentence += GPSQuality;
sentence += NumberOfSatellitesInUse;
sentence += HorizontalDilutionOfPrecision;
sentence += AntennaAltitudeMeters;
sentence += "M";
sentence += GeoidalSeparationMeters;
sentence += "M";
sentence += AgeOfDifferentialGPSDataSeconds;
sentence += DifferentialReferenceStationID;
sentence.Finish();
return( TRUE );
}
const GGA& GGA::operator = ( const GGA& source )
{
UTCTime = source.UTCTime;
Time = source.Time;
Position = source.Position;
GPSQuality = source.GPSQuality;
NumberOfSatellitesInUse = source.NumberOfSatellitesInUse;
HorizontalDilutionOfPrecision = source.HorizontalDilutionOfPrecision;
AntennaAltitudeMeters = source.AntennaAltitudeMeters;
GeoidalSeparationMeters = source.GeoidalSeparationMeters;
AgeOfDifferentialGPSDataSeconds = source.AgeOfDifferentialGPSDataSeconds;
DifferentialReferenceStationID = source.DifferentialReferenceStationID;
return( *this );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -