Page 1 of 1

Telescope simolator slew speed

Posted: 26 Dec 2018, 19:52
by Forum_2018
Hi,
I wonder if it possible to increase Telescope Simulator slew speed getting faster simulation sessions?
Emilio

Re: Telescope simolator slew speed

Posted: 26 Dec 2018, 19:52
by Forum_2018
The ASCOM telescope simulator allows you to adj. the slew speed, just use that instead.

Iver

Re: Telescope simolator slew speed

Posted: 26 Dec 2018, 19:53
by Forum_2018
Thanks Iver
Emilio

Re: Telescope simolator slew speed

Posted: 26 Dec 2018, 19:54
by Forum_2018
For manual sessions, you could press "Sync" while the telescope simulator is moving, to go instantly to the coordinates.
For script sessions you could replace Telescope.Goto with the following function:

Code: Select all

sub Telescope_Goto(ra,de)
  Telescope.Goto(ra,de)
  Pause(2)
  Telescope.SyncTo(ra,de)
end sub
or just add the SyncTo command to your code.

Re: Telescope simolator slew speed

Posted: 26 Dec 2018, 19:54
by Forum_2018
Fabio,
your suggestion is perfect for me and can be used even on the Linux+WINE PC I currently use for script development. Thanks.
Emilio