ephemerisrange.hpp

来自「gps源代码」· HPP 代码 · 共 115 行

HPP
115
字号
#pragma ident "$Id: EphemerisRange.hpp 216 2006-10-12 17:43:44Z architest $"//============================================================================////  This file is part of GPSTk, the GPS Toolkit.////  The GPSTk is free software; you can redistribute it and/or modify//  it under the terms of the GNU Lesser General Public License as published//  by the Free Software Foundation; either version 2.1 of the License, or//  any later version.////  The GPSTk is distributed in the hope that it will be useful,//  but WITHOUT ANY WARRANTY; without even the implied warranty of//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the//  GNU Lesser General Public License for more details.////  You should have received a copy of the GNU Lesser General Public//  License along with GPSTk; if not, write to the Free Software Foundation,//  Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA//  //  Copyright 2004, The University of Texas at Austin////============================================================================//============================================================================////This software developed by Applied Research Laboratories at the University of//Texas at Austin, under contract to an agency or agencies within the U.S. //Department of Defense. The U.S. Government retains all rights to use,//duplicate, distribute, disclose, or release this software. ////Pursuant to DoD Directive 523024 //// DISTRIBUTION STATEMENT A: This software has been approved for public //                           release, distribution is unlimited.////=============================================================================/** * @file EphemerisRange.hpp * Computation of range and associated quantities from EphemerisStore */ #ifndef EPHEMERIS_RANGE_HPP#define EPHEMERIS_RANGE_HPP#include "DayTime.hpp"#include "SatID.hpp"#include "Position.hpp"#include "EphemerisStore.hpp"#include "Xvt.hpp"namespace gpstk{   /** @addtogroup ephemcalc */   //@{   /** class CorrectedEphemerisRange. Compute the corrected range from receiver    * at position Rx, to the GPS satellite given by SatID sat, as well as azimuth,    * elevation, etc., given a nominal timetag (either received or transmitted    * time) and an EphemerisStore.    */   class CorrectedEphemerisRange   {   public:         /// Default constructor.      CorrectedEphemerisRange() {}      /// Compute the corrected range at RECEIVE time, from receiver at      /// position Rx, to the GPS satellite given by SatID sat, as well as all      /// the CER quantities, given the nominal receive time tr_nom and      /// an EphemerisStore.      double ComputeAtReceiveTime(const DayTime& tr_nom,            const Position& Rx, const SatID sat, const EphemerisStore& Eph);      /// Compute the corrected range at TRANSMIT time, from receiver at      /// position Rx, to the GPS satellite given by SatID sat, as well as all      /// the CER quantities, given the nominal receive time tr_nom and      /// an EphemerisStore.      double ComputeAtTransmitTime(const DayTime& tr_nom, const double& pr,            const Position& Rx, const SatID sat, const EphemerisStore& Eph);      /// The computed raw (geometric) range in meters.      double rawrange;      /// The satellite clock bias in meters.      double svclkbias;      /// The satellite clock drift in m/s.      double svclkdrift;      /// The relativity correction in meters.      double relativity;      /// The satellite elevation (spheroidal), as seen at the receiver, in degrees.      double elevation;      /// The satellite azimuth (spheroidal), as seen at the receiver, in degrees.      double azimuth;      /// The satellite elevation (geodetic), as seen at the receiver, in degrees.      double elevationGeodetic;      /// The satellite azimuth (geodetic), as seen at the receiver, in degrees.      double azimuthGeodetic;      /// The computed transmit time of the signal.      DayTime transmit;      /// The direction cosines of the satellite, as seen at the receiver (XYZ).      Triple cosines;      /// The satellite position (m) and velocity (m/s) in ECEF coordinates.      Xvt svPosVel;   }; // end class CorrectedEphemerisRange   /// Compute relativity correction (seconds) from the satellite position and velocity   double RelativityCorrection(const Xvt& svPosVel);   //@}}  // namespace gpstk#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?