Search found 19 matches
- 07 Jul 2021, 10:14
- Forum: Scripts
- Topic: Preprocessing command
- Replies: 3
- Views: 2387
Re: Preprocessing command
I saw it used in a couple of scripts while searching the posts. Does that mean it has been removed?
- 06 Jul 2021, 20:02
- Forum: Scripts
- Topic: 64bit running image processing script
- Replies: 1
- Views: 1979
64bit running image processing script
I saw in other posts that the 64bit version of AA is used for image processing only, which means the camera control plugin cannot be used. But that also means I cannot run scripts. Is there any other way to run scripts other than from a camera control plugin?
Craig
Craig
- 06 Jul 2021, 18:38
- Forum: Scripts
- Topic: Preprocessing command
- Replies: 3
- Views: 2387
Preprocessing command
Is there a script command for preprocessing? I didn't see anything in the documentation but there was reference to an experimental version back in 2017 I think.
Craig
Craig
- 03 Aug 2020, 04:19
- Forum: Scripts
- Topic: Remote, How to hide Camera Control and Script Editor
- Replies: 3
- Views: 4303
Re: Remote, How to hide Camera Control and Script Editor
Thanks Fabio, that will be a great addition to how I am using AA. I will send you an email requesting the pre-release.
Craig
Craig
- 30 Jul 2020, 08:54
- Forum: Scripts
- Topic: Remote, How to hide Camera Control and Script Editor
- Replies: 3
- Views: 4303
Re: Remote, How to hide Camera Control and Script Editor
Checking to see if there has been any update to this request.
Also, is there a way to have AA startup from the last screen position? I have three monitors and use AA on monitor 2 while processing other work. But each time I start AA it goes to Monitor 1.
Craig
Also, is there a way to have AA startup from the last screen position? I have three monitors and use AA on monitor 2 while processing other work. But each time I start AA it goes to Monitor 1.
Craig
- 19 Apr 2020, 06:36
- Forum: Scripts
- Topic: Stars.Find
- Replies: 2
- Views: 3064
Re: Stars.Find
Thanks. That works.
Craig
Craig
- 17 Apr 2020, 04:07
- Forum: Scripts
- Topic: Stars.Find
- Replies: 2
- Views: 3064
Stars.Find
Is there a way to set the Find stars parameters within the script? For example, something like this: Stars.Find.SNR = 10.0 Stars.Find.ADU = 200 Stars.Find.FWHM = 3.5 Stars.Find Here is what I tried: Manually start AA Load an Image Click Tools|Find stars Change S/N to 10 Test .. get 50 stars found Cl...
- 11 Apr 2020, 23:52
- Forum: Scripts
- Topic: Image.EstimateRaDec
- Replies: 2
- Views: 2926
Re: Image.EstimateRaDec
Found the problem, the function returns two values and so the correct script call is:
ra,dec = Image.EstimateRaDec
print ra
print dec
works okay now. I think this is why we need examples for each script function call.
Craig
ra,dec = Image.EstimateRaDec
print ra
print dec
works okay now. I think this is why we need examples for each script function call.
Craig
- 11 Apr 2020, 23:47
- Forum: Scripts
- Topic: Image.EstimateRaDec
- Replies: 2
- Views: 2926
Re: Image.EstimateRaDec
Here is what is in the FITS header: RA = 347.050474559823 / Object Right Ascension in degrees DEC = -48.3669332248298 / Object Declination in degrees CRVAL1 = 347.042102036400000 CRVAL2 = -48.3703387802500000 OBJCTRA = '23 08 12.114' / Object Right Ascension in hms OBJCTDEC= '-48 22 00.960' / Object...
- 11 Apr 2020, 23:25
- Forum: Scripts
- Topic: Image.EstimateRaDec
- Replies: 2
- Views: 2926
Image.EstimateRaDec
When I put this in a script and print, I see only the RA value. I am assuming the function returns both RA and DEC as a string.
print Image.EstimateRaDec
Craig
print Image.EstimateRaDec
Craig
- 10 Apr 2020, 04:00
- Forum: Image processing and analysis
- Topic: Find Stars: ADU filter
- Replies: 1
- Views: 2264
Find Stars: ADU filter
In using the Find Stars function I don't think the ADU filter is being used. If I set the ADU filter to 0 and run Find Stars, I then look at the found stars on the image and center on one that is faint. I then rerun Find Stars but with a larger value for ADU (the min value, left column). It makes no...
- 10 Apr 2020, 00:03
- Forum: Scripts
- Topic: Remote, How to hide Camera Control and Script Editor
- Replies: 3
- Views: 4303
Remote, How to hide Camera Control and Script Editor
When opening an image from an external software program, AA automatically opens the Camera Control window and the Script Editor window. Is there a way to override this? I tried this: AASendCommand(AA_SCRIPT_HIDE,nil); thinking that it would hide the windows but it did not work. I could not find any ...