2
$\begingroup$

I'd like to be able to generate star maps using Python, similar to what is done at YourSky. I believe this is possible with Astropy and the details provided in this question. I can import stars from Hipparcos and use this tutorial to map stars using a Mollweide projection.

What calculations are needed to adjust for location on earth and time of year? Is the Mollweide projection the appropriate projection to use, or would something else be better?


Also related: Correct units to use while plotting mollweide projection of sky chart with RA and Dec values, matplotlib

$\endgroup$
1

1 Answer 1

2
$\begingroup$

There is doubtless a way to do it in AstroPy, but in case you’re interested, the Skyfield library both supports the operations of loading the Hipparcos catalog and computing apparent coordinates. Here is its overall guide to positions, with running examples in the text:

https://rhodesmill.org/skyfield/stars.html

And here's a more elaborate and realistic example star plot, using the stereographic projection, which is my favorite when doing astronomical work:

https://rhodesmill.org/skyfield/example-plots.html#drawing-a-finder-chart-for-comet-neowise

In Skyfield you will account for location and time of year by using a specific time and location when generating your apparent positions, a maneuver that's included in this example:

https://rhodesmill.org/skyfield/examples.html#at-what-angle-in-the-sky-is-the-crescent-moon

$\endgroup$
2
  • $\begingroup$ I wanted to say that this is link-only but in this case I remember several posts from years ago where I posted code blocks in Python 2 for an early Skyfield and now none of that is even close to useful. So I think in this particular case this is a good way. :-) $\endgroup$
    – uhoh
    Commented Sep 12, 2020 at 4:48
  • $\begingroup$ Thank you, Skyfield has been very useful for this! I very much appreciate both the answer and the package. $\endgroup$
    – Jacob
    Commented Sep 14, 2020 at 23:32

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .