[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#70489] [PATCH 46/47] gnu: Add scamp.
From: |
Sharlatan Hellseher |
Subject: |
[bug#70489] [PATCH 46/47] gnu: Add scamp. |
Date: |
Sun, 21 Apr 2024 00:22:35 +0100 |
* gnu/packages/astronomy.scm (scamp): New variable.
Change-Id: If32adb281017858b0e7d5816cecb509af3cec835
---
gnu/packages/astronomy.scm | 80 ++++++++++++++++++++++++++++++++++++++
1 file changed, 80 insertions(+)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 9d82bd4c89..a9e0583f39 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -69,6 +69,7 @@ (define-module (gnu packages astronomy)
#:use-module (gnu packages perl)
#:use-module (gnu packages photo)
#:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages plotutils)
#:use-module (gnu packages pretty-print)
#:use-module (gnu packages python)
#:use-module (gnu packages python-build)
@@ -3771,6 +3772,85 @@ (define-public gpredict
@end itemize")
(license license:gpl2+)))
+(define-public scamp
+ (package
+ (name "scamp")
+ (version "2.10.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/astromatic/scamp")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0qic52mzw9avf1a1fsr85mlh63b7hq6d4wj2d00zgdllmclj5l9q"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list
+ #:configure-flags
+ #~(list "CPPFLAGS=-fcommon"
+ "--enable-openblas"
+ "--enable-plplot"
+ (string-append "--with-curl-incdir="
+ #$(this-package-input "curl") "/include")
+ (string-append "--with-curl-libdir="
+ #$(this-package-input "curl") "/lib")
+ (string-append "--with-fftw-incdir="
+ #$(this-package-input "fftwf") "/include")
+ (string-append "--with-fftw-libdir="
+ #$(this-package-input "fftwf") "/lib")
+ (string-append "--with-openblas-incdir="
+ #$(this-package-input "openblas") "/include")
+ (string-append "--with-openblas-libdir="
+ #$(this-package-input "openblas") "/lib")
+ (string-append "--with-plplot-incdir="
+ #$(this-package-input "plplot") "/include")
+ (string-append "--with-plplot-libdir="
+ #$(this-package-input "plplot") "/lib"))))
+ (native-inputs
+ (list autoconf
+ automake
+ libtool
+ pkg-config
+ python-astropy
+ python-numpy
+ python-wrapper))
+ (inputs
+ (list curl fftwf openblas plplot))
+ (home-page "https://www.astromatic.net/software/scamp/")
+ (synopsis "Compute astrometric solutions")
+ (description
+ "@acronym{Software for Calibrating AstroMetry and Photometry,SCAMP} is a
+software that computes astrometric projection parameters from source catalogues
+derived from @url{http://fits.gsfc.nasa.gov/,FITS} images. The computed
solution
+is expressed according to the
+@url{http://www.atnf.csiro.au/people/mcalabre/WCS/index.html,WCS} standard.
The
+main features of SCAMP are:
+
+@itemize
+@item compatibility with @code{SExtractor} FITS or Multi-Extension FITS
+catalogue format in input
+@item generation of WCS-compliant and @code{SWarp}-compatible FITS image
headers
+in output
+@item automatic grouping of catalogues on the sky
+@item selectable on-line astrometric reference catalogue
+@item automatic determination of scale, position angle, flipping and coordinate
+shift using fast pattern-matching
+@item various astrometric calibration modes for single detectors and detector
+arrays
+@item combined astrometric solutions for multi-channel/instrument surveys
+@item highly configurable astrometric distortion polynomials
+@item correction for differential chromatic refraction
+@item proper motion measurements
+@item multi-threaded code that takes advantage of multiple processors
+@item @url{http://www.ivoa.net/documents/VOTable,VOTable}-compliant XML output
+of meta-data
+@item @url{http://en.wikipedia.org/wiki/XSLT,XSLT} filter sheet provided for
+convenient access to metadata from a regular web browser
+@end itemize")
+ (license license:gpl3+)))
+
(define-public sgp4
;; Version tag v1.0 is dated to <2021-01-11>, use the lates commit instead.
(let ((commit "6a448b4850e5fbf8c1ca03bb5f6013a9fdc1fd91")
--
2.41.0
- [bug#70489] [PATCH 36/47] gnu: python-roman-datamodels: Update to 0.19.1., (continued)
- [bug#70489] [PATCH 36/47] gnu: python-roman-datamodels: Update to 0.19.1., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 38/47] gnu: python-specutils: Update to 1.14.0., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 35/47] gnu: python-regions: Update to 0.9., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 39/47] gnu: python-photutils: Update to 1.12., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 43/47] gnu: python-crds: Update to 11.17.20., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 44/47] gnu: python-stsci-stimage: Update to 0.2.8., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 41/47] gnu: python-reproject: Enable tests., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 40/47] gnu: python-reproject: Update to 0.13.1., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 45/47] gnu: python-stsci-stimage: Adjust test steps., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 47/47] gnu: Add psfex., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 46/47] gnu: Add scamp.,
Sharlatan Hellseher <=
- [bug#70489] [PATCH 42/47] gnu: python-asdf: Adjust inputs., Sharlatan Hellseher, 2024/04/20
- [bug#70489] [PATCH 28/47] gnu: python-bayesicfitting: Refresh package style., Sharlatan Hellseher, 2024/04/20