×

INDI Library v2.0.7 is Released (01 Apr 2024)

Bi-monthly release with minor bug fixes and improvements

ALS - Astro Live Stacker

  • Posts: 1013
  • Thank you received: 134

Rendering Error in layout Message/Item: array_keys(): Argument #1 ($array) must be of type array, null given. Please enable debug mode for more information.

Please Log in or Create an account to join the conversation.

  • Posts: 12
  • Thank you received: 7

Hi DerPit and thanks for your report and your efforts
Would you mind telling me what system you tried ALS on ?
We'll find a fix

Thanks again
The following user(s) said Thank You: Peter Sütterlin
4 years 4 months ago #53420

Please Log in or Create an account to join the conversation.

  • Posts: 1013
  • Thank you received: 134
Sorry for not stating explicitly. As in the signature, this is an openSUSE Tumbleweed (rolling release, so quite recent packages of everything).
I can also open a ticket in you issue tracker, if you prefer that.
The following user(s) said Thank You: Frédéric CORNU
4 years 4 months ago #53424

Please Log in or Create an account to join the conversation.

  • Posts: 12
  • Thank you received: 7

Yes, please. A ticket would be great
Thanks in advance :)
4 years 4 months ago #53425

Please Log in or Create an account to join the conversation.

  • Posts: 12
  • Thank you received: 7
Some news : ALS v0.7-alpha2 is out !

Just needs a few little cleanups before an official v0.7 release.

What's new since we last spoke :
  • switchable night mode
  • switchable 'save on stop' mode
  • allow manual choice of Bayer pattern for demosaicing
  • Various eye candy and stability stuff

This was made possible by the feedback you guys gave us. This is MUCH appreciated

Test away => als-app.org/assets/releases/v0.7-alpha2/

Thanks again and clear skies to all
The following user(s) said Thank You: Steven Kleinberg
4 years 4 months ago #54382

Please Log in or Create an account to join the conversation.

  • Posts: 1
  • Thank you received: 0
Hello et Bonsoi,

before ALS I used AstroToaster based on Deep Sky Stacker Enginge.

ALS is now my choice, but I miss Kappa-Sigma Clipping for an even better result / for filtering out planes, and an automated restart of stacking if slewing to a new target.

Are there any plans for that?

Greetings
Steven
3 years 8 months ago #65485

Please Log in or Create an account to join the conversation.

  • Posts: 12
  • Thank you received: 7
hi and thanks for the feedback

Filtering outliers would indeed be very usefull. We'd need to check its impact on performance.
Regarding auto-restart : as ALS is not connected to the mount (and won't be in a near future) we would need to rely on repeated alignment failures to assume user slewed to a new target. Would be worth a test.

Please fee free to create feature requests as issues on ALS's repo at github.com/gehelem/als .Who knows, we might find some time or horsepower to put them into ALS

cheers

--
Fred
3 years 8 months ago #65490

Please Log in or Create an account to join the conversation.

  • Posts: 59
  • Thank you received: 6
Hi there - really enjoying this program and hope it will continue to develop! I'm finding tho that I would like to apply flats to my stacked images to remove donuts etc.  Any thoughts on how I can do this prior to the file hitting the scan folder? I thought to use a script like the one below but it's not working as expected. Before I spend a ton of time and effort debugging it are there any other alternatives?

workpath="./caliwork/"
calipath="./calibrate/"
rawpath="./raw/"
scanpath="./scan/"

var = 1
while var == 1: 
  list_of_files=os.listdir(rawpath)
  if len(list_of_files) == 0:
    time.sleep(1)
  else:
    imagefile = list_of_files[0]
    print("Processing "+imagefile)

    # Move the file to the work folder
    shutil.move(rawpath+imagefile,workpath)
    imagedata = ccdproc.fits_ccddata_reader(workpath+imagefile, unit='adu')
    masterflat = ccdproc.fits_ccddata_reader(calipath+"flat.fits", unit='adu')
    imagedata = ccdproc.flat_correct(imagedata, masterflat)

    # Write out calibrated result to the ALS scanpath for stacking
    hdu = fits.PrimaryHDU(data=imagedata)
    hdu.writeto(scanpath+imagefile, overwrite=True)

 
Last edit: 3 years 5 months ago by Gord Tulloch.
3 years 5 months ago #70014

Please Log in or Create an account to join the conversation.

Time to create page: 0.874 seconds