Camera Interface 5.40

Main forum about Astroart
Post Reply
Forum_2014
Posts: 255
Joined: 03 Dec 2018, 22:33

Camera Interface 5.40

Post by Forum_2014 »

Hello everybody, a new camera interface is available at the Astroart web site:
http://www.msb-astroart.com/

Version 5.40 - May 13, 2014
-------------------------------

* New options for autoguide.
* Improved look with Windows 125% and 150% scaling.
* Script commands Telescope.Tracking, Camera.GetTemperature
* Script commands for Moon and Sun position.

About autoguide for spectroscopy this great tutorial by Paolo Berardi is still valid:
http://www.astroartforum.net/forum/s...full=1#post482

It's now possible to save the calibration for two different setups:

Using the new script commands, here is a simple example to calculate the altitude of the sun and the moon:

Code: Select all

myLon = 12.4     ' Rome (positive if east)
myLat = 41.9

sub SunAlt()
  ra,de = SunRaDec(jd)
  az,al = EquatToAltaz(ra,de,myLon,myLat,jd)
  return al
end sub

sub MoonAlt()
  ra,de = MoonRaDec(jd)
  az,al = EquatToAltaz(ra,de,myLon,myLat,jd)
  return al
end sub

sAlt = SunAlt()
print "Sun Altitude = ", sAlt
mAlt = MoonAlt()
print "Moon Altitude = ", mAlt

Forum_2014
Posts: 255
Joined: 03 Dec 2018, 22:33

Re: Camera Interface 5.40

Post by Forum_2014 »

Fabio,
Thanks for that!
Much appreciated - it looks like spectroscopy is finally going mainstream ;-)

Forum_2014
Posts: 255
Joined: 03 Dec 2018, 22:33

Re: Camera Interface 5.40

Post by Forum_2014 »

Great and much appreciated your effort.

Forum_2014
Posts: 255
Joined: 03 Dec 2018, 22:33

Re: Camera Interface 5.40

Post by Forum_2014 »

A lot of improvements in this release, thank you very much Fabio (also to all AA team)!

All the best!
Paolo

Post Reply