00001 #pragma ident "$Id: ObsUtils.hpp 990 2007-12-16 05:42:58Z ocibu $"
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
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifndef OBSUTILS_HPP
00040 #define OBSUTILS_HPP
00041
00042 #include "RinexObsData.hpp"
00043 #include "RinexNavData.hpp"
00044 #include "RinexMetData.hpp"
00045
00046 #include "EngAlmanac.hpp"
00047 #include "ObsEpochMap.hpp"
00048 #include "WxObsMap.hpp"
00049 #include "SMODFData.hpp"
00050
00051 #include "MDPNavSubframe.hpp"
00052 #include "MDPObsEpoch.hpp"
00053 #include "MDPPVTSolution.hpp"
00054
00055 #include "AshtechMBEN.hpp"
00056 #include "AshtechPBEN.hpp"
00057
00058 #include "ATSData.hpp"
00059
00060 namespace gpstk
00061 {
00063 SvObsEpoch makeSvObsEpoch(const MDPObsEpoch& mdp) throw();
00064
00065 ObsEpoch makeObsEpoch(const MDPEpoch& mdp) throw();
00066
00067 MDPObsEpoch makeMDPObsEpoch(const SvObsEpoch& soe) throw();
00068
00070 SvObsEpoch makeSvObsEpoch(const RinexObsData::RinexObsTypeMap& rotm) throw();
00071
00072 ObsEpoch makeObsEpoch(const RinexObsData& rod) throw();
00073
00074 WxObservation makeWxObs(const RinexMetData& rmd) throw();
00075
00079 WxObservation makeWxObs(const SMODFData& smod) throw();
00080
00083 MDPObsEpoch makeMDPObsEpoch(
00084 const AshtechMBEN& mben,
00085 const MDPObsEpoch& hint) throw();
00086
00087 void addMDPObservation(
00088 MDPObsEpoch& moe,
00089 const AshtechMBEN::code_block& cb,
00090 CarrierCode cc,
00091 RangeCode rc,
00092 const MDPObsEpoch& moe_hint) throw();
00093
00094 MDPPVTSolution makeMDPPVTSolution(
00095 const AshtechPBEN& pben,
00096 const unsigned week) throw();
00097
00099 MDPEpoch makeMDPEpoch(const ATSData& soe, const MDPEpoch& hint)
00100 throw();
00101 }
00102 #endif