Metadata-Version: 2.4
Name: astro-geko
Version: 1.0.0
Summary: Geko: the Grism Emission-line Kinematics tOol
Author-email: "A. Lola Danhaive" <angelicalola.danhaive@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/angelicalola-danhaive/geko
Project-URL: Documentation, https://astro-geko.readthedocs.io
Project-URL: Repository, https://github.com/angelicalola-danhaive/geko
Keywords: astronomy,jwst,grism,spectroscopy,kinematics,bayesian,mcmc
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Astronomy
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: corner>=2.2.0
Requires-Dist: jax>=0.4.0
Requires-Dist: jaxlib>=0.4.0
Requires-Dist: numpyro>=0.15.0
Requires-Dist: jax-cosmo>=0.1.0
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: matplotlib
Requires-Dist: astropy
Requires-Dist: photutils
Requires-Dist: arviz
Requires-Dist: xarray
Requires-Dist: scikit-image
Requires-Dist: reproject
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"

<div align="center">
  <img src="https://raw.githubusercontent.com/angelicalola-danhaive/geko/main/doc/_static/geko_logo.png" alt="Geko Logo" width="300"/>

  # the **G**rism **E**mission-line **K**inematics t**O**ol

  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
  [![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
  [![Tests](https://github.com/angelicalola-danhaive/geko/actions/workflows/tests.yml/badge.svg)](https://github.com/angelicalola-danhaive/geko/actions/workflows/tests.yml)

</div>

## Description

Geko is a Python package for analyzing grism spectroscopy from JWST NIRCam observations. The package uses JAX for accelerated computation and Numpyro for Bayesian inference to recover emission-line kinematics and morphology from 2D slitless spectroscopy spectra.

**Key Features:**
- **JAX-accelerated**: GPU support for fast inference
- **Bayesian inference**: MCMC fitting using Numpyro's No-U-Turn Sampler (NUTS)
- **Flexible configuration**: Easy-to-use configuration system for priors and MCMC parameters
- **Comprehensive visualization**: Diagnostic plots and corner plots for fit results

## Installation

### Using pip (Recommended)

```bash
pip install astro-geko
```

### Using Conda

For a complete environment with all dependencies:

```bash
# Clone the repository
git clone https://github.com/angelicalola-danhaive/geko.git
cd geko

# Create conda environment
conda env create -f environment.yml
conda activate geko_env

# Install geko
pip install astro-geko
```

### Development Installation

If you want to install the development version:

```bash
# Clone the repository
git clone https://github.com/angelicalola-danhaive/geko.git
cd geko

# Install in editable mode
pip install -e .
```

### Requirements

- Python >= 3.8
- JAX/JAXlib (with optional GPU support)
- Numpyro
- Astropy
- Photutils
- PySersic

For GPU acceleration, follow the [JAX installation guide](https://jax.readthedocs.io/en/latest/installation.html) for CUDA support.

## Quick Start

```python
from geko.fitting import run_geko_fit

# Run a fit with minimal configuration
inference_data = run_geko_fit(
    output='my_fit',
    master_cat='path/to/catalog.cat',
    line='Ha',
    parametric=True,
    save_runs_path='./saves/',
    num_chains=2,
    num_warmup=500,
    num_samples=1000,
    source_id=12345,
    field='GOODS-S-FRESCO',
    grism_filter='F444W'
)
```

See the [documentation](https://astro-geko.readthedocs.io) for detailed usage examples and tutorials.

## Citation

If you use Geko in your research, please cite the following [paper](https://arxiv.org/abs/2510.07369):

```bibtex

@article{Danhaive:2025ac,
	author = {{Danhaive}, A. Lola and {Tacchella}, Sandro},
	journal = {arXiv e-prints},
	month = oct,
	pages = {arXiv:2510.07369},
	title = {{Modelling the kinematics and morphology of galaxies in slitless spectroscopy  with _geko_}},
	year = 2025}
```

## Acknowledgements

We acknowledge support from the Royal Society Research Grants (G125142). We thank Amanda Stoffers for creating our beautiful logo. 

This package makes use of:
- [JAX](https://github.com/google/jax) for accelerated numerical computing
- [Numpyro](https://github.com/pyro-ppl/numpyro) for probabilistic programming
- [Astropy](https://www.astropy.org/) for astronomical data handling

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
