ACHMartin / seastar_project

4 stars 0 forks source link

Invisible assumption on squint angle in compute incidence angle #176

Closed ACHMartin closed 1 year ago

ACHMartin commented 1 year ago

In Oscar/level1

ds['IncidenceAngleImage'] = np.degrees(np.arctan(np.sqrt(2) * Y / ds.OrbHeightImage))

np.sqrt(2) should be changed to the squinted angle (ideally as calculated by MetaSensing script), potentially, this will be solved with issue #175

ACHMartin commented 1 year ago

ds['IncidenceAngleImage'] = np.degrees(np.arctan( np.cosd(ds.SquintAngleImage) * # check if cos or sin Y / ds.OrbHeightImage))

DavidMcCann-NOC commented 1 year ago

Closed with commit #187