2 WARNING - Do not remove this header.
4 This code is a templated version of the 'magic-software' spherical
5 interpolation code by Dave Eberly. The original (un-hacked) code can be
6 obtained from here: http://www.magic-software.com/gr_appr.htm
7 This code is derived from linintp2.h/cpp and sphrintp.h/cpp.
9 Dave Eberly says that the conditions for use are:
11 * You may distribute the original source code to others at no charge.
13 * You may modify the original source code and distribute it to others at
14 no charge. The modified code must be documented to indicate that it is
15 not part of the original package.
17 * You may use this code for non-commercial purposes. You may also
18 incorporate this code into commercial packages. However, you may not
19 sell any of your source code which contains my original and/or modified
20 source code. In such a case, you need to factor out my code and freely
23 * The original code comes with absolutely no warranty and no guarantee is
24 made that the code is bug-free.
26 This does not seem incompatible with GPL - so this modified version
27 is hereby placed under GPL along with the rest of FlightGear.
32 #include <simgear/compiler.h>
34 #include <simgear/debug/logstream.hxx>
39 SG_USING_NAMESPACE(std);
43 static const double PI = 4.0*atan(1.0);
44 static const double TWOPI = 2.0*PI;
46 //---------------------------------------------------------------------------
47 SphereInterpolate::SphereInterpolate (int n, const double* x,
48 const double* y, const double* z,
49 const unsigned int* f)
51 // Assumes (x[i],y[i],z[i]) is unit length for all 0 <= i < n.
52 // For complete spherical coverage, include the two antipodal points
53 // (0,0,1,f(0,0,1)) and (0,0,-1,f(0,0,-1)) in the data set.
55 SG_LOG(SG_MATH, SG_DEBUG, "Initialising spherical interpolator.");
56 SG_LOG(SG_MATH, SG_DEBUG, "[ 0%] Allocating memory");
58 theta = new double[3*n];
59 phi = new double[3*n];
60 func = new unsigned int[3*n];
62 // convert data to spherical coordinates
65 for (i = 0; i < n; i++)
67 GetSphericalCoords(x[i],y[i],z[i],theta[i],phi[i]);
71 // use periodicity to get wrap-around in the Delaunay triangulation
72 SG_LOG(SG_MATH, SG_DEBUG, "[ 10%] copying vertices for wrap-aroundr");
74 for (i = 0, j = n, k = 2*n; i < n; i++, j++, k++)
76 theta[j] = theta[i]+TWOPI;
77 theta[k] = theta[i]-TWOPI;
84 pInterp = new mgcLinInterp2D(3*n,theta,phi,func);
86 SG_LOG(SG_MATH, SG_DEBUG, "[100%] Finished initialising spherical interpolator.");
89 SphereInterpolate::SphereInterpolate (int n, const sgVec2* p, const unsigned int* f)
91 // Assumes (x[i],y[i],z[i]) is unit length for all 0 <= i < n.
92 // For complete spherical coverage, include the two antipodal points
93 // (0,0,1,f(0,0,1)) and (0,0,-1,f(0,0,-1)) in the data set.
94 SG_LOG(SG_MATH, SG_DEBUG, "Initialising spherical interpolator.");
95 SG_LOG(SG_MATH, SG_DEBUG, "[ 0%] Allocating memory");
97 theta = new double[3*n];
98 phi = new double[3*n];
99 func = new unsigned int[3*n];
101 // convert data to spherical coordinates
102 SG_LOG(SG_MATH, SG_DEBUG, "[ 10%] copying vertices for wrap-around");
105 for (i = 0, j = n, k = 2*n; i < n; i++, j++, k++)
111 // use periodicity to get wrap-around in the Delaunay triangulation
114 theta[j] = theta[i]+TWOPI;
115 theta[k] = theta[i]-TWOPI;
120 pInterp = new mgcLinInterp2D(3*n,theta,phi,func);
122 SG_LOG(SG_MATH, SG_DEBUG, "[100%] Finished initialising spherical interpolator.");
124 //---------------------------------------------------------------------------
125 SphereInterpolate::~SphereInterpolate ()
132 //---------------------------------------------------------------------------
133 void SphereInterpolate::GetSphericalCoords (const double x, const double y, const double z,
135 double& phiAngle) const
137 // Assumes (x,y,z) is unit length. Returns -PI <= thetaAngle <= PI
138 // and 0 <= phiAngle <= PI.
144 thetaAngle = atan2(y,x);
159 //---------------------------------------------------------------------------
160 int SphereInterpolate::Evaluate (const double x, const double y, const double z, EvaluateData& f) const
162 // assumes (x,y,z) is unit length
164 double thetaAngle, phiAngle;
165 GetSphericalCoords(x,y,z,thetaAngle,phiAngle);
166 return pInterp->Evaluate(thetaAngle,phiAngle,f);
168 //---------------------------------------------------------------------------
169 int SphereInterpolate::Evaluate (const double thetaAngle, const double phiAngle, EvaluateData& f) const
171 return pInterp->Evaluate(thetaAngle,phiAngle,f);
173 //---------------------------------------------------------------------------