Skip to content
Malik Doole edited this page Sep 26, 2019 · 5 revisions

The geo.py module is a BlueSky tool that defines a set of standard geographic functions and constants for coding in BlueSky.

Some standard geographic functions available include:

  1. Calculating the earth's radius [m] with the World Geodetic System WGS'84 geoid definition. The input used in this function is the latitude [deg].

Usage:

...
IN: lat1 = 53 
# call function
Radius = rwgs84(lat1)
Print(Radius)
OUT: 6364538.974408425
...
Clone this wiki locally