IOP4 is a complete rewrite of IOP3, a pipeline to work with photometry and polarimetry of optical data from CAHA and OSN observatories. It is built to ease debugging and inspection of data.
IOP4 implements Object Relational Mapping (ORM) to seamlessly integrate all information about the reduction and results in a database which can be used to query and plot results, flag data and inspect the reduction process in an integrated fashion with the whole pipeline. It also ships with an already built-in web interface which can be used out of the box to browse the database and supervise all pipeline processes.
See details in Juan Escudero Pedrosa et al 2024 AJ 168 84.
We recommend installing IOP4 in an isolated environment as described below. IOP4 is hosted in PyPI software repository.
Note: IOP4 requires Python 3.11 or later. You can check your Python version with python --version
. If you have a compatible version, you can skip this step.
If you don't have Python 3.11 or later, you can install pyenv and pyenv-virtualenv, which will manage python versions for you. You can use the automatic installer pyenv-installer:
$ curl https://pyenv.run | bash
Follow the instructions that this command outputs to add pyenv
to PATH
(or copy the commands from https://github.com/pyenv/pyenv for your shell). Restart your terminal, or source the file (e.g. . ~/.bashrc
or . ~/.zshrc
) Then, run
$ pyenv install 3.11
$ pyenv virtualenv 3.11 iop4-venv
$ pyenv activate iop4-venv
Now you will have a virtual environment with the right Python version, and you can continue with the next step. To deactivate, just run pyenv deactivate
.
With the environment activated, you can install IOP4 latest version by running:
$ pip install iop4
Alternatively, you can clone this repository and install IOP4:
$ git clone 'git@github.com:juanep97/iop4.git'
$ cd iop4
$ pip install .
or pip install -e .
if you want to install it in developer mode.
As the previous option, create and activate the environment as follows:
$ conda create -n iop4 python=3.11
$ conda activate iop4
Then run:
$ pip install iop4
Alternatively, you can also clone this repository and run (inside the root directory of the cloned repository):
$ pip install .
or pip install -e .
if you want to install it in developer mode.
If you followed the steps in any of the two options above, you will have installed the module iop4lib
and the iop4
command, and the iop4site
project.
After installation, take a look at the example configuration file (iop4lib/config.example.yaml
), set the appropriate variables (path to the database, data directory, astrometry index files path, credentials, etc) and save it to ~/.iop4.config.yaml
.
To run the tests, first follow the previous steps to install IOP4 in developer mode and configure it. The test dataset will be automatically downloaded to your home directory
$ pytest -vxs tests/
If it is the first time executing IOP4, the astrometry index files will be downloaded to astrometry_cache_path
(see config.example.yaml
). This will take some time and a few tens of GB, depending on the exact version.
Warning: in some macOS systems, the process might hang up. Execute export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES
or add that line to your shell init script.
If no previous database exists, make sure to create it. You can do it automatically from the iop4site/
directory by using
$ python manage.py makemigrations
$ python manage.py migrate
Then, create a user with
$ python manage.py createsuperuser
You can later use these credentials to login to the admin site, where you will need to add any sources of interest to the empty catalog.
To manually back up all data from the DB, you can use
$ python manage.py dumpdata --natural-primary --natural-foreign --format=yaml > priv.dumps.yaml
This file can be used to reload the data to the DB with:
$ python manage.py loaddata priv.dumps.yaml
An utility script, iop4site/resetdb.py
, is provided which will completely reset the DB keeping catalog and user's data.
The pipeline script iop4
can be invoked as
$ iop4 --epoch-list tel1/yymmdd tel2/yymmdd
to download and reduce the epoch yymmdd
from telescopes tel1
and tel2
respectively. For example: iop4 -l T090/230430
.
To serve the results in Django debug server, change to the iop4site directory and run
$ python manage.py runserver
although this server is only recommended for debugging purposes, and you should use another server in production (see Django documentation).
iop4lib uses django ORM and it needs to be configured before using it. Therefore, you should do
import iop4lib
iop4lib.Config(config_db=True)
once at the start of your script. IOP4 configuration can be accessed anywhere without configuring the ORM doing import iop4lib; iop4conf = iop4lib.Config(config_db=False)
.
This way of configuring
IOP4
should be also valid inside IPython Shell, but not for Jupyter notebooks, since their asynchronous output interferes with Django ORM. To use IOP4 inside a notebook, see below. More details can be found in the documentation foriop4lib.Config
.
Now you are ready to import and use IOP4 models from your Python script, e.g:
import iop4lib
iop4lib.Config(config_db=True)
from iop4lib.db import RawFit, ReducedFit, Epoch, PhotoPolResult
# this will print the number of T220 nights reduced:
print(Epoch.objects.filter(telescope="CAHA-T220").count())
# this will reduce the last T220 night:
Epoch.objects.filter(telescope="CAHA-T220").last().reduce()
You can use IOP4
in an interactive manner inside a Jupyter notebook. The following lines also activate matplotlib's graphical output (deactivated by default, as some plots may be generated inside the server).
%autoawait off
%load_ext autoreload
%autoreload all
import iop4lib.config
iop4conf = iop4lib.Config(config_db=True, gonogui=False, jupytermode=True)
You can get an IPython interactive terminal after running iop4 using the -i
option. You can override any config option using the -o
option, or by setting environment variables, e.g.
$ IOP4_NTHREADS=20 iop4 -i -o log_file=test.log --epoch-list T090/230313 T090/230317
Check iop4 --help
for more info.
To build and show the documentation, run
$ make docs-sphinx
$ make docs-show
The documentation for the latest release is hosted in this repository's GitHub Pages.
You are welcome to contribute to IOP4. Fork and create a PR!
If you use IOP4, or any result derived from it, we kindly ask you to cite the following references:
You can use the following BibTeX entries:
@article{iop4_AJ,
doi = {10.3847/1538-3881/ad5a80},
url = {https://dx.doi.org/10.3847/1538-3881/ad5a80},
year = {2024},
month = {jul},
publisher = {The American Astronomical Society},
volume = {168},
number = {2},
pages = {84},
author = {{Escudero Pedrosa}, Juan and {Agudo}, Ivan and {Morcuende}, Daniel and {Otero-Santos}, Jorge and {Bonnoli}, Giacomo and {Piirola}, Vilppu and {Husillos}, C{\'e}sar and {Bernardos}, Mabel and {L{\'o}pez-Coto}, Rub{\'e}n and {Sota}, Alfredo and {Casanova}, V{\'\i}ctor and {Aceituno}, Francisco and {Santos-Sanz}, Pablo},
title = {IOP4, the Interactive Optical Photo-Polarimetric Python Pipeline},
journal = {The Astronomical Journal},
}
@software{iop4_zenodo,
author = {{Escudero Pedrosa}, Juan and
{Morcuende Parrilla}, Daniel and
Otero-Santos, Jorge},
title = {IOP4},
year = 2024,
publisher = {Zenodo},
doi = {10.5281/zenodo.10222722},
url = {https://zenodo.org/doi/10.5281/zenodo.10222722}
}