Search found 219 matches

by Forum_2016
09 Dec 2018, 17:23
Forum: Scripts
Topic: How to sync 3computers-telescopes with astroart
Replies: 2
Views: 1695

Re: How to sync 3computers-telescopes with astroart

Hi, some users use a text file on shared folder. The master PC writes a text file which contains the command, for example: fileName = "C:\MySharedFolder\MyFile.txt" SaveText("START", fileName) The slave PCs read/poll it, for example: fileName = "\\MyMasterPC\MySharedFolder\MyFile.txt" <cycle> Pause(...
by Forum_2016
09 Dec 2018, 17:23
Forum: Scripts
Topic: How to sync 3computers-telescopes with astroart
Replies: 2
Views: 1695

How to sync 3computers-telescopes with astroart

Hi, Is it possible to design an Astroart script to capture images from three different computers (with an Astroart installation on each one)? I mean: script A: it will control three telescopes (each one on a different computer) script B: it will receive commands from server to capture images compute...
by Forum_2016
09 Dec 2018, 17:23
Forum: Scripts
Topic: How can I get a FITS header of string value?
Replies: 2
Views: 1702

Re: How can I get a FITS header of string value?

Thank you,
the documentation will be fixed as soon as possible.
The syntax "Image.GetKey" will be valid for string keys in the next camera interface. As you wrote, meanwhile it's required to use "GetKey$" or "GetKeyString".
Thanks, Fabio.
by Forum_2016
09 Dec 2018, 17:22
Forum: Scripts
Topic: How can I get a FITS header of string value?
Replies: 2
Views: 1702

Re: How can I get a FITS header of string value?

This reply is "self reply". I'm verry sorry. I watched "Astroart6" help file. I found Image.GetKey$() function in the "Astroart5" help file. My script is bellow; print Image.GetKey$("FILTER") The result is bellow; B ---------- Image.GetKey$() function is written in Astroart5 help file but not in Ast...
by Forum_2016
09 Dec 2018, 17:21
Forum: Scripts
Topic: How can I get a FITS header of string value?
Replies: 2
Views: 1702

How can I get a FITS header of string value?

I want to get a FITS header of string value by script. My FITS file has some FITS headers bellow; TEMPERATURE = -10 EXPOSURE = 180 FILTER = 'B' ... My script is bellow; print Image.GetKey("TEMPERATURE") print Image.GetKey("EXPOSURE") print Image.GetKey("FILTER") The result is bellow; -10 180 0 I kno...
by Forum_2016
09 Dec 2018, 17:20
Forum: Scripts
Topic: Defining a script to park and shut off my mount at or after a certain time
Replies: 1
Views: 1366

Re: Defining a script to park and shut off my mount at or after a certain time

Hello Stefan, the 10 micron is controlled by the ASCOM platform, so what can be done depends by its ASCOM driver. I think that the script command "Telescope.Park" would work correctly, try it and see what it does. Maybe there is an option for power off after park. About complete power off, I know th...
by Forum_2016
09 Dec 2018, 17:20
Forum: Scripts
Topic: Defining a script to park and shut off my mount at or after a certain time
Replies: 1
Views: 1366

Defining a script to park and shut off my mount at or after a certain time

Dear friends I run AA version 5.0 still on a 10 Micron mount. As described in the title i want AA order my mount to park and shut off lets say after a certain time , for instance 3 hours. More sophiticated for future times i am interested how it is possible to trigger AA to park and shut down my mou...
by Forum_2016
09 Dec 2018, 17:20
Forum: Scripts
Topic: Script for fast moving objects
Replies: 1
Views: 5150

Script for fast moving objects

Hello, here is a script for taking several images of moving objects, where the telescope must be moved every N images to recenter the object. -- TUTORIAL -- (you can test it indoor using the camera and telescope simulator). 1) Go to an ephemeris service web site, for example the MPC: http://www.mino...
by Forum_2016
09 Dec 2018, 17:13
Forum: Scripts
Topic: Aligning with rotation in script
Replies: 3
Views: 1951

Re: Aligning with rotation in script

OK, but I didn't receive an email about it, please resend or check the email address:
http://www.msb-astroart.com/support.htm
by Forum_2016
09 Dec 2018, 17:12
Forum: Scripts
Topic: Aligning with rotation in script
Replies: 3
Views: 1951

Re: Aligning with rotation in script

Hi Fabio,
thank you for the answer. These planned new functions would improve the comparision of S/N images!
I asked for an update to Astroart 6.0 via email some days ago. Could you please answer?
Gerd
by Forum_2016
09 Dec 2018, 17:12
Forum: Scripts
Topic: Aligning with rotation in script
Replies: 3
Views: 1951

Re: Aligning with rotation in script

Hi Gerd, I confirm that the script command cannot rotate. A solution will be probably added later this year because it would be useful for supernova search, for portable systems. That was requested also by V. Tinella (who used it for the S/N in UGC 11635, see the next post), along with an improved d...
by Forum_2016
09 Dec 2018, 17:11
Forum: Scripts
Topic: Aligning with rotation in script
Replies: 3
Views: 1951

Aligning with rotation in script

Hi all, is there anybody who uses the image.blinkalign in a script? According to my experiences this command aligns two images only with shifting but without rotation. In the program window an automatic align function with shift and rotation is available. How can I use this automatic procedure in a ...