I am using python for trajectory comparison calculations that require a lot of great circle computations. These calculations require a lot of trigonometric functions and the script is currently very slow with the regular math.atan2 etc. implementation. Is there any python library that performs time efficient approximations? I really prefer efficiency over accuracy here.
Any pointers to implement this myself are also much welcomed.