1

I know there's some kind of transit function, but I have no clue how to interface with it. Could someone talk me through it? Specifically I want to find out when the ISS will pass in front of the moon (want to see if my telescope can make out the shape of the station). How do I do this transit calculation?

J Murphy
  • 91
  • 6

1 Answers1

1

You can compute, the angular distance between the ISS and the center of the moon as a function of time.

You then only need to find the times when the value of this function is lower than the angular radius of the moon. If you want to find "long" transits, you can use a lower value, say one half of the radius (15 arc minutes).

In PyEphem, the newton function will find the time at which a function is zero.

Tos
  • 11
  • 1