These don’t amuse me nearly as much as nebulae and galaxies but i guess i’m going to work through the messier catalog as they wheel past me. M14 and M92 are both about 30,000 light years away so part of our galaxy.
These are both low effort images – 9 or 10 exposures at 60 seconds for M92 and 90 seconds for M14 all at ISO 800 with the canon t3i on the William Optics Z61(360mm f/6).
Maybe there’s some faint hint of nebulosity there but i can’t see it. This is only nine 45 second lights at ISO 800 through the Z61 so f/5 360mm. I have a streetlight in exactly the wrong spot although i could have done better.
I know my aim is good based on the astrometry output below.
I’m using Astrotortilla to refine the pointing of the telescope after a goto. It works great but it can be slow as heck. One solve last night took 4 minutes! I made some parameter changes a while ago that improved things but it’s fiddly. One last thing to try is to tell it that my pointing can’t be off by more than so many degrees – i’ll try 15 degrees next time i’m out.
UPDATE: I noticed that the online plate solver at astrometry.net was solving using a different set of indexes 4111.fits for example as opposed to 4211 which i would have. I found and downloaded the 41xx indexes and the difference is night and day – solves are routinely done in 10 seconds! I haven’t needed to change the 180 degree figure to 15.
This is fifteen exposures of 60 seconds at ISO 800 with the canon t3i through the Z61(360mm f/5.9) with darks, biases, and flats. You can just see a hint of the nebula with more in red near the top a bit left of centre. I found a better image taken with a similar setup but 120 second at ISO 1600 so much more light. He must have been in a darker spot. I can certainly take more exposures but i don’t think i can up the time or ISO much.
Note to me: I used the Photometric Color Calibration on this which was quick and easy.
Pretty much the perfect target for my setup, the Andromeda Galaxy almost fills the field. This is 30X75 second shots at ISO 800 through the Z61(360mm f/5.9). Postprocessed in Siril. At full view the stars are a bit elongated top to bottom but I’m pretty pleased.
Despite the cold and a bright moon I went out last night asteroid hunting. This is a dozen lights at 30 seconds 800 ISO with the William Optics Z61(360mm f/5.9) with corresponding biases, darks, and flats. I used the same technique as with uranus to locate the pixel where Ceres should be but it was a bit off – 14 pixels X and 12 Y: 18 pixels total which would be 43″ which is an awful lot. But in my defense, there’s nothing else that bright near the correct location and there are plenty of stars dimmer than Ceres(Mag 9) that are showing up perfectly well so probably Ceres plus some error in my calculations or understanding. Interestingly, Ceres would have moved against the background stars over the time I was shooting but only a couple of arc-seconds – maybe 1 pixel. That does mean though that if I had waited an hour or so and shot again I might have had a convincing shift.
from astropy import wcs
from astropy.io.fits import getheader
import numpy as np
from astropy.io import fits
from astropy import units as u
from astropy.coordinates import SkyCoord as SC
hdulist = fits.open(r"c:\users\bill\downloads\wcsceres.fits")
w = wcs.WCS(hdulist[0].header)
pixcrd = np.array([[0, 0]], dtype=np.float64)
world = w.wcs_pix2world(pixcrd, 0)
print("RA/DEC for [0,0]: ",world)
wcrd=np.array([[335.688, -23.789]])
pixcrd2=w.wcs_world2pix(wcrd,0)
print("Pixel Coords for center as given by astrometry: ",pixcrd2)
uc=SC('22h22m51.65s', '-23d47m30.7s')
print("Ceres Coordinates(J2000): ",uc)
print("Ceres Pixel Coordinates: ",uc.to_pixel(w))
uc=SC('22h23m31.01s', '-24d45m45.2s')
print("49 AQR Coordinates(J2000): ",uc)
print("49 AQR Pixel Coordinates: ",uc.to_pixel(w))
EDIT: I went back and picked a single subexposure, ran it through astrometry, and checked the pixel location and ended up with the same error so i dunno.
reEDIT: I googled around and apparently the positions of minor planets in stellarium are easily outdated due to perturbations in their orbits. I’ll check the web version vs the standalone version when i do pluto.
This is not very good although it’s much better than my previous attempt. Twenty lights of 30 seconds at ISO 1600 through the Z61 scope(360mm f/5.9) guided with PHD2. I have had decent results at ISO 1600 but I compared a single sub at 60 seconds ISO 800 and it showed less of the mottling I see in this one. If I try this again I’ll do a solid 30 minutes of 60 second subs at 800.
This is pretty sweet. About 15 subs 45 seconds at ISO 1600 with a canon t3i through my new-to-me William Optics Z61 refractor (360mm f/5.9). Processed in Siril with darks, biases, and flats. Guided by PHD2 with a QHY5LII-M camera and a qhy mini guidescope.
I still need to do some balancing adjustments to the setup but the guide scope is solidly mounted to the Z61 and the camera is secure. You can see that the counterweights are pretty much to the end of the shaft so this is about as much weight as i’d be comfortable putting on the mount. As it is the scope and camera are enough of an armful for me to carry when i’m setting up. I could pick up the whole thing but it would be awkward.
Stack of 10 images 800 iso 45 seconds 200mm f/4 cropped to about 1/3
The image is not inspiring and, at magnitude 5.7 Uranus is not a tough target but i’m pleased for a number of reasons:
It’s Uranus for pete’s sake, 3 billion kilometers away
I found it in the image by using the WCS file that astrometry.net produces
I learned about relating my images to stellarium’s displays
There are a bunch of faint stars that i can get my eye in on
I routinely do image recognition by uploading to astrometry.net. Besides the annotated image as below, it provides a WCS.fits file that provides the info you need to map from astronomical coordinates (RA and Dec) to pixel locations in the image. The python script below reads the WCS file and uses astropy to determine the pixel location for uranus.
from astropy import wcs
from astropy.io.fits import getheader
import numpy as np
from astropy.io import fits
from astropy import units as u
from astropy.coordinates import SkyCoord as SC
hdulist = fits.open(r"c:\users\bill\downloads\wcsuranus.fits")
w = wcs.WCS(hdulist[0].header)
pixcrd = np.array([[0, 0]], dtype=np.float64)
world = w.wcs_pix2world(pixcrd, 0)
print("RA/DEC for [0,0]: ",world)
wcrd=np.array([[36.542, 14.101]])
pixcrd2=w.wcs_world2pix(wcrd,0)
print("Pixel Coords for center as given by astrometry: ",pixcrd2)
uc=SC('2h27m45.84s', '14d6m14.0s')
print("Uranus's Coordinates(J2000): ",uc)
print("Uranus's Pixel Coordinates: ",uc.to_pixel(w))
I finally realize that i can line up my images with the stellarium displays if i put stellarium into equatorial mount mode and rotate it’s image right 90 degrees. I still find this a bit confusing but the equatorial mode is key.
Oh, also, I think the faintest stars I can reliably pick out are around magnitude 11-12 so i’m a long way from pluto’s 15.
Nope, not even close. The bottom left is 98 Psc mag 4.8, 49′ from mars, the top right is 95 Psc mag 7.5, 17′ from mars. Demios is mag 12, 1’13” from the center of mars. Phobos is mag 10.6, 23″ from Mars. Mars itself is about 21″ across which would be 5 pixels at the scale of this image – the blown out central body above is 60 px, about 4′, totally obliterating the moons. The image is 30 sec ISO 800 through the Takumar 200mm lens wide open at f/4.
I went out on a different last night to try a bunch of exposures. As it happens, the shortest I tried was 1/1000 of a second at ISO 800 through the 200mm Takumar at f/4. At that exposure the body of mars is visibly round at about 6 pixels but it would be hopeless to think about seeing the mag 11 and 12 moons. Nevertheless there is a faint smudge in the correct spot of one of them to be the inner moon. I give you FauxBos… This is a 4X blowup.
Mars with FauxBos
Back in reality-land I measured the size of overexposed Mars in a bunch of exposures at ISO 800. It scales fairly smoothly . At 1/500 sec Mars is 15PX, at 1/60 sec it’s 30PX. Phobos was about 30″ or 7px from the center of mars, deimos about 1’17” or 16px. So somewhere below 1/60 sec Deimos would not be swallowed but would probably too dim to see.
I may try this again when I have my new telescope although the fundamental problem remains. This article is not as discouraging as some i’ve seen. This cloudy nights post actually has amateur photographs of the moons although done with much better equipment than i am using.