Here are some simple instructions to set up the astrometry.net plate solving software in Unbutu Linux, and run it from the command line. Given an image of the night sky, plate solving software will identify the stars, constellations and other objects in the image. There are other ways to use this solver, e.g., by uploading your image to the astrometry.net web service, or using the web API, but it's often faster and simpler to run it locally, and one can script it's usage with other steps in the astrophotography image processing pipeline (like stacking).
Tested on Ubuntu 18.04, September 2019.
sudo apt-get install astrometry.net
sudo apt-get install astrometry-data-tycho2There's also the package
astrometry-data-2mass
, but the tycho2 package seems to work just fine.
Aside: to see all the astrometry packages, type
sudo apt-cache search astrometry
solve-field input-image.tifThe input file is a TIF file output by DeepSkyStacker (other formats are probably supported as well). This will produce the annotated image files displayed when you upload an image to nova.astrometry.net and some other metadata. There's about twelve output files, so the
-D
flag is helpful:
solve-field -D solve-output input-image.tifsince it will put all the files in the specified directory (
solve-output
in this example), creating it first if it doesn't exist.
input-image-ngc.png
is the one I find most useful it shows the constellations (stick figures) and star names.
man solve-field
Here's an example you can use to test your setup. It's an extremely boring image of the star Arcturus.
I converted the TIF file to JPG to make it much smaller, and viewable in your browser. It will
work with solve-field
.
input-image.jpg
Output file: input-image-ngc.png
Clear skies and happy plate solving :)