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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
|
include "../../lib/astrom.h"
include "../../lib/aimpars.h"
include <pkg/cq.h>
# AT_HEDIT -- Add a set of standard keywords to the image header.
procedure at_hedit (im, res, at, update, verbose)
pointer im #I the input image descriptor
pointer res #I the image results descriptor
pointer at #I the astrometry package descriptor
bool update #I update the header ?
bool verbose #I verbose mode ?
begin
if (res != NULL)
call at_dbkey (im, res, update, verbose)
if (at != NULL)
call at_parkey (im, at, update, verbose)
end
# AT_DBKEY -- Add a set of standard keywords required by astrometric
# reductions to the image header. New keywords will only be added if
# the keyword name is defined in the in the image survey database and the
# standard keyword does not already exist in the image header, or if the
# keyword has a default value in the image survey database.
procedure at_dbkey (im, res, update, verbose)
pointer im #I the input image descriptor
pointer res #I the image results descriptor
bool update #I update the header ?
bool verbose #I verbose mode ?
pointer sp, kfield, kname, kvalue, kunits
int i, nkey, ktype
int cq_istati(), cq_kinfon(), imaccf(), at_akeyword()
bool streq()
begin
call smark (sp)
call salloc (kfield, CQ_SZ_QPNAME, TY_CHAR)
call salloc (kname, CQ_SZ_QPNAME, TY_CHAR)
call salloc (kvalue, CQ_SZ_QPVALUE, TY_CHAR)
call salloc (kunits, CQ_SZ_QPUNITS, TY_CHAR)
# Loop over the keywords.
nkey = cq_istati (res, CQNIMPARS)
do i = 1, nkey {
# Get the keyword information.
if (cq_kinfon (res, i, Memc[kfield], CQ_SZ_QPNAME, Memc[kname],
CQ_SZ_QPNAME, Memc[kvalue], CQ_SZ_QPVALUE, ktype, Memc[kunits],
CQ_SZ_QPUNITS) != i)
next
# The keyword names is INDEF.
if (streq (Memc[kname], "INDEF")) {
# Go to next keyword if the keyword value is also INDEF.
if (streq (Memc[kvalue], "INDEF"))
next
# Add keyword with its default value if it does not exist.
if (imaccf (im, Memc[kfield]) == NO) {
if (at_akeyword (im, Memc[kfield], Memc[kvalue], ktype,
Memc[kunits], update) == OK) {
#if (update || verbose) {
if (verbose) {
call printf (
" Adding survey keyword %s = %s to header\n")
call pargstr (Memc[kfield])
call pargstr (Memc[kvalue])
}
#} else if (update || verbose) {
} else if (verbose) {
call printf (
" Error adding survey keyword %s to header\n")
call pargstr (Memc[kfield])
}
#} else if (update || verbose) {
} else if (verbose) {
call printf (
" Warning survey keyword %s already exists\n")
call pargstr (Memc[kfield])
}
# The keyword name is defined and it exists in the image.
} else if (imaccf (im, Memc[kname]) == YES) {
# Add the new keyword with the old keyword value to the image
call imgstr (im, Memc[kname], Memc[kvalue], CQ_SZ_QPVALUE)
if (imaccf (im, Memc[kfield]) == NO) {
if (at_akeyword (im, Memc[kfield], Memc[kvalue], ktype,
Memc[kunits], update) == OK) {
#if (update || verbose) {
if (verbose) {
call printf (
" Adding survey keyword %s = %s to header\n")
call pargstr (Memc[kfield])
call pargstr (Memc[kvalue])
}
#} else if (update || verbose) {
} else if (verbose) {
call printf (
" Error adding survey keyword %s to header\n")
call pargstr (Memc[kfield])
}
#} else if (update || verbose) {
} else if (verbose) {
call printf (
" Warning survey keyword %s already exists\n")
call pargstr (Memc[kfield])
}
# The keywords names does not exist in the image.
#} else if (update || verbose) {
} else if (verbose) {
call printf (
" Warning survey keyword %s value %s does not exist\n")
call pargstr (Memc[kfield])
call pargstr (Memc[kname])
}
}
call sfree (sp)
end
# AT_PARKEY -- Add a set of standard keywords required by astrometric
# reductions to the image header. New keywords will only be added if
# the keyword name is defined in default AIMPARS parameter file and the
# standard keyword does not already exist in the image header, or if the
# keyword has a default value in the AIMPARS parameter file.
procedure at_parkey (im, at, update, verbose)
pointer im #I the input image descriptor
pointer at #I the astrometry package descriptor
bool update #I update the header ?
bool verbose #I verbose mode ?
double dval
real rval
pointer imst, sym, sp, kfield, kvalue
int i, key
double at_statd(), imgetd()
real at_statr(), imgetr()
pointer at_statp(), stfind()
int at_wrdstr(), imaccf()
bool streq()
errchk imgetd(), imgetr(), imgstr()
begin
if (at_statp (at, PIMPARS) == NULL)
return
imst = at_statp (at, IMST)
if (imst == NULL)
return
call smark (sp)
call salloc (kfield, SZ_FNAME, TY_CHAR)
call salloc (kvalue, SZ_FNAME, TY_CHAR)
# Loop over the keywords.
do i = 1, AT_NIMFIELDS {
# Get the parameter name.
key = at_wrdstr (i, Memc[kfield], SZ_FNAME, AT_IMFIELDS)
switch (key) {
case HDR_OBSERVAT:
sym = stfind (imst, Memc[kfield])
if (sym != NULL) {
if (streq (AT_IMSTKVAL(sym), "INDEF"))
call at_stats (at, OBSERVAT, Memc[kvalue], SZ_FNAME)
else iferr (call imgstr (im, AT_IMSTKVAL(sym),
Memc[kvalue], SZ_FNAME))
call at_stats (at, OBSERVAT, Memc[kvalue], SZ_FNAME)
} else
call at_stats (at, OBSERVAT, Memc[kvalue], SZ_FNAME)
if (! streq (Memc[kvalue], "INDEF")) {
if (imaccf (im, Memc[kfield]) == YES) {
#if (update || verbose) {
if (verbose) {
call printf (" Keyword %s already exists\n")
call pargstr (Memc[kfield])
}
} else {
if (update)
call imastr (im, Memc[kfield], Memc[kvalue])
if (verbose) {
call printf (
" Adding default keyword %s = %s to header\n")
call pargstr (Memc[kfield])
call pargstr (Memc[kvalue])
}
}
}
case HDR_ESITELNG:
sym = stfind (imst, Memc[kfield])
if (sym != NULL) {
if (streq (AT_IMSTKVAL(sym), "INDEF"))
dval = at_statd (at, ESITELNG)
else iferr (dval = imgetd (im, AT_IMSTKVAL(sym)))
dval = at_statd (at, ESITELNG)
} else
dval = at_statd (at, ESITELNG)
if (! IS_INDEFD(dval)) {
if (imaccf (im, Memc[kfield]) == YES) {
#if (update || verbose) {
if (verbose) {
call printf (" Keyword %s already exists\n")
call pargstr (Memc[kfield])
}
} else {
if (update)
call imaddd (im, Memc[kfield], dval)
#if (update || verbose) {
if (verbose) {
call printf (
" Adding default keyword %s = %h to header\n")
call pargstr (Memc[kfield])
call pargd (dval)
}
}
}
case HDR_ESITELAT:
sym = stfind (imst, Memc[kfield])
if (sym != NULL) {
if (streq (AT_IMSTKVAL(sym), "INDEF"))
dval = at_statd (at, ESITELAT)
else iferr (dval = imgetd (im, AT_IMSTKVAL(sym)))
dval = at_statd (at, ESITELAT)
} else
dval = at_statd (at, ESITELAT)
if (! IS_INDEFD(dval)) {
if (imaccf (im, Memc[kfield]) == YES) {
#if (update || verbose) {
if (verbose) {
call printf (" Keyword %s already exists\n")
call pargstr (Memc[kfield])
}
} else {
if (update)
call imaddd (im, Memc[kfield], dval)
#if (update || verbose) {
if (verbose) {
call printf (
" Adding default keyword %s = %h to header\n")
call pargstr (Memc[kfield])
call pargd (dval)
}
}
}
case HDR_ESITEALT:
sym = stfind (imst, Memc[kfield])
if (sym != NULL) {
if (streq (AT_IMSTKVAL(sym), "INDEF"))
rval = at_statr (at, ESITEALT)
else iferr (rval = imgetr (im, AT_IMSTKVAL(sym)))
rval = at_statr (at, ESITEALT)
} else
rval = at_statr (at, ESITEALT)
if (! IS_INDEFR(rval)) {
if (imaccf (im, Memc[kfield]) == YES) {
#if (update || verbose) {
if (verbose) {
call printf (" Keyword %s already exists\n")
call pargstr (Memc[kfield])
}
} else {
if (update)
call imaddr (im, Memc[kfield], rval)
#if (update || verbose) {
if (verbose) {
call printf (
" Adding default keyword %s = %0.1f to header\n")
call pargstr (Memc[kfield])
call pargr (rval)
}
}
}
case HDR_ESITETZ:
sym = stfind (imst, Memc[kfield])
if (sym != NULL) {
if (streq (AT_IMSTKVAL(sym), "INDEF"))
rval = at_statr (at, ESITETZ)
else iferr (rval = imgetr (im, AT_IMSTKVAL(sym)))
rval = at_statr (at, ESITETZ)
} else
rval = at_statr (at, ESITETZ)
if (! IS_INDEFR(rval)) {
if (imaccf (im, Memc[kfield]) == YES) {
#if (update || verbose) {
if (verbose) {
call printf (" Keyword %s already exists\n")
call pargstr (Memc[kfield])
}
} else {
if (update)
call imaddr (im, Memc[kfield], rval)
if (verbose) {
call printf (
" Adding default keyword %s = %0.1f to header\n")
call pargstr (Memc[kfield])
call pargr (rval)
}
}
}
case HDR_EMJDOBS:
sym = stfind (imst, Memc[kfield])
if (sym != NULL) {
if (streq (AT_IMSTKVAL(sym), "INDEF"))
dval = at_statd (at, EMJDOBS)
else iferr (dval = imgetd (im, AT_IMSTKVAL(sym)))
dval = at_statd (at, EMJDOBS)
} else
dval = at_statd (at, EMJDOBS)
if (! IS_INDEFD(dval)) {
if (imaccf (im, Memc[kfield]) == YES) {
#if (update || verbose) {
if (verbose) {
call printf (" Keyword %s already exists\n")
call pargstr (Memc[kfield])
}
} else {
if (update)
call imaddd (im, Memc[kfield], dval)
#if (update || verbose) {
if (verbose) {
call printf (
" Adding default keyword %s = %0.5f to header\n")
call pargstr (Memc[kfield])
call pargd (dval)
}
}
}
case HDR_EDATAMIN:
sym = stfind (imst, Memc[kfield])
if (sym != NULL) {
if (streq (AT_IMSTKVAL(sym), "INDEF"))
rval = at_statr (at, EDATAMIN)
else iferr (rval = imgetr (im, AT_IMSTKVAL(sym)))
rval = at_statr (at, EDATAMIN)
} else
rval = at_statr (at, EDATAMIN)
if (! IS_INDEFR(rval)) {
if (imaccf (im, Memc[kfield]) == YES) {
#if (update || verbose) {
if (verbose) {
call printf (" Keyword %s already exists\n")
call pargstr (Memc[kfield])
}
} else {
if (update)
call imaddr (im, Memc[kfield], rval)
#if (update || verbose) {
if (verbose) {
call printf (
" Adding default keyword %s = %g to header\n")
call pargstr (Memc[kfield])
call pargr (rval)
}
}
}
case HDR_EDATAMAX:
sym = stfind (imst, Memc[kfield])
if (sym != NULL) {
if (streq (AT_IMSTKVAL(sym), "INDEF"))
rval = at_statr (at, EDATAMAX)
else iferr (rval = imgetr (im, AT_IMSTKVAL(sym)))
rval = at_statr (at, EDATAMAX)
} else
rval = at_statr (at, EDATAMAX)
if (! IS_INDEFR(rval)) {
if (imaccf (im, Memc[kfield]) == YES) {
#if (update || verbose) {
if (verbose) {
call printf (" Keyword %s already exists\n")
call pargstr (Memc[kfield])
}
} else {
if (update)
call imaddr (im, Memc[kfield], rval)
#if (update || verbose) {
if (verbose) {
call printf (
" Adding default keyword %s = %g to image\n")
call pargstr (Memc[kfield])
call pargr (rval)
}
}
}
case HDR_EGAIN:
sym = stfind (imst, Memc[kfield])
if (sym != NULL) {
if (streq (AT_IMSTKVAL(sym), "INDEF"))
rval = at_statr (at, EGAIN)
else iferr (rval = imgetr (im, AT_IMSTKVAL(sym)))
rval = at_statr (at, EGAIN)
} else
rval = at_statr (at, EGAIN)
if (! IS_INDEFR(rval)) {
if (imaccf (im, Memc[kfield]) == YES) {
#if (update || verbose) {
if (verbose) {
call printf (" Keyword %s already exists\n")
call pargstr (Memc[kfield])
}
} else {
if (update)
call imaddr (im, Memc[kfield], rval)
#if (update || verbose) {
if (verbose) {
call printf (
" Adding default keyword %s = %0.1f to image\n")
call pargstr (Memc[kfield])
call pargr (rval)
}
}
}
case HDR_ERDNOISE:
sym = stfind (imst, Memc[kfield])
if (sym != NULL) {
if (streq (AT_IMSTKVAL(sym), "INDEF"))
rval = at_statr (at, ERDNOISE)
else iferr (rval = imgetr (im, AT_IMSTKVAL(sym)))
rval = at_statr (at, ERDNOISE)
} else
rval = at_statr (at, ERDNOISE)
if (! IS_INDEFR(rval)) {
if (imaccf (im, Memc[kfield]) == YES) {
#if (update || verbose) {
if (verbose) {
call printf (" Keyword %s already exists\n")
call pargstr (Memc[kfield])
}
} else {
if (update)
call imaddr (im, Memc[kfield], rval)
#if (update || verbose) {
if (verbose) {
call printf (
" Adding default keyword %s = %0.1f to image\n")
call pargstr (Memc[kfield])
call pargr (rval)
}
}
}
case HDR_EWAVLEN:
sym = stfind (imst, Memc[kfield])
if (sym != NULL) {
if (streq (AT_IMSTKVAL(sym), "INDEF"))
rval = at_statr (at, EWAVLEN)
else iferr (rval = imgetr (im, AT_IMSTKVAL(sym)))
rval = at_statr (at, EWAVLEN)
} else
rval = at_statr (at, EWAVLEN)
if (! IS_INDEFR(rval)) {
if (imaccf (im, Memc[kfield]) == YES) {
#if (update || verbose) {
if (verbose) {
call printf (" Keyword %s already exists\n")
call pargstr (Memc[kfield])
}
} else {
if (update)
call imaddr (im, Memc[kfield], rval)
#if (update || verbose) {
if (verbose) {
call printf (
" Adding default keyword %s = %0.1f to header\n")
call pargstr (Memc[kfield])
call pargr (rval)
}
}
}
case HDR_ETEMP:
sym = stfind (imst, Memc[kfield])
if (sym != NULL) {
if (streq (AT_IMSTKVAL(sym), "INDEF"))
rval = at_statr (at, ETEMP)
else iferr (rval = imgetr (im, AT_IMSTKVAL(sym)))
rval = at_statr (at, ETEMP)
} else
rval = at_statr (at, ETEMP)
if (! IS_INDEFR(rval)) {
if (imaccf (im, Memc[kfield]) == YES) {
#if (update || verbose) {
if (verbose) {
call printf (" Keyword %s already exists\n")
call pargstr (Memc[kfield])
}
} else {
if (update)
call imaddr (im, Memc[kfield], rval)
#if (update || verbose) {
if (verbose) {
call printf (
" Adding default keyword %s to image header\n")
call pargstr (Memc[kfield])
call pargr (rval)
}
}
}
case HDR_EPRESS:
sym = stfind (imst, Memc[kfield])
if (sym != NULL) {
if (streq (AT_IMSTKVAL(sym), "INDEF"))
rval = at_statr (at, EPRESS)
else iferr (rval = imgetr (im, AT_IMSTKVAL(sym)))
rval = at_statr (at, EPRESS)
} else
rval = at_statr (at, EPRESS)
if (! IS_INDEFR(rval)) {
if (imaccf (im, Memc[kfield]) == YES) {
#if (update || verbose) {
if (verbose) {
call printf (" Keyword %s already exists\n")
call pargstr (Memc[kfield])
}
} else {
if (update)
call imaddr (im, Memc[kfield], rval)
#if (update || verbose) {
if (verbose) {
call printf (
" Adding default keyword %s = %g to header\n")
call pargstr (Memc[kfield])
call pargr (rval)
}
}
}
default:
;
}
}
call sfree (sp)
end
# AT_AKEYWORD -- Add a new keyword to the image header. Note that at present
# nothing is done with the units information although this may be used in the
# future.
int procedure at_akeyword (im, kname, kvalue, ktype, kunits, update)
pointer im #I the image descriptor
char kname[ARB] #I the image keyword name
char kvalue[ARB] #I the image keyword value
int ktype #I the image keyword data type
char kunits[ARB] #I the image keyword units (not used)
bool update #I actually update the header ?
double dval
real rval
long lval
int ip, stat
int ctod(), ctor(), ctol()
begin
stat = OK
switch (ktype) {
case TY_DOUBLE:
ip = 1
if (ctod (kvalue, ip, dval) > 0) {
if (update)
call imaddd (im, kname, dval)
} else
stat = ERR
case TY_REAL:
ip = 1
if (ctor (kvalue, ip, rval) > 0) {
if (update)
call imaddr (im, kname, rval)
} else
stat = ERR
case TY_LONG, TY_INT, TY_SHORT:
ip = 1
if (ctol (kvalue, ip, lval) > 0) {
if (update)
call imaddl (im, kname, lval)
} else
stat = ERR
default:
if (update)
call imastr (im, kname, kvalue)
}
return (stat)
end
|