]> git.mxchange.org Git - simgear.git/commitdiff
SG_ namespace.
authorcurt <curt>
Sat, 24 Mar 2001 03:55:18 +0000 (03:55 +0000)
committercurt <curt>
Sat, 24 Mar 2001 03:55:18 +0000 (03:55 +0000)
simgear/constants.h
simgear/math/polar3d.hxx
simgear/metar/MetarReport.cpp
simgear/metar/MetarStation.cpp
simgear/route/waytest.cxx

index 8c7cf304821711cb38aee6e5f2e1e8aa65332972..12345c14746f07e73811fccfcde9431a286bd153 100644 (file)
 // Conversions
 
 // Arc seconds to radians                     // (arcsec*pi)/(3600*180) = rad
-#define ARCSEC_TO_RAD    4.84813681109535993589e-06 
+#define SG_ARCSEC_TO_RAD    4.84813681109535993589e-06 
 
 // Radians to arc seconds                     // (rad*3600*180)/pi = arcsec
-#define RAD_TO_ARCSEC    206264.806247096355156
+#define SG_RAD_TO_ARCSEC    206264.806247096355156
 
 // Feet to Meters
-#define FEET_TO_METER    0.3048
+#define SG_FEET_TO_METER    0.3048
 
 // Meters to Feet
-#define METER_TO_FEET    3.28083989501312335958  
+#define SG_METER_TO_FEET    3.28083989501312335958  
 
 // Meters to Nautical Miles, 1 nm = 6076.11549 feet
-#define METER_TO_NM      0.00053995680
+#define SG_METER_TO_NM      0.00053995680
 
 // Nautical Miles to Meters
-#define NM_TO_METER      1852.0000
+#define SG_NM_TO_METER      1852.0000
 
 // Radians to Nautical Miles, 1 nm = 1/60 of a degree
-#define NM_TO_RAD        0.00029088820866572159
+#define SG_NM_TO_RAD        0.00029088820866572159
 
 // Nautical Miles to Radians
-#define RAD_TO_NM        3437.7467707849392526
+#define SG_RAD_TO_NM        3437.7467707849392526
 
 // For divide by zero avoidance, this will be close enough to zero
 #define SG_EPSILON 0.0000001
index 0c91bd4f8ff892b019f8009bf5f63d2c25642e79..fd305b48b8244daa7d51f67d77b9f8a5cc3d39a7 100644 (file)
@@ -83,7 +83,7 @@ inline Point3D calc_gc_lon_lat( const Point3D& orig, double course,
     // printf("calc_lon_lat()  offset.theta = %.2f offset.dist = %.2f\n",
     //        offset.theta, offset.dist);
 
-    dist *= METER_TO_NM * NM_TO_RAD;
+    dist *= SG_METER_TO_NM * SG_NM_TO_RAD;
     
     result.sety( asin( sin(orig.y()) * cos(dist) + 
                       cos(orig.y()) * sin(dist) * cos(course) ) );
@@ -154,7 +154,7 @@ inline void calc_gc_course_dist( const Point3D& start, const Point3D& dest,
     }
 
     *course = tc1;
-    *dist = d * RAD_TO_NM * NM_TO_METER;
+    *dist = d * SG_RAD_TO_NM * SG_NM_TO_METER;
 }
 
 #endif // _POLAR_HXX
index 0938a6851cc9fb0ffa76c494c160580566eb3e39..a1227e88b4ab02fd50a7044bd1f8f042da15bbd6 100644 (file)
@@ -216,17 +216,17 @@ int CMetarReport::VerticalVisibility() // Meters
 
 int CMetarReport::Ceiling()
 {
-       return FEET_TO_METER * ((Decoded_METAR *)m_DecodedReport)->Ceiling;
+       return SG_FEET_TO_METER * ((Decoded_METAR *)m_DecodedReport)->Ceiling;
 }
 
 int CMetarReport::EstimatedCeiling()
 {
-       return FEET_TO_METER * ((Decoded_METAR *)m_DecodedReport)->Estimated_Ceiling;
+       return SG_FEET_TO_METER * ((Decoded_METAR *)m_DecodedReport)->Estimated_Ceiling;
 }
 
 int CMetarReport::VariableSkyLayerHeight()
 {
-       return FEET_TO_METER * ((Decoded_METAR *)m_DecodedReport)->VrbSkyLayerHgt;
+       return SG_FEET_TO_METER * ((Decoded_METAR *)m_DecodedReport)->VrbSkyLayerHgt;
 }
 
 int CMetarReport::SnowDepthInches()
index 8aa9e1e78dfd2557ff19e8fe85cfa15139fa2d8d..8115df4826f8077c6d04dd88ed2c919303b9960d 100644 (file)
@@ -82,10 +82,10 @@ CMetarStation::CMetarStation(
        s = t; t = strchr( s, ';' ); *t = 0; t++;
        double ulongitude = decodeDMS( s );
        s = t; t = strchr( s, ';' ); *t = 0; t++;
-       double altitude = atoi( s ) * FEET_TO_METER;
+       double altitude = atoi( s ) * SG_FEET_TO_METER;
        m_altitude = altitude;
        s = t; t = strchr( s, ';' ); *t = 0; t++;
-       double ualtitude = atoi( s ) * FEET_TO_METER;
+       double ualtitude = atoi( s ) * SG_FEET_TO_METER;
        Point3D p( longitude, latitude, altitude+SG_EQUATORIAL_RADIUS_M );
        m_locationPolar = p;
        m_locationCart = sgPolarToCart3d( p );
index ec748697420196ae36a5dca1fe30469e938e3836..e8825b8e427136a3d92ad8b31718e075f6cb0fb8 100644 (file)
@@ -14,12 +14,12 @@ int main() {
 
     a1.CourseAndDistance( cur_lon, cur_lat, cur_alt, &course, &distance );
     cout << "Course to " << a1.get_id() << " is " << course << endl;
-    cout << "Distance to " << a1.get_id() << " is " << distance * METER_TO_NM
+    cout << "Distance to " << a1.get_id() << " is " << distance * SG_METER_TO_NM
         << endl;
 
     a2.CourseAndDistance( cur_lon, cur_lat, cur_alt, &course, &distance );
     cout << "Course to " << a2.get_id() << " is " << course << endl;
-    cout << "Distance to " << a2.get_id() << " is " << distance * METER_TO_NM
+    cout << "Distance to " << a2.get_id() << " is " << distance * SG_METER_TO_NM
         << endl;
     cout << endl;
 
@@ -28,12 +28,12 @@ int main() {
 
     b1.CourseAndDistance( cur_lon, cur_lat, cur_alt, &course, &distance );
     cout << "Course to " << b1.get_id() << " is " << course << endl;
-    cout << "Distance to " << b1.get_id() << " is " << distance * METER_TO_NM
+    cout << "Distance to " << b1.get_id() << " is " << distance * SG_METER_TO_NM
         << endl;
 
     b2.CourseAndDistance( cur_lon, cur_lat, cur_alt, &course, &distance );
     cout << "Course to " << b2.get_id() << " is " << course << endl;
-    cout << "Distance to " << b2.get_id() << " is " << distance * METER_TO_NM
+    cout << "Distance to " << b2.get_id() << " is " << distance * SG_METER_TO_NM
         << endl;
     cout << endl;