00001 #pragma ident "$Id: EllipsoidModel.hpp 3140 2012-06-18 15:03:02Z susancummins $" 00002 00003 00004 00010 #ifndef GPSTK_ELLIPSOIDMODEL_HPP 00011 #define GPSTK_ELLIPSOIDMODEL_HPP 00012 00013 //============================================================================ 00014 // 00015 // This file is part of GPSTk, the GPS Toolkit. 00016 // 00017 // The GPSTk is free software; you can redistribute it and/or modify 00018 // it under the terms of the GNU Lesser General Public License as published 00019 // by the Free Software Foundation; either version 2.1 of the License, or 00020 // any later version. 00021 // 00022 // The GPSTk is distributed in the hope that it will be useful, 00023 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00024 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00025 // GNU Lesser General Public License for more details. 00026 // 00027 // You should have received a copy of the GNU Lesser General Public 00028 // License along with GPSTk; if not, write to the Free Software Foundation, 00029 // Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA 00030 // 00031 // Copyright 2004, The University of Texas at Austin 00032 // 00033 //============================================================================ 00034 00035 //============================================================================ 00036 // 00037 //This software developed by Applied Research Laboratories at the University of 00038 //Texas at Austin, under contract to an agency or agencies within the U.S. 00039 //Department of Defense. The U.S. Government retains all rights to use, 00040 //duplicate, distribute, disclose, or release this software. 00041 // 00042 //Pursuant to DoD Directive 523024 00043 // 00044 // DISTRIBUTION STATEMENT A: This software has been approved for public 00045 // release, distribution is unlimited. 00046 // 00047 //============================================================================= 00048 00049 00050 00051 namespace gpstk 00052 { 00055 00060 class EllipsoidModel 00061 { 00062 public: 00064 virtual double a() const throw() = 0; 00065 00067 virtual double a_km() const throw() = 0; 00068 00070 virtual double flattening() const throw() = 0; 00071 00073 virtual double eccentricity() const throw() = 0; 00074 00076 virtual double eccSquared() const throw() 00077 { return eccentricity() * eccentricity(); } 00078 00080 virtual double angVelocity() const throw() = 0; 00081 00083 virtual double gm() const throw() = 0; 00084 00086 virtual double gm_km() const throw() = 0; 00087 00089 virtual double c() const throw() = 0; 00090 00092 virtual double c_km() const throw() = 0; 00093 00095 virtual ~EllipsoidModel() throw() {}; 00096 00097 }; // class EllipsoidModel 00098 00100 00101 } // namespace 00102 00103 #endif
1.3.9.1