-
Notifications
You must be signed in to change notification settings - Fork 251
geo
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:
- 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].
...
IN: lat1 = 53
# call function
Radius = rwgs84(lat1)
Print(Radius)
OUT: 6364538.974408425
...