関数latlon2xy_calculate_S1 マニュアル

(The documentation of function latlon2xy_calculate_S1)

Last Update: 2021/11/30


◆機能・用途(Purpose)

latlon2xyの補助関数として 計算式中の\(S_{1j}\)を計算する。
As a supplementary function of latlon2xy, compute \(S_{1j}\) of the formula.


◆形式(Format)

#include <coordinate.h>
inline double latlon2xy_calculate_S1(const int j,const double n)


◆引数(Arguments)

j \(S_{1j}\)の添字番号で、 関数\(S(\phi)\)の計算式における項番号を表す。
The index of the subscript of \(S_{1j}\), which represents the index of the term of function \(S(\phi)\).
n 楕円体の扁平率の逆数を\(F\)としたときの\(1/(2F-1)\)の値。
The value of \(1/(2F-1)\), where \(F\) is the inverse of the ellipticity of the ellipsoid.


◆戻り値(Return value)

計算した\(S_{1j}\)の値。
The value \(S_{1j}\) computed.


◆使用例(Example)

const double F=298.257222101;
const double n=1.0/(2.0*F-1.0);
double S1=latlon2xy_calculate_S1(0,n);