1

I'm trying to find a set of formulae that allows me to plot equatorial grid circles (latitude and meridian sets) onto a stereographic projection of the night sky. I've already worked out how to project stars (i.e. points) onto the circular chart for an observer at a given time and location (thanks to this answer: https://astronomy.stackexchange.com/a/35888), but I'm struggling to work out how to do the same for the equatorial grid.

I can plot the special case at the poles where the latitude circles are concentric, but I'm struggling to ascertain what the general formula looks like to plot non-concentric latitude circles. I can see that it must take the observer's latitude and translate the circles origin toward infinity on the y-axis (and tend the radius to infinity) in order, for example, to achieve a straight line bisecting the sky when the observer is at the equator.

Any help would be appreciated :)

h0dges
  • 161
  • 5
  • 1
    Use the same code you have for stars to compute points along the circles, and draw lines between them. Compute them as close together as necessary for the accuracy you need. – Greg Miller Jun 06 '22 at 21:15
  • I second @GregMiller's suggestion; treat the coordinate grid as a set of synthetic stars. That avoids special cases (e.g. great circles through the zenith) and easily generalizes to other projections. Do you still want an analytic solution anyway? – Mike G Jun 06 '22 at 22:56
  • 1
    Yes, I'm still seeking an analytic solution to this problem. I found some interesting material on the matter here https://apps.dtic.mil/sti/pdfs/ADA037381.pdf (pages 195-200), but I'm not sure it provides a general analytic solution with cartesian coordinates + radius as output. – h0dges Jun 07 '22 at 07:20

1 Answers1

1

I've found the solution to my problem, detailed neatly in this paper by the late astrophysicist Bruce A McIntosh.

Citation: McIntosh, B., 1965. The Stereographic Projection. Journal of the Royal Astronomical Society of Canada, 59, p.155.

h0dges
  • 161
  • 5
  • As noted in the paper, this method is just an approximation for use when using a compass to draw the chart. There is little to be gained from this method when drawing graphics with a computer. – Greg Miller Jun 07 '22 at 22:38
  • 1
    Having actually now implemented this solution, I am 100% satisfied with it. It results in simpler code, and when rendered with vector graphics it is more performant. Although your recommendation would suit a situation where I am wanting to use other map projections, this question firmly defined the scope as concerning only the stereographic map. – h0dges Jun 08 '22 at 07:44
  • 1
    For anyone else needing this I also found this paper: http://www.astro.ro/~roaj/26_3/19-dvasilca.pdf which outlines things quite comprehensively. – h0dges Jun 10 '22 at 19:11