constants.py
Go to the documentation of this file.
1 """Define the WGS84 ellipsoid"""
2 # constants.py
3 #
4 # This is a translation of the GeographicLib::Constants class to python. See
5 # the documentation for the C++ class for more information at
6 #
7 # https://geographiclib.sourceforge.io/html/annotated.html
8 #
9 # Copyright (c) Charles Karney (2011-2016) <charles@karney.com> and
10 # licensed under the MIT/X11 License. For more information, see
11 # https://geographiclib.sourceforge.io/
12 ######################################################################
13 
15  """
16  Constants describing the WGS84 ellipsoid
17  """
18 
19  WGS84_a = 6378137.0 # meters
20  """the equatorial radius in meters of the WGS84 ellipsoid in meters"""
21  WGS84_f = 1/298.257223563
22  """the flattening of the WGS84 ellipsoid, 1/298.257223563"""


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:41:50