gnu: Add python-radio-beam.

* gnu/packages/astronomy.scm (python-radio-beam): New variable.

Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
Sharlatan Hellseher 2023-10-11 02:39:31 +01:00 committed by Maxim Cournoyer
parent 5e7f27d6ca
commit c82c6807e8
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -3955,6 +3955,40 @@ (define-public python-rad
Grace Roman Space Telescope.")
(license license:bsd-3)))
(define-public python-radio-beam
(package
(name "python-radio-beam")
(version "0.3.4")
(source
(origin
(method url-fetch)
(uri (pypi-uri "radio-beam" version))
(sha256
(base32 "0293hlbxb61h8js7yrvrbiw8108qn5s0rh2iy9rkhc012mzjacp0"))))
(build-system pyproject-build-system)
(propagated-inputs
(list python-astropy
python-matplotlib
python-numpy
python-scipy
python-six))
(native-inputs (list python-pytest-astropy))
(home-page "https://radio-beam.readthedocs.io/en/latest/")
(synopsis "Operations for radio astronomy beams with Astropy")
(description
"Radio Beam is a simple toolkit for reading beam information from FITS
headers and manipulating beams.
Some example applications include:
@itemize
@item Convolution and deconvolution
@item Unit conversion (Jy to/from K)
@item Handle sets of beams for spectral cubes with varying resolution between
channels
@item Find the smallest common beam from a set of beams
@item Add the beam shape to a matplotlib plot
@end itemize")
(license license:bsd-3)))
(define-public python-roman-datamodels
(package
(name "python-roman-datamodels")