00001 // CLASSIFICATION: UNCLASSIFIED 00002 00003 /**************************************************************************** 00004 * FILE: HeightType.h 00005 * 00006 * 00007 * DESCRIPTION: This file contains an enum with height types. 00008 * 00009 * LIMITATIONS/ASSUMPTIONS: 00010 * 00011 * MODIFICATION HISTORY: 00012 * 00013 * PROGRAMMER: 00014 * 00015 * DATE NAME DR# DESCRIPTION 00016 * 00017 * 04/19/10 S Gillis BAEts26542 Added EGM84ThirtyMinBiLinear 00018 * 12/16/10 RD Craig BAEts26267 Additions for EGM2008 00019 * 00020 *****************************************************************************/ 00021 00022 #ifndef HeightType_H 00023 #define HeightType_H 00024 00025 00026 namespace MSP 00027 { 00028 namespace CCS 00029 { 00030 class HeightType 00031 { 00032 public: 00033 00034 enum Enum 00035 { 00036 noHeight, 00037 ellipsoidHeight, 00038 EGM96FifteenMinBilinear, 00039 EGM96VariableNaturalSpline, 00040 EGM84TenDegBilinear, 00041 EGM84TenDegNaturalSpline, 00042 EGM84ThirtyMinBiLinear, 00043 EGM2008TwoPtFiveMinBicubicSpline 00044 }; 00045 }; 00046 } 00047 } 00048 00049 #endif 00050 00051 00052 // CLASSIFICATION: UNCLASSIFIED