iop4
IOP4, the Interactive Optical Photo-Polarimetric Python Pipeline.
Science Score: 67.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 17 DOI reference(s) in README -
✓Academic publication links
Links to: zenodo.org -
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (14.9%) to scientific vocabulary
Keywords
Repository
IOP4, the Interactive Optical Photo-Polarimetric Python Pipeline.
Basic Info
- Host: GitHub
- Owner: juanep97
- License: bsd-3-clause
- Language: Python
- Default Branch: main
- Homepage: https://juanep97.github.io/iop4/
- Size: 877 KB
Statistics
- Stars: 6
- Watchers: 2
- Forks: 2
- Open Issues: 25
- Releases: 11
Topics
Metadata Files
README.md
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.
Installation
We recommend installing IOP4 in an isolated environment as described below. IOP4 is hosted in PyPI software repository.
Option 1: Using a virtual environment
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:
bash
$ 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
bash
$ 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:
bash
$ pip install iop4
Alternatively, you can clone this repository and install IOP4:
bash
$ 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.
Option 2: Using conda/mamba
As the previous option, create and activate the environment as follows:
bash
$ conda create -n iop4 python=3.11
$ conda activate iop4
Then run:
bash
$ pip install iop4
Alternatively, you can also clone this repository and run (inside the root directory of the cloned repository):
bash
$ 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.
Configuration
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.
Running Tests
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
bash
$ 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.
Usage
If no previous database exists, make sure to create it. You can do it automatically from the iop4site/ directory by using
bash
$ python manage.py makemigrations
$ python manage.py migrate
Then, create a user with
bash
$ 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
bash
$ 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:
bash
$ 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.
As A Program
The pipeline script iop4 can be invoked as
bash
$ 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
bash
$ python manage.py runserver
although this server is only recommended for debugging purposes, and you should use another server in production (see Django documentation).
As A Library
iop4lib uses django ORM and it needs to be configured before using it. Therefore, you should do
python
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
IOP4should 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: ```python 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()
```
In Interactive Notebooks (JupyterLab)
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).
```python
%autoawait off
%load_ext autoreload
%autoreload all
import iop4lib.config
iop4conf = iop4lib.Config(config_db=True, gonogui=False, jupytermode=True)
```
Tips
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.
bash
$ IOP4_NTHREADS=20 iop4 -i -o log_file=test.log --epoch-list T090/230313 T090/230317
Check iop4 --help for more info.
Documentation
To build and show the documentation, run
bash
$ make docs-sphinx
$ make docs-show
The documentation for the latest release is hosted in this repository's GitHub Pages.
Contribute
You are welcome to contribute to IOP4. Fork and create a PR!
Citing IOP4
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:
```bibtex @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} } ```
Owner
- Name: Juan Escudero
- Login: juanep97
- Kind: user
- Repositories: 1
- Profile: https://github.com/juanep97
PhD at IAA-CSIC.
Citation (CITATION.cff)
cff-version: 1.2.0
title: IOP4
message: >-
If you use this software, please cite it using the
metadata from this file.
type: software
authors:
- given-names: Juan
family-names: Escudero Pedrosa
email: jescudero@iaa.es
affiliation: IAA-CSIC
orcid: 'https://orcid.org/0000-0002-4131-655X'
- given-names: Daniel
family-names: Morcuende Parrilla
email: dmorcuende@iaa.es
affiliation: IAA-CSIC
orcid: 'https://orcid.org/0000-0001-9400-0922'
- given-names: Jorge
family-names: Otero-Santos
email: joteros@iaa.es
affiliation: IAA-CSIC
orcid: 'https://orcid.org/0000-0002-4241-5875'
identifiers:
- type: doi
value: 10.5281/zenodo.10222722
repository-code: 'https://github.com/juanep97/iop4'
url: 'https://vhega.iaa.es/iop4/about/'
abstract: IOP4, the Interactive Optical Photo-Polarimetric Python Pipeline.
keywords:
- astronomy
- photometry
- polarimetry
- database
- pipeline
- python
- interactive
- blazars
license: BSD-3-Clause
GitHub Events
Total
- Create event: 24
- Release event: 4
- Issues event: 3
- Watch event: 1
- Delete event: 23
- Issue comment event: 3
- Push event: 67
- Pull request review event: 15
- Pull request review comment event: 4
- Pull request event: 50
Last Year
- Create event: 24
- Release event: 4
- Issues event: 3
- Watch event: 1
- Delete event: 23
- Issue comment event: 3
- Push event: 67
- Pull request review event: 15
- Pull request review comment event: 4
- Pull request event: 50
Committers
Last synced: 6 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Juan Escudero | j****o@i****s | 180 |
| Daniel Morcuende | d****e@i****s | 12 |
| joteros | 1****s | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 4 months ago
All Time
- Total issues: 16
- Total pull requests: 87
- Average time to close issues: about 1 month
- Average time to close pull requests: 2 days
- Total issue authors: 2
- Total pull request authors: 4
- Average comments per issue: 0.94
- Average comments per pull request: 0.69
- Merged pull requests: 82
- Bot issues: 0
- Bot pull requests: 1
Past Year
- Issues: 4
- Pull requests: 47
- Average time to close issues: 2 days
- Average time to close pull requests: about 21 hours
- Issue authors: 2
- Pull request authors: 2
- Average comments per issue: 0.25
- Average comments per pull request: 0.3
- Merged pull requests: 43
- Bot issues: 0
- Bot pull requests: 1
Top Authors
Issue Authors
- juanep97 (16)
- morcuended (8)
Pull Request Authors
- juanep97 (146)
- morcuended (6)
- dependabot[bot] (2)
- joteros (2)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- pypi 74 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 9
- Total maintainers: 1
pypi.org: iop4
A rewrite of IOP3, a pipeline to work with photometry and polarimetry of optical data from CAHA and OSN.
- Documentation: https://iop4.readthedocs.io/
- License: BSD-3-Clause
-
Latest release: 1.5.1
published 9 months ago
Rankings
Maintainers (1)
Dependencies
- actions/checkout v4 composite
- actions/setup-python v4 composite
- actions/checkout v4 composite
- actions/setup-python v4 composite
- pypa/gh-action-pypi-publish release/v1 composite
- release-drafter/release-drafter v5 composite
- astrometry ==4.1.2
- astropy ==5.2.2
- astroquery *
- bokeh ==3.2.2
- coloredlogs *
- django ==4.1.7
- ipython *
- matplotlib ==3.7.1
- multiprocess ==0.70.14
- numpy ==1.24.2
- pandas *
- photutils ==1.8.0
- psutil *
- pypandoc *
- pyyaml <5.4
- scikit-image *
- scikit-learn ==1.2.2
- scipy ==1.10.1
- termcolor *