1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
# Check the zeropoint script.
#
# See the Tests subsection of the manual for a complete explanation
# (in the Installing gnuastro section).
#
# Original author:
# Sepideh Eskandarlou <sepideh.eskandarlou@gmail.com>
# Contributing author(s):
# Mohammad Akhlaghi <mohammad@akhlaghi.org>
# Copyright (C) 2021, Free Software Foundation, Inc.
#
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved. This file is offered as-is,
# without any warranty.
# Preliminaries
# =============
#
# Set the variables (the executable is in the build tree). Do the
# basic checks to see if the executable is made or if the defaults
# file exists (basicchecks.sh is in the source tree).
prog=zeropoint
execname=../bin/script/astscript-$prog
dep1name=$progbdir/astfits
dep2name=$progbdir/asttable
dep3name=$progbdir/astmatch
dep4name=$progbdir/astmkprof
dep5name=$progbdir/astmkcatalog
intable=table-img-to-wcs.fits
inimg=convolve_spatial_scaled_noised.fits
# Skip?
# =====
#
# If the dependencies of the test don't exist, then skip it. There are two
# types of dependencies:
#
# - The executable script was not made.
# - The programs it use weren't made.
# - The input data weren't made.
if [ ! -f $execname ]; then echo "$execname doesn't exist."; exit 77; fi
if [ ! -f $dep1name ]; then echo "$dep1name doesn't exist."; exit 77; fi
if [ ! -f $dep2name ]; then echo "$dep2name doesn't exist."; exit 77; fi
if [ ! -f $dep3name ]; then echo "$dep3name doesn't exist."; exit 77; fi
if [ ! -f $dep4name ]; then echo "$dep4name doesn't exist."; exit 77; fi
if [ ! -f $dep5name ]; then echo "$dep5name doesn't exist."; exit 77; fi
if [ ! -f $intable ]; then echo "$intable doesn't exist."; exit 77; fi
if [ ! -f $inimg ]; then echo "$inimg doesn't exist."; exit 77; fi
# Actual test script
# ==================
#
# 'check_with_program' can be something like Valgrind or an empty
# string. Such programs will execute the command if present and help in
# debugging when the developer doesn't have access to the user's system.
#
# Since we want the script to recognize the programs that it will use from
# this same build of Gnuastro, we'll add the current directory to PATH.
export PATH="$progbdir:$PATH"
# Test the script: finding the zeropoint.
$check_with_program $execname \
$inimg \
--hdu=1 \
--keepzpap \
--refcatra=RA \
--refcatdec=DEC \
--refcat=$intable \
--starcat=$intable \
--refcatmag=Magnitude \
--aperarcsec=0.09,0.13 \
--output=zeropoint-cat.fits \
--mksrc=$topsrc/bin/script/zeropoint.mk
|