Skip to main content

Spotless - Radio Interferometry Imaging Algorithm

This is a point-source deconvolution algorithm (part of the CLEAN family) that works without gridding. [http://www.iram.fr/IRAMFR/GILDAS/doc/html/map-html/node37.html]

This is essentially a grid-free version of the Cotton-Schwab algorithm with a different convergence an optimization steps. [Relaxing the isoplanatism assumption in self-calibration; applications to low-frequency radio interferometry]

It does not require W-projection and handles non-coplanar antennas without difficulty. It also works on all-sky images just fine.

How does Spotless work

The CLEAN algorithm is essentially deconvolution by repeated subtraction. I think this is silly, hence spotless. Spotless works by building up a model of the field of view in terms of point sources using model-fitting in visibility space.

Spotless deconvolutes the measured visibilities $V(u,v,w)$ into a sum of $N$ point-source visibilities $V_P(\theta, \phi)$ where $\theta$ and $\phi$ are the co-ordinates of the point source: i.e.,

$$ V(u,v,w) = \sum_{i=0}^{N} A_i V_P(\theta_i, \phi_i) + V_r(u,v,w) $$

where the $A_i$ are the brightness of each point source, and $V_r$ are the residual visibilities.

Spotless has two algorithms for doing this. The first, like CLEAN, is sequential location of point sources:

\begin{eqnarray*}
V(u,v,w) & = & A_0 V_P(\theta_0, \phi_0) + V_1(u,v,w) \\
V_1(u,v,w) & = & A_1 V_P(\theta_1, \phi_1) + V_2(u,v,w) \\
 ... \\
V_N(u,v,w) & = & A_N V_P(\theta_N, \phi_N) + V_{N+1}(u,v,w)
\end{eqnarray*}

At each step the new point source is located using a minimizer from the residuals at that step:

\begin{eqnarray*}
  P_i & = & \min_{A, \theta, \phi} E(V_0) \\
      & = & \min_{A, \theta, \phi} E(V - A V_P(\theta, \phi))
\end{eqnarray*}

where $E(V)$ is the total energy in the visibilities. So we find the point source that minimizes the remaining energy.

The nice thing is that the energy can be calculated directly from the visibilities, and so no gridding is required at all, either in image space or in visibility space.

This is possible because the integral of the fourier transform (F.T.) of the visibilities can be calculated directly from the visibilities without the F.T. This is Parseval's Theorem, for the DFT it becomes

\sum_{n=0}^{N-1} \left| x_n \right|^2 = \frac{1}{N} \sum_{k=0}^{N-1} \left| X_k \right|^2

Thus as the visibilities are the F.T of the sky brightness, the sum of the absolute value of the visibilities is proportional to the energy in the 'image'

E(V)  \propto  \sum_{k=0}^{N-1} v_i v_i^\star

MultiSpotless

Multispotless (--multimodel command line option) uses a better (but slower) sequential location. It builds up a multiple-point-source model as the algorithm progresses.

Termination Criterion

Both spotless variants terminate when the power in the residual stops decreasing.

Results

Dirty Image Spotless Image

For more information see the TART Github repository

Install Instructions

tart_tools is available from standard python package repositories. Try:

pip install spotless

Running it on live data

spotless --api https://tart.elec.ac.nz/signal --display --show-sources
gridless --api https://tart.elec.ac.nz/signal --display --show-sources

Command Line Usage

Data Sources

Spotless can read visibilities from three sources:

Source Flag Example
TART API --api spotless --api https://tart.elec.ac.nz/signal
CASA Measurement Set --ms spotless --ms test_data/test.ms
JSON snapshot file --file spotless --file observation.json

Imaging Options

  --fov FOV             Field of view (e.g., 160deg)
  --res RES             Resolution (e.g., 120arcmin)
  --healpix             Use HEALPix pixelisation
  --nvis NVIS           Number of visibilities to use (default: 1000)
  --channel CHANNEL     Frequency channel (default: 0)

Output Formats

  --display             Show image interactively
  --PNG                 Save as PNG
  --SVG                 Save as SVG
  --PDF                 Save as PDF
  --fits                Save as FITS
  --HDF FILENAME        Save field of view as HDF5
  --save-model-json FILE  Save point-source model as JSON
  --dir DIR             Output directory (default: .)
  --title TITLE         Prefix for output filenames

Algorithms

Flag Description
(default) Sequential Spotless — finds one source at a time
--multimodel MultiSpotless — jointly optimises all sources

Other Flags

  --show-sources        Overlay known sources from catalog
  --show-model          Show the model source locations
  --elevation ELEV      Elevation limit for source display (degrees, default: 20)
  --beam                Generate a dirty beam image
  --max-steps N         Maximum deconvolution steps (default: 50)
  --log FILE            Save deconvolution statistics to FILE
  --version             Print version and exit
  --debug               Enable debug logging

Examples

# Image a measurement set with MultiSpotless, save as SVG
spotless --ms test_data/test.ms --healpix --fov 160deg --res 120arcmin \
    --multimodel --SVG --title my_source

# Live all-sky imaging from the TART telescope
spotless --api https://tart.elec.ac.nz/signal --display --show-sources \
    --healpix --fov 180deg --res 60arcmin

# Calibrate using the spotless model
spotless_calibrate --api https://tart.elec.ac.nz/signal

Performance

Spotless benefits from multi-threaded BLAS libraries for numpy operations. Set the following environment variables to use multiple cores:

# Linux / macOS
export OPENBLAS_NUM_THREADS=4
export OMP_NUM_THREADS=4

# Or set for a single run
OPENBLAS_NUM_THREADS=4 spotless --ms data.ms --healpix

For large measurement sets, use --nvis to limit the number of visibilities used in the peak search (the optimizer uses all visibilities for accuracy).

Documentation

A LaTeX article describing the algorithm in detail is available in doc/spotless.tex. Build with:

cd doc && make

Generate example images and convert to PNG:

cd doc && make images && make pngs

TODO

  • Add Gaussian Source Model
  • Make explicit the antenna model (gain as a function of angular coordinates). We are assuming it is hemispherical here.
  • Prove the relationship between power in the image and visibilty amplitudes. This might only work when the image tends towards a random one. But this is OK since as we remove the sources the residual becomes more and more random.
  • Run an MCMC on the multimodel option to estimate uncertainty in the model. Then use this uncertainty as a stopping criterion (when new model components no longer have certain amplitude or position)

Author

Development work

If you are developing this package, install uv and then:

	make sync

This installs all dependencies (including dev tools like flake8) in a virtual environment. To run tests: make test To lint: make lint

Changes

See CHANGES.md.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spotless-0.7.5.tar.gz (14.9 MB view details)

Uploaded Source

Built Distribution

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

spotless-0.7.5-py3-none-any.whl (37.2 kB view details)

Uploaded Python 3

File details

Details for the file spotless-0.7.5.tar.gz.

File metadata

  • Download URL: spotless-0.7.5.tar.gz
  • Upload date:
  • Size: 14.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for spotless-0.7.5.tar.gz
Algorithm Hash digest
SHA256 940d0f3bc30ca0d5f9f0cc665e03fd2da1480c2cdb738df6443f7a8e969ec38a
MD5 66269c66a4d502fdbdaf96e94128900a
BLAKE2b-256 0ddf597e634270cbfac6698c56c2ae6f934bf9ae62fa9dc9a4ca62550954d402

See more details on using hashes here.

Provenance

The following attestation bundles were made for spotless-0.7.5.tar.gz:

Publisher: package.yaml on tmolteno/spotless

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

File details

Details for the file spotless-0.7.5-py3-none-any.whl.

File metadata

  • Download URL: spotless-0.7.5-py3-none-any.whl
  • Upload date:
  • Size: 37.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for spotless-0.7.5-py3-none-any.whl
Algorithm Hash digest
SHA256 dc4f78455d9530235118fd72168a99c3c9b9e67ea57aaa135cf805cdab240a51
MD5 2bcdb146c66609755430ba961fd57b22
BLAKE2b-256 ff7a02f860afad61c7cc852bdd808d5e43d453fb9992a1f18dcf6dacfbdf808b

See more details on using hashes here.

Provenance

The following attestation bundles were made for spotless-0.7.5-py3-none-any.whl:

Publisher: package.yaml on tmolteno/spotless

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

Release history Release notifications | RSS feed

0.8.0

2 files

This release

0.7.5 This release

2 files

0.7.4

2 files

0.7.2

2 files

0.4.1

1 file

0.4.0

1 file

0.3.4

1 file

Supported by

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