Dave Strickland
Dave Strickland
Processing of iTelescope images from T32 and T09, in particular, fails in `ap_find_stars.py`: ``` 2021-01-16 19:41:12,069 | __main__ | DEBUG | FITS keywords found in image: {'IMG_FILE': ('calibrated-T09-davestrickland-NGC_253-20200813-023100-Red-BIN1-W-060-001.fit', 'Name of...
Currently I'm using external, non-python, tools for image resampling/co-addition and color composite generation, and also adaptive smoothing. - Astromatic swarp (resampling/coaddition) and stiff (FITS to rgb image composition), installed via...
The documentation should demonstrate an example of processing an iTelescope premium data set to a final product. This is also a good opportunity to start development python-based batch processing tools...
The existing v0.2.3 AstroPhotography python classes and command line scripts work well enough processing single images, but don't provide a means to process an entire observing nights worth of images...
Per issue #3 we want to move away from external dependencies, such as the astromatic `swarp` tool currently used from image resampling and combination. I need to actually do a...
A python-based class and command line tool is needed to perform adaptive smoothing of processed images, in particular resampled composites of multiple images. I'm using Jeremy Sanders' contbin command line...
Writing a PNG format greyscale from the test image: ``` 2021-03-10 06:39:09,385 | DEBUG | AstroPhotography | Greyscale image generated. 2021-03-10 06:39:09,472 | INFO | AstroPhotography | Writing 2602x3906 uint16...
Add the capability to perform simple (i.e. scalar value) background subtraction of individual calibrated (or navigated) frames to remove image-to-image variance in the background level. This is of particular importance...
Add a command line tool to avoid the need to do this in `ipython`: ```python import AstroPhotography as ap target_wcs_file='eta_car_2560arcsec.fits' cdelt_b=[-1.0/3600, 1.0/3600] crval=[161.3043152, -59.6703346] naxis_b=[2560,2560]ap.util.make_dothead_from_keywords(target_wcs_file, naxis_b, crval, cdelt_b, format='fits', verbose=True,...
With python `3.12` running `pip3 install -e . -r requirements.txt` results in the following warning: ``` Installing collected packages: AstroPhotography Attempting uninstall: AstroPhotography Found existing installation: AstroPhotography 0.6.1 Uninstalling AstroPhotography-0.6.1:...