I am hoping that someone can help me understand the difference between equatorial and planetographic frames of reference.
I was under the impression that the equatorial frame of reference would have an X-Z plane that runs through the equator of the reference object (hence "equatorial") and that the Y axis would then run through the object's poles of rotation. I never understood what the planetographic frame of reference was supposed to be.
With that in mind, I was surprised when
Code: Select all
earth_frame_equatorial = celestia:newframe("equatorial", earth)
above_pole_position = celestia:newposition(0, 100000 / KM_PER_MLY, 0)
earth_above_pole_position_universal = earth_frame_equatorial:from(above_pole_position)
Code: Select all
earth_frame_planetographic = celestia:newframe("planetographic", earth)
above_pole_position = celestia:newposition(0, 100000 / KM_PER_MLY, 0)
earth_above_pole_position_universal = earth_frame_planetographic:from(above_pole_position)
did create a position over the north pole. Now I don't know what the equatorial frame of reference is supposed to be.
Any help would be appreciated.