AKA: random codes noone else will ever use
STDPipe is a set of Python routines for astrometry, photometry and transient detection related tasks, intended for quick and easy implementation of custom pipelines, as well as for interactive data analysis.
STDpipe is available at https://github.com/karpov-sv/stdpipe and is mirrored at https://gitlab.in2p3.fr/icare/stdpipe
The package is in constant development, so to keep track of the changes the suggested way of installing it is by cloning the repository
git clone https://github.com/karpov-sv/stdpipe.git
and then installing from it in development (or "editable") mode by running the command
cd stdpipe
python3 -m pip install -e .
This way you may update the repository or apply local patches, and it will immediately be reflected in the installed package.
Apart of Python requirements that will be installed automatically, STDPipe also (optionally) makes use of the following external software:
Most of them may be installed from your package manager. E.g. on Debian or Ubuntu systems it may look like that:
sudo apt install sextractor scamp psfex swarp
or, on Miniconda/Anaconda, like that:
conda install -c conda-forge astromatic-source-extractor astromatic-scamp astromatic-psfex astromatic-swarp
You may also check more detailed installation instructions here.
Please consult the documentation for STDPipe for the basic usage patterns and description of its API. You may check the examples inside notebooks/ folder, especially the tutorial that demonstrates basic steps of a typical image processing.