You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
These are some simple tools for digital astrophotography.
obs-list.py: Natural Satellite Observation List Generator
This script generates a list ofRight Ascension (RA) andDeclination (Dec) coordinates, over time, for capturing multiple images of natural satellite (e.g., moons like Io and Europa). This allows you to take the photos, stack the images, and end up with a great shot, without worrying about what position a moon is in its orbitaround its planet at any given time, relative to your position on Earth. It should also work for many other orbital bodies, as the underlying data is pulled from JPL's Horizons project.
Requirements
Python 3.x
astropy library
astroquery library
Install the required libraries usingpip:
pip install astropy astroquery
Usage
The script queries theJPL Horizons system to compute theRA/Dec coordinates of a target natural satellite (such as Ceres) at specified epochs. You provide the name of the target satellite, your observation location (longitude, latitude, and elevation), and the time intervals for the observation list.
This will output the RA/Dec coordinates forCeres at 60-second intervals, starting from the current time, as observed from the specified location (Longitude: -74.0466891, Latitude: 40.6892534, Elevation: 0.093 km).
The script takes in an object name (e.g., Ceres), an observer's location (longitude, latitude, elevation), and generates a series of epochs (timestamps).
Theastroquery package is used to query theJPL Horizons system for the RA/Dec coordinates of the specified object at each epoch.
The RA/Dec values are printed out at each epoch, which can be used for pointing a telescope to capture images for stacking.
Notes
The epochs are generated starting from the current time and are spaced 60 seconds apart (you can adjust the interval and number of steps if needed).
The RA/Dec values are provided in degrees, formatted to six decimal places for precision.
License
This project is licensed under the GNU Affero GPL v3 License (only)
About
Command line tools for EAA (digital astrophotography)