Skip to main content

A GUI-assisted catalogue-level photometric contamination risk-assessment and target-screening tool.

Project description

Logo PHOTO-CAT

English · Italiano

Photometric Contamination Analyzer Tool

PHOTO-CAT builds a neighbour index from an astronomical catalogue and screens selected photometric targets for nearby-source contamination risk.

Download and usage · Reproduce paper results · Command line · Input data · Troubleshooting

Python Platforms Runtime Interface


Overview

PHOTO-CAT is a local Python tool for catalogue-level photometric contamination risk assessment and target screening.

It can build a neighbour index from a source catalogue, query selected targets, and write a JSON summary containing catalogue/aperture-based contamination metrics and neighbouring sources that match the configured field-of-view and magnitude limits.

The current 2.0.0 model is intentionally scoped: it uses catalogue magnitudes, a circular aperture, and an optional 2D circular Gaussian PSF whose flux decays with angular distance from the aperture centre. An influence radius derived from the PSF width can include weighted leakage from nearby sources outside the aperture. An optional calibrated colour-polynomial profile can estimate a named mission band with validity tracking and provenance. It does not perform spatially varying/asymmetric PSF convolution, detector-pixel modelling, scattered-light modelling, or full spectral/passband integration. Treat PHOTO-CAT output as a screening/risk metric unless calibrated mission inputs support the selected models.

PHOTO-CAT is designed for reproducible local use. It includes beginner-friendly launchers, a graphical configuration window, automatic dependency setup, project-local runtime handling so user/system Python installations are not modified, versioned index manifests, and query metadata sidecars that record the package version, query settings, index manifest, and model scope.

Version 2 migration: neighbour indexes created by PHOTO-CAT 1.x must be rebuilt. Version 2 uses a versioned, non-executable index format and intentionally refuses legacy pickle/object-array files.

Download and get started

  1. Download the latest release archive.
  2. Extract the archive.
  3. Run the starter for your operating system:
    • Windows: double-click START_WINDOWS.bat
    • macOS/Linux: open Terminal in the folder and run sh START_UNIX.sh
  4. Select your catalogue CSV in the graphical configurator.
  5. Check the detected column names.
  6. Click Save and run pipeline.

See Download and usage for a fuller walkthrough.

Features

  • Build a neighbour index from a photometric catalogue.
  • Screen selected targets for nearby catalogue sources that may contaminate a circular aperture.
  • Report both selected-contaminant flux and all-neighbour-in-radius flux metrics.
  • Optionally compare catalogue-level flux metrics across stored magnitude bands.
  • Apply a provenance-tracked empirical colour transformation into a mission band.
  • Use a top-hat or 2D circular Gaussian PSF contamination screening model.
  • Summarize result JSON files into text, JSON, or CSV statistics.
  • Generate dependency-free SVG plots and HTML/Markdown reports from query results.
  • Generate publication-ready contaminant-count and separation distributions plus a colourblind-safe sky map with redundant marker encodings.
  • Export target-result tables to CSV or Parquet for notebooks and external tools.
  • Capture catalogue provenance JSON with checksums, row counts, column stats, and optional ADQL checksums.
  • Generate reproducible product bundles with summaries, plots, reports, and checksums.
  • Merge supplemental bright-star catalogues before building an index.
  • Rank targets into explicit accept/review/reject screening decisions.
  • Validate predicted contamination against user-supplied mission/reference tables.
  • Run benchmark captures for reproducible runtime and memory-allocation notes.
  • Render benchmark captures as shareable Markdown or CSV tables.
  • Configure runs through a graphical interface.
  • Switch the GUI, command help, console messages, warnings, and expected errors between English and Italian.
  • Read beginner-oriented tooltips on every GUI setting, value, section, and action; astronomy terms include practical explanations.
  • Keep scientific plot labels in English in either interface language so exported figures remain publication-ready and consistent.
  • Run the same workflow from a command-line interface for automation and remote systems, with direct overrides for every config value.
  • Use either a targets CSV or a manual list of source IDs.
  • Validate input files, column names, output folders, and index paths.
  • Keep dependencies isolated inside the project .venv folder.
  • Use a project-local runtime fallback when no suitable Python is available.
  • Detect stale or moved virtual environments and rebuild them safely.
  • Produce readable console output and user-facing error messages.

Files

This distribution includes the following main files and folders:

  • README.md, the file you are currently reading.
  • README_IT.md, the Italian README.
  • START_WINDOWS.bat, the main Windows launcher.
  • START_UNIX.sh, the main macOS/Linux launcher.
  • config.yaml, the runtime configuration file managed by the GUI.
  • data/, example CSV files for quick testing.
  • docs/, user and maintainer documentation.
  • tests/, automated tests for configuration loading and the sample pipeline.
  • .github/workflows/, continuous integration and package publishing workflows.
  • scripts/, platform launcher helpers.
  • src/, the PHOTO-CAT Python source code.
  • LICENSE, the full GPL-3.0 license text.
  • REUSE.toml, SPDX/REUSE licensing metadata.
  • CITATION.cff, machine-readable citation metadata.
  • CODE_OF_CONDUCT.md, CONTRIBUTING.md, and SECURITY.md, repository community and maintenance files.

Runtime folders such as .venv/, .runtime/, logs, and output files are generated locally and should not be committed.

Input data

PHOTO-CAT expects CSV input files.

The default catalogue columns follow common Gaia-style names:

  • source_id
  • ra
  • dec
  • phot_g_mean_mag

Column names are case-sensitive and must match the CSV header exactly. If your files use different names, change them in the graphical configurator before running the pipeline.

See Input data for details.

Output

PHOTO-CAT writes generated index files and query results to the configured output directory.

The query stage produces a JSON file containing one result entry per processed target. Each entry includes the target data, catalogue/aperture contamination metrics, and the list of qualifying neighbouring sources. A metadata sidecar is also written under output/metadata/ to support reproducibility.

Result files can be post-processed with:

photo-cat summarize output/index/results/result.json
photo-cat export output/index/results/result.json --format csv --output output/result.csv
photo-cat plot output/index/results/result.json --kind contaminant-counts
photo-cat publication-plots output/index/results/result.json --aperture-arcsec 47 --output-dir output/publication_plots
photo-cat provenance data/catalog.csv --adql-file examples/reproducibility/gaia_dr3_g17_selection.adql --output output/catalog_provenance.json
photo-cat report output/index/results/result.json --format html
photo-cat benchmark --config config.yaml --output output/benchmark.json
photo-cat benchmark-table output/benchmark.json --output output/benchmark_table.md
photo-cat reproduce --result-json output/index/results/result.json --output-dir output/reproduction
photo-cat merge-bright-stars data/gaia.csv data/bright.csv --output data/merged_catalog.csv
photo-cat screen output/index/results/result.json --output output/screening.csv
photo-cat validate-results output/index/results/result.json data/reference.csv --output output/validation.json

See Pipeline and output for details.

Runtime and Python handling

PHOTO-CAT uses Python locally and avoids modifying the user’s system Python installation.

The launchers use an existing Python only when it is supported and passes the required checks. Supported versions are Python 3.10 through 3.13.

If no suitable Python is available, PHOTO-CAT uses a private runtime under .runtime/ and installs project dependencies only into .venv/.

PHOTO-CAT does not permanently modify PATH, upgrade user Python, uninstall user Python, or install packages into the user’s system Python.

See Runtime and Python for details.

Command-line usage

After installing the package, the unified CLI is available as photo-cat.

Common commands:

photo-cat configure
photo-cat run --config config.yaml
photo-cat run --config config.yaml --input-catalog data/catalog.csv --ra-column RAJ2000 --dec-column DEJ2000 --mag-column Gmag --field-of-view-arcsec 60 --delta-mag 4
photo-cat build-index --config config.yaml --input-catalog data/catalog.csv --out-dir output/index
photo-cat query --config config.yaml --index-dir output/index --targets-input data/targets.csv --field-of-view-arcsec 47 --delta-mag 5
photo-cat query --config config.yaml --aperture-radius-arcsec 47 --contamination-model-mode gaussian_psf --gaussian-fwhm-arcsec 20 --influence-sigma 3
photo-cat doctor

The root launchers remain the recommended entry point for non-technical local users. The CLI is intended for automation, remote machines, and reproducible workflows. It supports direct runtime overrides for every value in config.yaml; see Command-line usage. The doctor command supports both package-install checks and project-folder checks. Use photo-cat doctor --format json for machine-readable automation diagnostics.

Documentation

User documentation:

Maintainer documentation:

Troubleshooting

For common startup, dependency, Tkinter, CSV, and virtual environment issues, see Troubleshooting.

Reproduce the paper results

PHOTO-CAT includes a beginner-oriented workflow for recreating the coordinated paper-result products from Gaia DR3 data:

  1. download the G=17 Gaia catalogue used to search for neighbouring contaminants;
  2. download a separate G=12 Gaia target sample;
  3. configure and run the build/query pipeline;
  4. generate the contaminant-count, separation, and sky-map products from Publication plots;
  5. preserve the queries, configuration, metadata, manifests, and checksums needed for reproducibility.

Follow the complete step-by-step guide: Reproduce the paper results.

Citation

Please include the following citation and acknowledgement in any published material that makes use of PHOTO-CAT.

Citation:

<publication reference>

Acknowledgement:

This research made use of PHOTO-CAT, a Python package for catalogue-level photometric contamination risk assessment and target screening (<publication reference>), developed with the support of Blue Skies Space Ltd. (www.bssl.space).

Replace <publication reference> with the final publication reference once available.

Acknowledgements

The authors gratefully acknowledge:

  • E. Drago for key contributions to the software implementation, testing workflow and the technical refinement of PHOTO-CAT.

  • J. Burgio for the design and creation of the PHOTO-CAT logo and visual identity.

License

PHOTO-CAT is distributed under the GNU General Public License v3.0 only. See LICENSE for the full license text.

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

photo_cat-2.0.0.tar.gz (158.7 kB view details)

Uploaded Source

Built Distribution

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

photo_cat-2.0.0-py3-none-any.whl (170.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: photo_cat-2.0.0.tar.gz
  • Upload date:
  • Size: 158.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for photo_cat-2.0.0.tar.gz
Algorithm Hash digest
SHA256 3a9bb25d69965258f6f643daf36a2154ad4b95d0ea3267a355e323fd8300611c
MD5 cb2b10c8537ea7ff4bab18b76e3487c3
BLAKE2b-256 818e575b7404696c575d34df45c96d973e87c5e1add1fcff1aba16a8868eda1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for photo_cat-2.0.0.tar.gz:

Publisher: publish-python-package.yml on Daddi14/photo-cat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: photo_cat-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 170.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for photo_cat-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4f72a5e828a587f214e2844d472cb4058cb0009226165fd7636c1ea7bae18d65
MD5 a370ead41ebe82b85e8aa2bc0d363a6b
BLAKE2b-256 5ef30a4c90f8236fd2f7939aa4793a4b2b21c2a335f624ecd31f7161c417616a

See more details on using hashes here.

Provenance

The following attestation bundles were made for photo_cat-2.0.0-py3-none-any.whl:

Publisher: publish-python-package.yml on Daddi14/photo-cat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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