computetropmodel.hpp

来自「一个gps小工具包」· HPP 代码 · 共 216 行

HPP
216
字号
#pragma ident "$Id: $"/** * @file ComputeTropModel.hpp * This is a class to compute the basic parts of a GNSS model, i.e.: * Geometric distance, relativity correction, satellite position at * transmission time, satellite elevation and azimuth, etc. */#ifndef COMPUTETROPMODEL_HPP#define COMPUTETROPMODEL_HPP//============================================================================////  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//  //  Dagoberto Salazar - gAGE ( http://www.gage.es ). 2007////============================================================================#include "ProcessingClass.hpp"#include "TropModel.hpp"namespace gpstk{      /** @addtogroup GPSsolutions */      //@{      /** This is a class to compute the main values related to a given       * GNSS tropospheric model.       *       * This class is intended to be used with GNSS Data Structures (GDS).       * It is a more modular alternative to classes such as ModelObs       * and ModelObsFixedStation.       *       * A typical way to use this class follows:       *       * @code       *   // Input observation file stream       *   RinexObsStream rin("ebre0300.02o");       *       *   // Define the tropospheric model to be used       *   NeillTropModel neillTM;       *   neillTM.setReceiverLatitude(lat);       *   neillTM.setReceiverHeight(height);       *   neillTM.setDayOfYear(doy);       *       *   // Now, create the ComputeTropModel object       *   ComputeTropModel computeTropo(neillTM);       *       *   gnssRinex gRin;  // GNSS data structure for fixed station data       *       *   while(rin >> gRin)       *   {       *         // Apply the tropospheric model on the GDS       *      gRin >> computeTropo;       *   }       *       * @endcode       *       * The "ComputeTropModel" object will visit every satellite in       * the GNSS data structure that is "gRin" and will try to compute       * the main values of the corresponding tropospheric model: Total       * tropospheric slant correction, dry vertical delay, wet vertical delay,       * dry mapping function value and wet mapping function value.       *       * When used with the ">>" operator, this class returns the same       * incoming data structure with the extra data inserted along their       * corresponding satellites.       *       * Be warned that if a given satellite does not have the information       * needed (mainly elevation), it will be summarily deleted from the data       * structure. This also implies that if you try to use a       * "ComputeTropModel" object without defining first the tropospheric       * model, then ALL satellites will be deleted.       *       * @sa TropModel.hpp       *       */   class ComputeTropModel : public ProcessingClass   {   public:         /// Default constructor.      ComputeTropModel()         throw(Exception)         : pTropModel(NULL)      { setIndex(); };         /** Explicit constructor.          *          * @param RxCoordinates Reference station coordinates.          * @param dEphemeris    EphemerisStore object to be used by default.          * @param dObservable   Observable type to be used by default.          * @param applyTGD      Whether or not C1 observable will be          *                      corrected from TGD effect.          *          */      ComputeTropModel(TropModel& tropoModel)         throw(Exception)      { pTropModel = &tropoModel; setIndex(); };         /** Returns a satTypeValueMap object, adding the new data generated          *  when calling a modeling object.          *          * @param time      Epoch.          * @param gData     Data object holding the data.          */      virtual satTypeValueMap& Process( const DayTime& time,                                        satTypeValueMap& gData )         throw(Exception);         /** Returns a gnnsSatTypeValue object, adding the new data generated          *  when calling a modeling object.          *          * @param gData    Data object holding the data.          */      virtual gnssSatTypeValue& Process(gnssSatTypeValue& gData)         throw(Exception)      { Process(gData.header.epoch, gData.body); return gData; };         /** Returns a gnnsRinex object, adding the new data generated when          *  calling a modeling object.          *          * @param gData    Data object holding the data.          */      virtual gnssRinex& Process(gnssRinex& gData)         throw(Exception)      { Process(gData.header.epoch, gData.body); return gData; };         /// Method to get a pointer to the default TropModel to be used         /// with GNSS data structures.      virtual TropModel *getTropModel() const      { return pTropModel; };         /** Method to set the default TropModel to be used with GNSS          *  data structures.          *          * @param tropoModel   TropModel object to be used by default          */      virtual ComputeTropModel& setTropModel(TropModel& tropoModel)      { pTropModel = &tropoModel; return (*this); };         /// Returns an index identifying this object.      virtual int getIndex(void) const;         /// Returns a string identifying this object.      virtual std::string getClassName(void) const;         /** Sets the index to a given arbitrary value. Use with caution.          *          * @param newindex      New integer index to be assigned to          *                      current object.          */      ComputeTropModel& setIndex(const int newindex)      { index = newindex; return (*this); };         /// Destructor.      virtual ~ComputeTropModel() {};   private:         /// Pointer to default TropModel object when working with GNSS         /// data structures.      TropModel *pTropModel;         /// Initial index assigned to this class.      static int classIndex;         /// Index belonging to this object.      int index;         /// Sets the index and increment classIndex.      void setIndex(void)      { index = classIndex++; };   }; // class ComputeTropModel      //@}} // namespace#endif // COMPUTETROPMODEL_HPP

⌨️ 快捷键说明

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