ARIEL AIRS convenience tools for analysis and data manipulation
Project description
AIRSplorer
Convenience tools for analysis and data manipulation related to ARIEL AIRS. The package provides utilities for working with images and cubes, basic flux calculations, coordinate conversions, mask handling, I/O helpers, and common plotting routines.
- Python ≥ 3.11
- License: MIT
- Repository: https://github.com/ccossou/airsplorer
Key features
- Image and cube manipulation (load, save, simple transforms)
- Basic photometry and flux/statistics utilities
- Sky/pixel coordinate conversions
- Mask creation, application, and operations
- Plotting helpers and tabulated outputs
- Test suite for core functionality
Indicative modules:
coord: coordinate conversions and utilitiesflux: simple photometry and flux-related computationsimager/imlib: image operationsmask: mask creation and manipulationplot: common plotting helpersutils: assorted utility functions
Installation
From PyPI (when available):
bash
python -m pip install airsplorer
From source (development):
bash
git clone https://github.com/ccossou/airsplorer.git
cd airsplorer
python -m pip install -e .
Main runtime dependencies are installed automatically.
On windows, one might have to install extra dependencies, namely, Visual C++ Redistributable. Go to Visual Studio, go at the bottom of the page, to the Downloads/Autre outils, infrastructures et redistribuables and take Microsoft Visual C++ v14 Redistributable x64 (or newer if any).
On Mac/Linux, the dependencies should be installed automatically.
[!IMPORTANT] Installation easily fail if it's done in a python environment that is not properly set up, like, for instance, the base environment for spyder/miniforge/miniconda. I advise to use a dedicated environment that is not the system python, or base environment for any virtual environment manager to avoid any potential issues. It is not necessary, however, to create a specific environment for airsplorer and it can be installed in a pre-existing one. Creating a new environment is a good idea if you struggle to make it work, and want to test if it work better in a brand new environment.
Quick start
python
# Example imports (see function docstrings for exact APIs)
from airsplorer import coord, flux, imager, mask, utils, read, write, plot
# Loading and saving (adjust paths and formats to your data)
# data = read.load_image("path/to/file.fits")
# write.save_image(data, "path/to/output.fits")
# Image operations
# img2 = imager.normalize(data)
# m = mask.create_threshold_mask(img2, threshold=5.0)
# img3 = imager.apply_mask(img2, m)
# Flux calculations
# f = flux.aperture_photometry(img3, center=(x0, y0), radius=5)
# Coordinate conversions
# px, py = coord.sky_to_pixel(ra, dec, wcs_header)
# ra2, dec2 = coord.pixel_to_sky(px, py, wcs_header)
# Plotting
# plot.imshow(img3, title="Processed image")
Notes:
- Check each function’s docstring for signatures, units, and options.
- Adjust examples to your data formats and WCS headers.
License and citation
- License: MIT
- If you use airsplorer in scientific work, please cite the repository and the software version you used. A DOI or BibTeX entry may be added in the future.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file airsplorer-0.6.0.tar.gz.
File metadata
- Download URL: airsplorer-0.6.0.tar.gz
- Upload date:
- Size: 2.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcee699553c37e0004a899c5089404bcec8e440dcd9b3a1113e97e86615fd737
|
|
| MD5 |
4a9e929476edbeb26a2b0684856c0a8f
|
|
| BLAKE2b-256 |
31970e05c6775d1bd1a389213c610a5301175ce69a5383cba186edb9ac8de0af
|
File details
Details for the file airsplorer-0.6.0-py3-none-any.whl.
File metadata
- Download URL: airsplorer-0.6.0-py3-none-any.whl
- Upload date:
- Size: 52.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fc29a15f00220b5cde54b65ba943461b8fbd88487dd2383b97d070c8886e14c
|
|
| MD5 |
1c99bc438cb9e985a55e31576d42f2fc
|
|
| BLAKE2b-256 |
ea6e5967b6a8db23c0d60cc45dcbb2640a62fae6d8034fda66b78f2b0f0d6d50
|