Metadata-Version: 2.1
Name: myraf
Version: 3.0.3
Summary: MYRaf; an astropy wrapper for astronomical photometry
Home-page: https://github.com/myrafproject/myrafproject
Author: Mohammad S.Niaei, Yücel KILIÇ
Author-email: niaei@pardus.org.tr, ykilic@iaa.es
License: GNU/GPL V3
Keywords: Fits,Photometry
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: astroalign
Requires-Dist: astropy
Requires-Dist: astroquery
Requires-Dist: ccdproc
Requires-Dist: matplotlib
Requires-Dist: mpl-point-clicker
Requires-Dist: numpy==1.24.4
Requires-Dist: pandas
Requires-Dist: photutils
Requires-Dist: python-dateutil
Requires-Dist: sep
Requires-Dist: typing-extensions
Requires-Dist: scipy
Requires-Dist: ginga
Requires-Dist: PyQt5
Requires-Dist: pyqtdarktheme
Provides-Extra: testing
Requires-Dist: pytest; extra == "testing"
Requires-Dist: pytest-cov; extra == "testing"
Requires-Dist: mypy; extra == "testing"
Requires-Dist: flake8; extra == "testing"
Requires-Dist: tox; extra == "testing"

# What is MYRaf?

The MYRaf WAS a practicable astronomical image reduction and photometry software and interfaces for IRAF.

Nowadays MYRaf uses astropy and other python's libraries to achieve its purpose. For this, MYRaf uses IRAF, PyRAF, and many other python packages with a Qt framework. Also, MYRaf is free software and distributed with a GPLv3 license. You can use it without restrictive licenses, make copies for your friends, school, or institution.

MYRaf is no longer Operating System depended and can be installed on all Operating Systems.

## Installation

```bash
pip install myraf
  ```

If you have any problems during installation or usage, please contact us or create an [issue](https://github.com/myrafproject/myrafproject/issues/new). Before reporting an issue, please do not forget to run MYRaf v3 with DEBUG mode and share the outputs with us with the command below;

Clear skies!

______

**MYRaf Project Team**

**Yücel KILIÇ** | yucelkilic@myrafproject.org

**Mohammad SHEMUNI** | m.shemuni@myrafproject.org

For academic use, please cite the paper:

> Shameoni Niaei, M.; Kilic, Y.; Özeren, F. F.,
> 2015, *MYRaf: An Easy Aperture Photometry GUI for IRAF*, **Astronomical Society of the Pacific (Conference Series)**, 496, 299 (2015).

[Bibtex@ADS](https://ui.adsabs.harvard.edu/abs/2015ASPC..496..299N/exportcitation) | [ASP](http://articles.adsabs.harvard.edu/pdf/2015ASPC..496..299N)

------------

> Kilic, Y.; Shameoni Niaei, M.; Özeren, F. F.; Yesilyaprak, C.,
> 2016,
> *MYRaf: A new Approach with IRAF for Astronomical Photometric Reduction*,
> **RevMexAA (Serie de Conferencias)**, 48, 38–39 (2016).

[Bibtex@ADS](http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2016RMxAC..48...38K&data_type=BIBTEX&db_key=AST&nocookieset=1) | [RevMexAA](http://www.astroscu.unam.mx/rmaa/RMxAC..48/PDF/RMxAC..48_part-2.2.pdf)

## MYRaf as a library
MYRaf has two base objects. `Fits` and `FitsArray`.
Both has almost the same features. Let's explore:


- Fits object
  - [Creation](example/fits/create.ipynb)
  - [Visualization](example/fits/visualize.ipynb)
  - [Header](example/fits/header.ipynb)
  - [Data](example/fits/data.ipynb)
  - [Transformation](example/fits/transformation.ipynb)
  - [Arithmetic](example/fits/arithmetic.ipynb)
  - [Calibration](example/fits/calibration.ipynb)
  - [Source Extraction](example/fits/source_extraction.ipynb)
  - [Photometry](example/fits/photometry.ipynb)
  - [Other](example/fits/other.ipynb)
- FitsArray object
  - [Creation](example/fits_array/create.ipynb)
  - [Visualization](example/fits_array/visualize.ipynb)
  - [Header](example/fits_array/header.ipynb)
  - [Data](example/fits_array/data.ipynb)
  - [Transformation](example/fits_array/transformation.ipynb)
  - [Arithmetic](example/fits_array/arithmetic.ipynb)
  - [Combine](example/fits_array/combine.ipynb)
  - [Calibration](example/fits_array/calibration.ipynb)
  - [Source Extraction](example/fits_array/source_extraction.ipynb)
  - [Photometry](example/fits_array/photometry.ipynb)
  - [Other](example/fits_array/other.ipynb)
