48#include "FGColumnVector3.h"
49#include "FGMatrix33.h"
53#error Usage of -ffast-math is strongly discouraged
162 FGLocation(
double lon,
double lat,
double radius);
184 void SetLongitude(
double longitude);
197 void SetLatitude(
double latitude);
209 void SetRadius(
double radius);
215 void SetPosition(
double lon,
double lat,
double radius);
221 void SetPositionGeodetic(
double lon,
double lat,
double height);
228 void SetEllipse(
double semimajor,
double semiminor);
260 ComputeDerived();
return mGeodLat;
275 ComputeDerived();
return radtodeg*mGeodLat;
281 ComputeDerived();
return GeodeticAltitude;
285 double GetSeaLevelRadius(
void)
const;
291 double GetRadius()
const { ComputeDerived();
return mRadius; }
309 double GetDistanceTo(
double target_longitude,
double target_latitude)
const;
318 double GetHeadingTo(
double target_longitude,
double target_latitude)
const;
327 ComputeDerived();
return mTl2ec*lvec + mECLoc;
337 ComputeDerived();
return mTec2l*(ecvec - mECLoc);
347 double operator()(
unsigned int idx)
const {
return mECLoc.Entry(idx); }
354 double&
operator()(
unsigned int idx) { mCacheValid =
false;
return mECLoc.Entry(idx); }
364 double Entry(
unsigned int idx)
const {
return mECLoc.Entry(idx); }
375 mCacheValid =
false;
return mECLoc.Entry(idx);
402 return mECLoc == l.mECLoc;
444 return operator*=(1.0/scalar);
484 void ComputeDerivedUnconditional(
void)
const;
490 void ComputeDerived(
void)
const {
492 ComputeDerivedUnconditional();
504 FGColumnVector3 mECLoc;
509 mutable double mRadius;
510 mutable double mGeodLat;
511 mutable double GeodeticAltitude;
514 mutable FGMatrix33 mTl2ec;
515 mutable FGMatrix33 mTec2l;
530 mutable bool mCacheValid;
533 bool mEllipseSet =
false;
542inline FGLocation operator*(
double scalar,
const FGLocation& l)
544 return l.operator*(scalar);
This class implements a 3 element column vector.
FGLocation holds an arbitrary location in the Earth centered Earth fixed reference frame (ECEF).
void SetEllipse(double semimajor, double semiminor)
Sets the semimajor and semiminor axis lengths for this planet.
FGLocation operator*(double scalar) const
This operator scales an ECEF position vector.
const FGLocation & operator*=(double scalar)
This operator scales the ECEF position vector.
bool operator!=(const FGLocation &l) const
This operator returns true if the ECEF location vectors for the two location objects are not equal.
FGLocation operator+(const FGLocation &l) const
This operator adds two ECEF position vectors.
double GetCosLongitude() const
Get the cosine of Longitude.
const FGMatrix33 & GetTl2ec(void) const
Transform matrix from local horizontal to earth centered frame.
double operator()(unsigned int idx) const
Read access the entries of the vector.
double GetLatitude() const
Get the GEOCENTRIC latitude in radians.
const FGMatrix33 & GetTec2l(void) const
Transform matrix from the earth centered to local horizontal frame.
double GetSinLongitude() const
Get the sine of Longitude.
double & operator()(unsigned int idx)
Write access the entries of the vector.
double GetGeodLatitudeRad(void) const
Get the GEODETIC latitude in radians.
double GetGeodLatitudeDeg(void) const
Get the GEODETIC latitude in degrees.
double & Entry(unsigned int idx)
Write access the entries of the vector.
const FGLocation & operator=(const FGColumnVector3 &v)
Sets this location via the supplied vector.
double GetLongitude() const
Get the longitude.
const FGLocation & operator/=(double scalar)
This operator scales the ECEF position vector.
const FGLocation & operator-=(const FGLocation &l)
This operator substracts the ECEF position vectors.
double GetRadius() const
Get the distance from the center of the earth in feet.
FGColumnVector3 LocationToLocal(const FGColumnVector3 &ecvec) const
Conversion from a location in the earth centered and fixed frame to local horizontal frame coordinate...
FGLocation LocalToLocation(const FGColumnVector3 &lvec) const
Conversion from Local frame coordinates to a location in the earth centered and fixed frame.
FGLocation operator-(const FGLocation &l) const
This operator substracts two ECEF position vectors.
double GetLatitudeDeg() const
Get the GEOCENTRIC latitude in degrees.
double GetLongitudeDeg() const
Get the longitude.
double GetGeodAltitude(void) const
Gets the geodetic altitude in feet.
bool operator==(const FGLocation &l) const
This operator returns true if the ECEF location vectors for the two location objects are equal.
const FGLocation & operator+=(const FGLocation &l)
This operator adds the ECEF position vectors.
double Entry(unsigned int idx) const
Read access the entries of the vector.
Handles matrix math operations.