script for automatic goto, platesolve, sync, centre, and FF autoguide

Scripts and programs to automate Astroart
Post Reply
Dunmunro
Posts: 225
Joined: 10 Jan 2019, 01:11

script for automatic goto, platesolve, sync, centre, and FF autoguide

Post by Dunmunro » 27 Sep 2022, 17:56

I was wondering if anyone can share a sample script to goto targets on the target list, then do a platesolve assisted centring and then FF autoguide using AA7?

I am helping a friend automate his AP Mach 2 mount and an 11in RA astrograph.

thanks

Duncan

fabdev
Posts: 461
Joined: 03 Dec 2018, 21:43

Re: script for automatic goto, platesolve, sync, centre, and FF autoguide

Post by fabdev » 28 Sep 2022, 16:44

Hi, for the target list I suggest the first two examples in the paragraph "Automatic research script" (Telescope and camera script, and Autocenter script).
For the autoguide I suggest the first section of this post:
viewtopic.php?f=5&t=582
Eventually they will need to be joined in a single script, but I suggest to start using them separately for testing.
Fabio.

Dunmunro
Posts: 225
Joined: 10 Jan 2019, 01:11

Re: script for automatic goto, platesolve, sync, centre, and FF autoguide

Post by Dunmunro » 30 Sep 2022, 15:41

fabdev wrote:
28 Sep 2022, 16:44
Hi, for the target list I suggest the first two examples in the paragraph "Automatic research script" (Telescope and camera script, and Autocenter script).
For the autoguide I suggest the first section of this post:
viewtopic.php?f=5&t=582
Eventually they will need to be joined in a single script, but I suggest to start using them separately for testing.
Fabio.
Thanks. We were able to write a simple script that allows an AP Mach2 mount/RASA 11/ASI 2600MC/ASI290MM imaging setup to goto a target, platesolve, sync, and centre each object , start FF autoguiding, begin the image sequence, end the sequence, stop autoguide and then goto the next object in the target list. I'll try and post the script here in a day or so.

My friends RASA 11 uses a carbon fibre tube (modified from aluminum) and doesn't require refocusing so the script allows a complete automation of an entire night's imaging run.

Dunmunro
Posts: 225
Joined: 10 Jan 2019, 01:11

Re: script for automatic goto, platesolve, sync, centre, and FF autoguide

Post by Dunmunro » 30 Sep 2022, 19:35

Targetlist1.txt:

"N7000" 20 58 49.3 +44 19 40
"M31" 00 42 44.9 +41 16 10


Script:

n = Telescope.List.Count
for i = 1 to n
ra = Telescope.List.Ra(i)
de = Telescope.List.Dec(i)
name = Telescope.List.Name(i)
Telescope.Goto(ra,de)
Telescope.Wait
Pause(1)
Camera.Start(3)
Camera.Wait
Image.FindCoordinates(ra,de,5)
print "Centering telescope..."
Telescope.SyncTo(Image.RA, Image.DEC)
Telescope.GoTo(ra,de)
Telescope.Wait
Guider.FullFrameAutoguide
Pause(5)
dir = "C:\AA7\AA7Testing\"
Sequ(2,15,name,"91",dir)
Guider.StopAutoguide()
next i

Sub Sequ(images,exposure,object,filter,dir)
ClosePreviousImage = false
for i = 1 to images
Camera.Start(exposure)
Camera.Wait
fileName = object + filter + Format(i,"000")+ ".fit"
Image.Save(dir + fileName)
If ClosePreviousImage Then Image.ClosePrevious
ClosePreviousImage = true
print dir + fileName
next i
End Sub

Dunmunro
Posts: 225
Joined: 10 Jan 2019, 01:11

Re: script for automatic goto, platesolve, sync, centre, and FF autoguide

Post by Dunmunro » 27 Jan 2023, 16:45

Here's a modified version of the above script, but with Full Frame autoguiding added in:

n = Telescope.List.Count
for i = 1 to n
ra = Telescope.List.Ra(i)
de = Telescope.List.Dec(i)
name = Telescope.List.Name(i)
Telescope.Goto(ra,de)
Telescope.Wait
Pause(1)
Camera.Start(10)
Camera.Wait
Image.FindCoordinates(ra,de,5)
print "Centering telescope..."
Telescope.SyncTo(Image.RA, Image.DEC)
Telescope.GoTo(ra,de)
Telescope.Wait
Guider.Calibrate
Guider.CalibrationOK
Guider.FullFrameAutoguide
Pause(10)
dir = "C:\FTP\"
Sequ(10,900,name,"91",dir)
Guider.StopAutoguide()
next i

Sub Sequ(images,exposure,object,filter,dir)
ClosePreviousImage = false
for i = 1 to images
Camera.FullframeAutofocus(5)
Camera.Start(exposure)
Camera.Wait
fileName = object + filter + Format(i,"000")+ ".fit"
Image.Save(dir + fileName)
If ClosePreviousImage Then Image.ClosePrevious
ClosePreviousImage = true
print dir + fileName
next i
End Sub


I still need to refine the script a bit more, to get the camera to wait for the autoguider to centre the guide star before commencing the image.

Post Reply