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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include <fset.h>
include <error.h>
include <mach.h>
include <imhdr.h>
include "wfits.h"
# WFT_WRITE_FITZ -- Procedure to convert a single IRAF file to a FITS file.
# If the make_image switch is set the header and pixel files are output
# to the output destination. If the make_image switch is off the header
# is printed to the standard output.
procedure wft_write_fitz (iraf_file, fits_file)
char iraf_file[ARB] # IRAF file name
char fits_file[ARB] # FITS file name
int fits_fd, chars_rec, nchars, ip, min_lenuserarea
pointer im, sp, fits, envstr
int mtfile(), mtopen(), open(), fnldir(), envfind(), ctoi()
pointer immap()
errchk immap, imunmap, open, mtopen, close, smark, salloc, sfree
errchk delete, wft_write_header, wft_write_image, wft_data_limits
include "wfits.com"
begin
# Allocate memory for program data structure.
call smark (sp)
call salloc (fits, LEN_FITS, TY_STRUCT)
call salloc (envstr, SZ_FNAME, TY_CHAR)
# Construct the old iraf name by removing the directory
# specification.
call imgcluster (iraf_file, IRAFNAME(fits), SZ_FNAME)
nchars = fnldir (IRAFNAME(fits), IRAFNAME(fits), SZ_FNAME)
call strcpy (iraf_file[nchars+1], IRAFNAME(fits), SZ_FNAME)
# Open the input image.
if (envfind ("min_lenuserarea", Memc[envstr], SZ_FNAME) > 0) {
ip = 1
if (ctoi (Memc[envstr], ip, min_lenuserarea) <= 0)
min_lenuserarea = LEN_USERAREA
else
min_lenuserarea = max (LEN_USERAREA, min_lenuserarea)
} else
min_lenuserarea = LEN_USERAREA
im = immap (iraf_file, READ_ONLY, min_lenuserarea)
# Open the output file. Check whether the output file is a magtape
# device or a binary file. If the output file is magtape check
# for a legal blocking factor.
if (make_image == NO)
call strcpy ("dev$null", fits_file, SZ_FNAME)
if (mtfile (fits_file) == YES) {
chars_rec = (blkfac * len_record * FITS_BYTE) / (SZB_CHAR *
NBITS_BYTE)
fits_fd = mtopen (fits_file, WRITE_ONLY, chars_rec)
} else
fits_fd = open (fits_file, NEW_FILE, BINARY_FILE)
# Write header and image.
iferr {
if (short_header == YES || long_header == YES) {
if (make_image == YES) {
call printf (" -> %s ")
call pargstr (fits_file)
}
if (long_header == YES)
call printf ("\n")
}
call flush (STDOUT)
call wft_write_header (im, fits, fits_fd)
if (make_image == YES)
call wft_write_image (im, fits, fits_fd)
if (long_header == YES)
call printf ("\n")
} then {
# Print the error message.
call flush (STDOUT)
call erract (EA_WARN)
# Close files and cleanup.
call imunmap (im)
call close (fits_fd)
if (make_image == NO)
call delete (fits_file)
call sfree (sp)
# Assert an error.
call erract (EA_ERROR)
} else {
# Close files and cleanup.
call imunmap (im)
call close (fits_fd)
if (make_image == NO)
call delete (fits_file)
call sfree (sp)
}
end
# WFT_DATA_LIMITS -- Procedure to calculate the maximum and minimum data values
# in an IRAF image. Values are only calculated if the max and min are unknown
# or the image has been modified since the last values were calculated.
procedure wft_data_limits (im, irafmin, irafmax)
pointer im # image pointer
real irafmin # minimum picture value
real irafmax # maximum picture value
int npix
long v[IM_MAXDIM]
pointer buf
real maxval, minval
int imgnlr()
errchk imgnlr
begin
# Compute the data minimum and maximum if the image values
# are undefined out-of-date.
if (LIMTIME(im) < MTIME(im) && NAXIS(im) > 0) {
irafmax = -MAX_REAL
irafmin = MAX_REAL
npix = NAXISN(im,1)
call amovkl (long(1), v, IM_MAXDIM)
while (imgnlr (im, buf, v) != EOF) {
call alimr (Memr[buf], npix, minval, maxval)
irafmin = min (irafmin, minval)
irafmax = max (irafmax, maxval)
}
} else {
irafmax = IM_MAX(im)
irafmin = IM_MIN(im)
}
end
|