You are here

function earth_flattening in Location 7.3

Same name and namespace in other branches
  1. 5.3 earth.inc \earth_flattening()
  2. 5 earth.inc \earth_flattening()
  3. 6.3 earth.inc \earth_flattening()
  4. 7.5 earth.inc \earth_flattening()
  5. 7.4 earth.inc \earth_flattening()

Earth flattening.

2 calls to earth_flattening()
earth_eccentricity_sq in ./earth.inc
Earth ccentricity sq.
earth_radius_semiminor in ./earth.inc
Earth radius semiminor.

File

./earth.inc, line 43
Trigonometry for calculating geographical distances. All function arguments and return values measure distances in metres and angles in degrees. The ellipsoid model is from the WGS-84 datum. Ka-Ping Yee, 2003-08-11

Code

function earth_flattening() {
  return 1 / 298.257223563;
}