Skip to main content

PYthon Radio Astronomy anaLYSis and Image Synthesis

Project description

Pyralysis logo

Pyralysis

PYthon Radio Astronomy anaLYSis and Image Synthesis

Simulate, optimize, and reconstruct — with a Python toolkit built for modern interferometry.


Pipeline Status codecov Documentation Status pre-commit License


PyPI Version Python Version PyPI Wheel PyPI Downloads Binder


GitLab stars GitLab forks GitLab open issues GitLab merge requests Docker


Dask Xarray NumPy Astropy Numba SciPy


pytest yapf isort Commitizen Read the Docs ReadMe


Why Pyralysis?

Whether you are prototyping a simulation, studying optimization for imaging, or pipelining large visibility sets, Pyralysis aims to meet you where you work: clear APIs, lazy evaluation where it matters, and documentation you can actually read.

  • Interferometric imaging and simulation in one coherent library.
  • Dask-friendly workflows for scaling from a laptop to a cluster (including optional SLURM-backed workers).
  • Documented user guides, API reference, and runnable examples — try them locally, on Binder, or from a full install (see below).

If you prefer to dive straight in, open the documentation on Read the Docs.


Try Pyralysis in your browser (Binder)

Binder builds a short-lived JupyterLab session with Pyralysis checked out from the release branch, so you can run the project without installing anything on your machine. After the environment starts, open the file browser and work through the notebooks under examples/notebooks/ — small simulations, toy datasets, and walkthroughs that mirror the written guides.

Binder is ideal when you want to peek at the API, follow a tutorial cell by cell, or share a reproducible link with a colleague. Sessions run on shared infrastructure with finite RAM and CPU, and the image tracks the release branch (not every commit on development), so treat it as exploration and teaching, not a substitute for HPC or production-scale imaging. For install paths, SLURM-backed Dask, and heavier workflows, use a local or cluster environment (see Install below) and the repository examples page on Read the Docs.

Launch: Open Pyralysis on Binder (same target as the Binder badge above).


Install in three steps

Stable releases live on PyPI (pin pyralysis==X.Y.Z when you need a reproducible version). For commits that are not yet released, install from GitLab (see the installation guide).

  1. Create a Python environment (Python 3.11–3.12; requires-python is >=3.11,<3.13). Use conda, mamba, micromamba, or plain venv — whatever fits your stack.

  2. Install from PyPI using the SKA extra index (needed so pip can resolve some dependencies).

pip install --extra-index-url https://artefact.skao.int/repository/pypi-internal/simple pyralysis[all]

This pulls the latest published release plus common optional pieces (FFT helpers, notebooks, tests). For CuPy / GPU, use pyralysis[all,cupy] or pyralysis[cupy]. For SLURM-backed Dask workers (dask-jobqueue, used when SetupDaskCluster uses dask_cluster_backend="slurm"), add pyralysis[slurm] (see Optional: SLURM).

Simulation and imaging pipelines can attach a local cluster, SLURM, or an existing Dask Client via context configuration — see Pipelines and distributed Dask.

For editable installs, conda environment files, or Docker images:

Want to explore first without pip? Use Binder above.


Minimal example

Simulate a small dataset and add thermal noise:

from pyralysis.io.antenna_config_io import AntennaConfigurationIo
from pyralysis.simulation import Simulator
from pyralysis.models.sky import PointSource
from pyralysis.injectors import ThermalNoiseInjector

# Load array configuration
interferometer = AntennaConfigurationIo(input_name="path/to/array.cfg").read()
interferometer.configure_observation(
    min_frequency_hz=1e9, max_frequency_hz=1.1e9, frequency_step_hz=1e7,
    right_ascension="12:00:00", declination="45:00:00",
    integration_time=10, observation_time="1h"
)

# Define a source and simulate
source = PointSource(
    reference_intensity=1.0,
    sky_position="12:00:00 45:00:00",
    reference_frequency=1e9,
)
sim = Simulator(interferometer=interferometer, sources=source)
dataset = sim.simulate(create_dataset=True)

# Add thermal noise
thermal = ThermalNoiseInjector(system_temperature=50, integration_time=10, channel_bandwidth=1e6)
noisy_dataset = thermal.apply(dataset)

More simulation patterns (arrays, sky models, injectors, I/O):

Reconstruction example

Reconstruct an image from visibilities with an objective and L-BFGS:

from pyralysis.reconstruction import Image
from pyralysis.optimization import ObjectiveFunction
from pyralysis.optimization.terms import ChiSquared, L1Norm
from pyralysis.optimization.optimizer import LBFGS
from pyralysis.measurement import ModelVisibility

# Create initial image (e.g. empty sky model)
image = Image.empty(imsize=(512, 512), cellsize=0.001)  # adjust to your case

# Build model visibility from dataset and image
model_visibility = ModelVisibility(dataset=noisy_dataset, image=image)

# Objective: data fidelity + simple L1 regularization
terms = [
    ChiSquared(model_visibility=model_visibility, penalization_factor=1.0),
    L1Norm(penalization_factor=0.01),
]
objective = ObjectiveFunction(term_list=terms, image=image, persist_gradient=True)

optimizer = LBFGS(objective_function=objective, parameter=image)
reconstructed_image = optimizer.optimize()

Deeper reading:


Examples in this repository

Location What you will find
examples/notebooks/ Jupyter notebooks
examples/scripts/*_components.py Explicit class composition
examples/scripts/*_pipeline.py Pipeline-style orchestration

Paired scripts include dirtymapper, optimization, and simulation (components vs pipeline variants).


Learn more

Topic Link
User guide and tutorials pyralysis.readthedocs.io
Binder (JupyterLab, no install) Launch Binder
Pipelines and distributed Dask pipelines_distributed
API reference api/index
Data model and measurement operator data_model
Versioning policy versioning

Contributing and development

Resource Link
Contribution guide CONTRIBUTING.md
Changelog CHANGELOG.md
New issue Open an issue
Issue tracker GitLab issues
Testing and QA Testing docs
Versioning and releases Versioning

Pull requests and bug reports are welcome. If you are unsure where to start, open an issue and we can point you to the right part of the codebase.


Citation and license

If Pyralysis supports your research, a citation is appreciated:

@software{carcamo2021pyralysis,
  author = {Miguel Cárcamo},
  title = {Pyralysis: A Python framework for radio interferometric imaging and simulation},
  year = {2021},
  url = {https://gitlab.com/clirai/pyralysis},
  note = {https://pyralysis.readthedocs.io/}
}

Pyralysis is distributed under the GNU General Public License v3.0; see the LICENSE file in this repository.


Contact

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

pyralysis-2.0.0.tar.gz (12.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyralysis-2.0.0-py3-none-any.whl (921.5 kB view details)

Uploaded Python 3

File details

Details for the file pyralysis-2.0.0.tar.gz.

File metadata

  • Download URL: pyralysis-2.0.0.tar.gz
  • Upload date:
  • Size: 12.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for pyralysis-2.0.0.tar.gz
Algorithm Hash digest
SHA256 f5d8edad32d00bf70b6e33d2e143df234bc2c68a542c8a79c1c7941e0a2a22e3
MD5 7cc5d656385ab0d7a5dc8382dcce60ce
BLAKE2b-256 a94a0e1c064b3e8434cc13c4cc3091a259f6090414f817f044fcf638a29581f9

See more details on using hashes here.

File details

Details for the file pyralysis-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: pyralysis-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 921.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for pyralysis-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 444b4c17ffb2a438a7a3dc5820160155572c03863395f8eda6073515fc696112
MD5 baec8bc6a6c0aa552cb45040a7679c5f
BLAKE2b-256 b58034da755eb2db2e42bd0db7fa629ee8d86cd65bd44027803504abf8284c76

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page