Skip to content
Snippets Groups Projects
Commit 94a76354 authored by tomrink's avatar tomrink
Browse files

add inverse transforms

parent 26b348ff
No related branches found
No related tags found
No related merge requests found
......@@ -65,8 +65,8 @@ LOFF = 0.151844
def goes_to_geos(lamda_goes, theta_goes):
theta_geos = np.asin(np.sin(theta_goes) * np.cos(lamda_goes))
lamda_geos = np.atan(np.tan(lamda_goes) / np.cos(theta_goes))
theta_geos = np.arcsin(np.sin(theta_goes) * np.cos(lamda_goes))
lamda_geos = np.arctan(np.tan(lamda_goes) / np.cos(theta_goes))
return lamda_geos, theta_geos
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment