File: vimoswcsinit.c

package info (click to toggle)
cpl-plugin-vimos 4.1.1%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 28,228 kB
  • sloc: ansic: 169,271; cpp: 16,177; sh: 4,344; python: 3,678; makefile: 1,138; perl: 10
file content (1044 lines) | stat: -rw-r--r-- 33,747 bytes parent folder | download | duplicates (5)
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
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
/*** File libwcs/wcsinitm.c
 *** March 21, 2001
 *** By Doug Mink, dmink@cfa.harvard.edu
 *** Harvard-Smithsonian Center for Astrophysics

 * Module:	wcsinit.c (World Coordinate Systems)
 * Purpose:	Convert FITS WCS to pixels and vice versa:
 * Subroutine:	wcsinit (hstring) sets a WCS structure from an image header
 * Subroutine:	wcsninit (hstring,lh) sets a WCS structure from fixed-length header
 * Subroutine:	wcsinitn (hstring, name) sets a WCS structure for specified WCS
 * Subroutine:	wcsninitn (hstring,lh, name) sets a WCS structure for specified WCS
 * Subroutine:	wcsinitc (hstring, mchar) sets a WCS structure if multiple
 * Subroutine:	wcsninitc (hstring,lh,mchar) sets a WCS structure if multiple
 * Subroutine:	wcschar (hstring, name) returns suffix for specifed WCS
 * Subroutine:	wcseq (hstring, wcs) set radecsys and equinox from image header
 * Subroutine:	wcseqm (hstring, wcs, mchar) set radecsys and equinox if multiple

 * Copyright:   2001 Smithsonian Astrophysical Observatory
 *              You may do anything you like with this file except remove
 *              this copyright.  The Smithsonian Astrophysical Observatory
 *              makes no representations about the suitability of this
 *              software for any purpose.  It is provided "as is" without
 *              express or implied warranty.

 */

#include <string.h>		/* strstr, NULL */
#include <stdio.h>		/* stderr */
#include <math.h>
#include "vimoswcs.h"
#include "fitshead.h"
#ifndef VMS
#include <stdlib.h>
#endif

static void vimoswcseq();
static void vimoswcseqm();
void vimoswcsrotset();
char vimoswcserrmsg[80];
char vimoswcschar();

/* set up a WCS structure from a FITS image header lhstring bytes long 
 * for a specified WCS name */

struct WorldCoor *
vimoswcsninitn (

char	*hstring,	/* character string containing FITS header information
		   	in the format <keyword>= <value> [/ <comment>] */
int	lhstring,	/* Length of FITS header in bytes */
char	*name)		/* character string with identifying name of WCS */
{
    hlength (hstring, lhstring);
    return (vimoswcsinitn (hstring, name));
}


/* set up a WCS structure from a FITS image header for specified WCSNAME */

struct WorldCoor *
vimoswcsinitn (

char	*hstring,	/* character string containing FITS header information
			   in the format <keyword>= <value> [/ <comment>] */
char	*name)		/* character string with identifying name of WCS */
{
    char mchar;		/* Suffix character for one of multiple WCS */

    mchar = vimoswcschar (hstring, name);
    if (mchar == '_') {
	fprintf (stderr, "WCSINITN: WCS name %s not matched in FITS header\n",
		 name);
	return (NULL);
	}
    return (vimoswcsinitc (hstring, mchar));
}


/* WCSCHAR -- Find the letter for a specific WCS conversion */

char
vimoswcschar (hstring, name)

char	*hstring;	/* character string containing FITS header information
		   	in the format <keyword>= <value> [/ <comment>] */
char	*name;		/* Name of WCS conversion to be matched
			   (case-independent) */
{
    char *upname, *uppercase();
    char cvimoswcs;
    int ivimoswcs;
    char keyword[12];
    char *upval, value[72];

    /* If no WCS character, return 0 */
    if (name == NULL)
	return ((char) 0);

    /* Convert input name to upper case */
    upname = uppercase (name);

    /* If single character name, return that character */
    if (strlen (upname) == 1)
	return (upname[0]);

    /* Try to match input name to available WCSNAME names in header */
    strcpy (keyword, "WCSNAME");
    keyword[8] = (char) 0;
    for (ivimoswcs = 0; ivimoswcs < 27; ivimoswcs++) {
	if (ivimoswcs > 0)
	    cvimoswcs = (char) (64 + ivimoswcs);
	else
	    cvimoswcs = (char) 0;
	keyword[7] = cvimoswcs;
	if (hgets (hstring, keyword, 72, value)) {
	    upval = uppercase (value);
	    if (!strcmp (upval, upname))
		return (cvimoswcs);
	    }
	}
    return ('_');
}


/* Make string of arbitrary case all uppercase */

char *
uppercase (string)
char *string;
{
    int lstring, i;
    char *upstring;
    lstring = strlen (string);
    upstring = (char *) calloc (1,lstring+1);
    for (i = 0; i < lstring; i++) {
	if (string[i] > 96 && string[i] < 123)
	    upstring[i] = string[i] - 32;
	else
	    upstring[i] = string[i];
	}
    upstring[lstring] = (char) 0;
    return (upstring);
}


/* set up a WCS structure from a FITS image header lhstring bytes long */

struct WorldCoor *
vimoswcsninit (

char	*hstring,	/* character string containing FITS header information
		   	in the format <keyword>= <value> [/ <comment>] */
int	lhstring)	/* Length of FITS header in bytes */
{
    char mchar;		/* Suffix character for one of multiple WCS */
    mchar = (char) 0;
    hlength (hstring, lhstring);
    return (vimoswcsinitc (hstring, mchar));
}


/* set up a WCS structure from a FITS image header lhstring bytes long */

struct WorldCoor *
vimoswcsninitc (

char	*hstring,	/* character string containing FITS header information
		   	in the format <keyword>= <value> [/ <comment>] */
int	lhstring,	/* Length of FITS header in bytes */
char	mchar)		/* Suffix character for one of multiple WCS */
{
    hlength (hstring, lhstring);
    return (vimoswcsinitc (hstring, mchar));
}


/* set up a WCS structure from a FITS image header */

struct WorldCoor *
vimoswcsinit (

char	*hstring)	/* character string containing FITS header information
			   in the format <keyword>= <value> [/ <comment>] */
{
    char mchar;		/* Suffix character for one of multiple WCS */
    mchar = (char) 0;
    return (vimoswcsinitc (hstring, mchar));
}


/* set up a WCS structure from a FITS image header for specified suffix */

struct WorldCoor *
vimoswcsinitc (

char	*hstring,	/* character string containing FITS header information
			   in the format <keyword>= <value> [/ <comment>] */
char	mchar)		/* Suffix character for one of multiple WCS */
{
    struct WorldCoor *vimoswcs;
    char ctype1[32], ctype2[32];
    char *hcoeff;		/* pointer to first coeff's in header */
    char decsign;
    double rah,ram,ras, dsign,decd,decm,decs;
    double dec_deg,ra_hours, secpix, ra0, ra1, dec0, dec1;
    double cdelt1, cdelt2, cd[4], pc[16];
    char keyword[16], keycdelt[16];
    int ieq, i, naxes, cd11p, cd12p, cd21p, cd22p;
    /*
    int ix1, ix2, iy1, iy2, idx1, idx2, idy1, idy2;
    double dxrefpix, dyrefpix;
    char temp[48];
    */
    char vimoswcsname[16];	/* Name of WCS depended on by current WCS */
    double mjd;
    double rot;
    int twod;
    extern int tnxinit();
    extern int platepos();
    extern int dsspos();

    vimoswcs = (struct WorldCoor *) calloc (1, sizeof(struct WorldCoor));

    /* Set WCSLIB flags so that structures will be reinitialized */
    vimoswcs->cel.flag = 0;
    vimoswcs->lin.flag = 0;
    vimoswcs->vimoswcsl.flag = 0;

    /* Initialize to no plate fit */
    vimoswcs->ncoeff1 = 0;
    vimoswcs->ncoeff2 = 0;

    /* Initialize to no CD matrix */
    cdelt1 = 0.0;
    cdelt2 = 0.0;
    cd[0] = 0.0;
    cd[1] = 0.0;
    cd[2] = 0.0;
    cd[3] = 0.0;
    pc[0] = 0.0;
    vimoswcs->rotmat = 0;
    vimoswcs->rot = 0.0;

    /* Header parameters independent of projection */
    naxes = 0;
    hgeti4 (hstring, "NAXIS", &naxes);
    if (naxes < 1) {
	setvimoswcserr ("WCSINIT: No NAXIS keyword");
	vimoswcsfree (vimoswcs);
	return (NULL);
	}
    vimoswcs->naxes = naxes;
    vimoswcs->lin.naxis = naxes;
    vimoswcs->nxpix = 0;
    hgetr8 (hstring, "NAXIS1", &vimoswcs->nxpix);
    if (vimoswcs->nxpix < 1) {
	setvimoswcserr ("WCSINIT: No NAXIS1 keyword");
	vimoswcsfree (vimoswcs);
	return (NULL);
	}
    vimoswcs->nypix = 0;
    hgetr8 (hstring, "NAXIS2", &vimoswcs->nypix);
    hgets (hstring, "INSTRUME", 16, vimoswcs->instrument);
    hgeti4 (hstring, "DETECTOR", &vimoswcs->detector);
    vimoswcs->vimoswcsproj = getdefvimoswcs();
    for (i = 0; i < 16; i++) vimoswcs->pc[i] = 0.0;
    for (i = 0; i < naxes; i++) vimoswcs->pc[(i*naxes)+i] = 1.0;

    /* If the current world coordinate system depends on another, set it now */
    sprintf (keyword,"WCSDEP%c",mchar);
    if (hgets (hstring, keyword, 16, vimoswcsname)) {
	if ((vimoswcs->vimoswcs = vimoswcsinitn (hstring, vimoswcsname)) == NULL) {
	    setvimoswcserr ("WCSINIT: depended on WCS could not be set");
	    vimoswcsfree (vimoswcs);
	    return (NULL);
	    }
	}
    else
	vimoswcs->vimoswcs = NULL;

    /* World coordinate system reference coordinate information */
    sprintf (keyword,"CTYPE1%c",mchar);
    if (hgets (hstring, keyword, 16, ctype1)) {

	/* Read second coordinate type */
	sprintf (keyword,"CTYPE2%c",mchar);
	strcpy (ctype2, ctype1);
	if (!hgets (hstring, keyword, 16, ctype2))
	    twod = 0;
	else
	    twod = 1;

	/* Read third and fourth coordinate types, if present */
	strcpy (vimoswcs->ctype[0], ctype1);
	strcpy (vimoswcs->ctype[1], ctype2);
	strcpy (vimoswcs->ctype[2], "");
	sprintf (keyword,"CTYPE3%c",mchar);
	hgets (hstring, keyword, 9, vimoswcs->ctype[2]);
	strcpy (vimoswcs->ctype[3], "");
	sprintf (keyword,"CTYPE4%c",mchar);
	hgets (hstring, keyword, 9, vimoswcs->ctype[3]);

	/* Set projection type in WCS data structure */
	if (vimoswcstype (vimoswcs, ctype1, ctype2)) {
	    vimoswcsfree (vimoswcs);
	    return (NULL);
	    }

	/* Get units, if present, for linear coordinates */
	if (vimoswcs->prjcode == VIMOSWCS_LIN) {
	    sprintf (keyword,"CUNIT1%c",mchar);
	    if (!hgets (hstring, keyword, 16, vimoswcs->units[0])) {
		if (!mgets (hstring, "WAT1", "units", 16, vimoswcs->units[0])) {
		    vimoswcs->units[0][0] = 0;
		    }
		}
	    if (twod) {
		sprintf (keyword,"CUNIT2%c",mchar);
		if (!hgets (hstring, "CUNIT2", 16, vimoswcs->units[1])) {
		    if (!mgets (hstring, "WAT2", "units", 16, vimoswcs->units[1])) {
			vimoswcs->units[1][0] = 0;
			}
		    }
		}
	    }

	/* Reference pixel coordinates and WCS value */
	vimoswcs->crpix[0] = 1.0;
	sprintf (keyword,"CRPIX1%c",mchar);
	hgetr8 (hstring, keyword, &vimoswcs->crpix[0]);
	vimoswcs->crpix[1] = 1.0;
	sprintf (keyword,"CRPIX2%c",mchar);
	hgetr8 (hstring, keyword, &vimoswcs->crpix[1]);
	vimoswcs->xrefpix = vimoswcs->crpix[0];
	vimoswcs->yrefpix = vimoswcs->crpix[1];
	vimoswcs->crval[0] = 0.0;
	sprintf (keyword,"CRVAL1%c",mchar);
	hgetr8 (hstring, keyword, &vimoswcs->crval[0]);
	vimoswcs->crval[1] = 0.0;
	sprintf (keyword,"CRVAL2%c",mchar);
	hgetr8 (hstring, keyword, &vimoswcs->crval[1]);
	if (vimoswcs->sysvimoswcs == VIMOSWCS_NPOLE)
	    vimoswcs->crval[1] = 90.0 - vimoswcs->crval[1];
	if (vimoswcs->sysvimoswcs == VIMOSWCS_SPA)
	    vimoswcs->crval[1] = vimoswcs->crval[1] - 90.0;
	vimoswcs->xref = vimoswcs->crval[0];
	vimoswcs->yref = vimoswcs->crval[1];
	if (vimoswcs->coorflip) {
	    vimoswcs->cel.ref[0] = vimoswcs->crval[1];
	    vimoswcs->cel.ref[1] = vimoswcs->crval[0];
	    }
	else {
	    vimoswcs->cel.ref[0] = vimoswcs->crval[0];
	    vimoswcs->cel.ref[1] = vimoswcs->crval[1];
	    }
	vimoswcs->longpole = 999.0;
	sprintf (keyword,"LONPOLE%c",mchar);
	hgetr8 (hstring, keyword, &vimoswcs->longpole);
	vimoswcs->cel.ref[2] = vimoswcs->longpole;
	vimoswcs->latpole = 999.0;
	sprintf (keyword,"LATPOLE%c",mchar);
	hgetr8 (hstring, keyword, &vimoswcs->latpole);
	vimoswcs->cel.ref[3] = vimoswcs->latpole;
	vimoswcs->lin.crpix = vimoswcs->crpix;
	vimoswcs->lin.cdelt = vimoswcs->cdelt;
	vimoswcs->lin.pc = vimoswcs->pc;

	/* Projection constants (this should be projection-dependent */
	vimoswcs->prj.r0 = 0.0;
	sprintf (keyword,"PROJR0%c", mchar);
	hgetr8 (hstring, keyword, &vimoswcs->prj.r0);
	for (i = 1; i < 10; i++) {
	    vimoswcs->prj.p[i] = 0.0;
	    sprintf (keyword,"PV%d%c",i, mchar);
	    vimoswcs->prj.p[i] = 0.0;
	    hgetr8 (hstring, keyword, &vimoswcs->prj.p[i]);
	    }

	/* Use polynomial fit instead of projection, if present */
	vimoswcs->ncoeff1 = 0;
	vimoswcs->ncoeff2 = 0;
	sprintf (keyword,"CD1_1%c",mchar);
	cd11p = hgetr8 (hstring,keyword,&cd[0]);
	sprintf (keyword,"CD1_2%c",mchar);
	cd12p = hgetr8 (hstring,keyword,&cd[1]);
	sprintf (keyword,"CD2_1%c",mchar);
	cd21p = hgetr8 (hstring,keyword,&cd[2]);
	sprintf (keyword,"CD2_2%c",mchar);
	cd22p = hgetr8 (hstring,keyword,&cd[3]);
	sprintf (keycdelt, "CDELT1%c", mchar);
	if (vimoswcs->vimoswcsproj != VIMOSWCS_OLD &&
	    (hcoeff = ksearch (hstring,"CO1_1")) != NULL) {
	    vimoswcs->prjcode = VIMOSWCS_PLT;
	    (void)strcpy (vimoswcs->ptype, "PLATE");
	    for (i = 0; i < 20; i++) {
		sprintf (keyword,"CO1_%d", i+1);
		vimoswcs->x_coeff[i] = 0.0;
		if (hgetr8 (hcoeff, keyword, &vimoswcs->x_coeff[i]))
		    vimoswcs->ncoeff1 = i + 1;
		}
	    hcoeff = ksearch (hstring,"CO2_1");
	    for (i = 0; i < 20; i++) {
		sprintf (keyword,"CO2_%d",i+1);
		vimoswcs->y_coeff[i] = 0.0;
		if (hgetr8 (hcoeff, keyword, &vimoswcs->y_coeff[i]))
		    vimoswcs->ncoeff2 = i + 1;
		}

	    /* Compute a nominal scale factor */
	    platepos (vimoswcs->crpix[0], vimoswcs->crpix[1], vimoswcs, &ra0, &dec0);
	    platepos (vimoswcs->crpix[0], vimoswcs->crpix[1]+1.0, vimoswcs, &ra1, &dec1);
	    vimoswcs->yinc = dec1 - dec0;
	    vimoswcs->xinc = -vimoswcs->yinc;

	    /* Compute image rotation angle */
	    vimoswcs->vimoswcson = 1;
	    vimoswcsrotset (vimoswcs);
	    rot = degrad (vimoswcs->rot);

	    /* Compute scale at reference pixel */
	    platepos (vimoswcs->crpix[0], vimoswcs->crpix[1], vimoswcs, &ra0, &dec0);
	    platepos (vimoswcs->crpix[0]+cos(rot),
		      vimoswcs->crpix[1]+sin(rot), vimoswcs, &ra1, &dec1);
	    vimoswcs->cdelt[0] = -vimoswcsdist (ra0, dec0, ra1, dec1);
	    vimoswcs->xinc = vimoswcs->cdelt[0];
	    platepos (vimoswcs->crpix[0]+sin(rot),
		      vimoswcs->crpix[1]+cos(rot), vimoswcs, &ra1, &dec1);
	    vimoswcs->cdelt[1] = vimoswcsdist (ra0, dec0, ra1, dec1);
	    vimoswcs->yinc = vimoswcs->cdelt[1];

	    /* Set CD matrix from header */
	    vimoswcs->cd[0] = cd[0];
	    vimoswcs->cd[1] = cd[1];
	    vimoswcs->cd[2] = cd[2];
	    vimoswcs->cd[3] = cd[3];
	    (void) vimosmatinv (2, vimoswcs->cd, vimoswcs->dc);
	    }

	/* Else use CD matrix, if present */
	else if (cd11p || cd12p || cd21p || cd22p) {
	    vimoswcs->rotmat = 1;
	    vimoswcscdset (vimoswcs, cd);
	    }

	/* Else get scaling from CDELT1 and CDELT2 */
	else if (hgetr8 (hstring, keycdelt, &cdelt1) != 0) {
	    sprintf (keyword, "CDELT2%c", mchar);
	    hgetr8 (hstring, keyword, &cdelt2);

	    /* If CDELT1 or CDELT2 is 0 or missing */
	    if (cdelt1 == 0.0 || (vimoswcs->nypix > 1 && cdelt2 == 0.0)) {
		if (ksearch (hstring,"SECPIX") != NULL ||
		    ksearch (hstring,"PIXSCALE") != NULL ||
		    ksearch (hstring,"PIXSCAL1") != NULL ||
		    ksearch (hstring,"SECPIX1") != NULL) {
		    secpix = 0.0;
		    hgetr8 (hstring,"SECPIX",&secpix);
		    if (secpix == 0.0)
			hgetr8 (hstring,"PIXSCALE",&secpix);
		    if (secpix == 0.0) {
			hgetr8 (hstring,"SECPIX1",&secpix);
			if (secpix != 0.0) {
			    if (cdelt1 == 0.0)
				cdelt1 = -secpix / 3600.0;
			    if (cdelt2 == 0.0) {
				hgetr8 (hstring,"SECPIX2",&secpix);
				cdelt2 = secpix / 3600.0;
				}
			    }
			else {
			    if (cdelt1 == 0.0) {
				hgetr8 (hstring,"PIXSCAL1",&secpix);
				cdelt1 = -secpix / 3600.0;
				}
			    if (cdelt2 == 0.0) {
				hgetr8 (hstring,"PIXSCAL2",&secpix);
				cdelt2 = secpix / 3600.0;
				}
			    }
			}
		    else {
			if (cdelt1 == 0.0)
			    cdelt1 = -secpix / 3600.0;
			if (cdelt2 == 0.0)
			    cdelt2 = secpix / 3600.0;
			}
		    }
		}
	    if (cdelt2 == 0.0 && vimoswcs->nypix > 1)
		cdelt2 = -cdelt1;
	    vimoswcs->cdelt[2] = 1.0;
	    vimoswcs->cdelt[3] = 1.0;

	    /* Use rotation matrix, if present */
	    for (i = 0; i < 16; i++)
		vimoswcs->pc[i] = 0.0;
	    if (!mchar && hgetr8 (hstring,"PC001001",&pc[0]) != 0) {
		hgetr8 (hstring,"PC001002",&pc[1]);
		if (naxes < 3) {
		    hgetr8 (hstring,"PC002001",&pc[2]);
		    pc[3] = vimoswcs->pc[0];
		    hgetr8 (hstring,"PC002002",&pc[3]);
		    }
		if (naxes == 3) {
		    hgetr8 (hstring,"PC001003",&pc[2]);
		    hgetr8 (hstring,"PC002001",&pc[3]);
		    pc[4] = vimoswcs->pc[0];
		    hgetr8 (hstring,"PC002002",&pc[4]);
		    hgetr8 (hstring,"PC002003",&pc[5]);
		    hgetr8 (hstring,"PC003001",&pc[6]);
		    hgetr8 (hstring,"PC003002",&pc[7]);
		    pc[8] = 1.0;
		    hgetr8 (hstring,"PC003003",&pc[8]);
		    }
		if (naxes > 3) {
		    hgetr8 (hstring,"PC001003",&pc[2]);
		    hgetr8 (hstring,"PC001004",&pc[3]);
		    hgetr8 (hstring,"PC002001",&pc[4]);
		    pc[5] = vimoswcs->pc[0];
		    hgetr8 (hstring,"PC002002",&pc[5]);
		    hgetr8 (hstring,"PC002003",&pc[6]);
		    hgetr8 (hstring,"PC002004",&pc[7]);
		    hgetr8 (hstring,"PC003001",&pc[8]);
		    hgetr8 (hstring,"PC003002",&pc[9]);
		    pc[10] = 1.0;
		    hgetr8 (hstring,"PC003003",&pc[10]);
		    hgetr8 (hstring,"PC003004",&pc[11]);
		    hgetr8 (hstring,"PC004001",&pc[12]);
		    hgetr8 (hstring,"PC004002",&pc[13]);
		    hgetr8 (hstring,"PC004003",&pc[14]);
		    pc[15] = 1.0;
		    hgetr8 (hstring,"PC004004",&pc[15]);
		    }
		vimoswcspcset (vimoswcs, cdelt1, cdelt2, pc);
		}

	    /* Otherwise, use CROTAn */
	    else if (!mchar) {
		rot = 0.0;
		sprintf (keyword,"CROTA2%c",mchar);
		hgetr8 (hstring,keyword,&rot);
		if (rot == 0.) {
		    sprintf (keyword,"CROTA1%c",mchar);
		    hgetr8 (hstring,keyword,&rot);
		    }
		vimoswcsdeltset (vimoswcs, cdelt1, cdelt2, rot);
		}
	    }

	/* If no scaling is present, set to 1 per pixel, no rotation */
	else {
	    vimoswcs->xinc = 1.0;
	    vimoswcs->yinc = 1.0;
	    vimoswcs->cdelt[0] = 1.0;
	    vimoswcs->cdelt[1] = 1.0;
	    vimoswcs->rot = 0.0;
	    vimoswcs->rotmat = 0;
	    setvimoswcserr ("WCSINIT: setting CDELT to 1");
	    }

	/* Initialize TNX, defaulting to TAN if there is a problem */
	if (vimoswcs->prjcode == VIMOSWCS_TNX) {
	    if (tnxinit (hstring, vimoswcs)) {
		vimoswcs->ctype[1][6] = 'A';
		vimoswcs->ctype[1][7] = 'N';
		vimoswcs->prjcode = VIMOSWCS_TAN;
		}
	    }

	/* Coordinate reference frame, equinox, and epoch */
	if (strncmp (vimoswcs->ptype,"LINEAR",6) &&
	    strncmp (vimoswcs->ptype,"PIXEL",5))
	    vimoswcseqm (hstring,vimoswcs, mchar);
	else {
	    vimoswcs->degout = -1;
	    vimoswcs->ndec = 5;
	    }

	vimoswcs->vimoswcson = 1;
	}

    /* Plate solution coefficients */
    else if (ksearch (hstring,"PLTRAH") != NULL) {
	vimoswcs->prjcode = VIMOSWCS_DSS;
	hcoeff = ksearch (hstring,"PLTRAH");
	hgetr8 (hcoeff,"PLTRAH",&rah);
	hgetr8 (hcoeff,"PLTRAM",&ram);
	hgetr8 (hcoeff,"PLTRAS",&ras);
	ra_hours = rah + (ram / (double)60.0) + (ras / (double)3600.0);
	vimoswcs->plate_ra = hrrad (ra_hours);
	decsign = '+';
	hgets (hcoeff,"PLTDECSN", 1, &decsign);
	if (decsign == '-')
	    dsign = -1.;
	else
	    dsign = 1.;
	hgetr8 (hcoeff,"PLTDECD",&decd);
	hgetr8 (hcoeff,"PLTDECM",&decm);
	hgetr8 (hcoeff,"PLTDECS",&decs);
	dec_deg = dsign * (decd+(decm/(double)60.0)+(decs/(double)3600.0));
	vimoswcs->plate_dec = degrad (dec_deg);
	hgetr8 (hstring,"EQUINOX",&vimoswcs->equinox);
	hgeti4 (hstring,"EQUINOX",&ieq);
	if (ieq == 1950)
	    strcpy (vimoswcs->radecsys,"FK4");
	else
	    strcpy (vimoswcs->radecsys,"FK5");
	vimoswcs->epoch = vimoswcs->equinox;
	hgetr8 (hstring,"EPOCH",&vimoswcs->epoch);
	(void)sprintf (vimoswcs->center,"%2.0f:%2.0f:%5.3f %c%2.0f:%2.0f:%5.3f %s",
		       rah,ram,ras,decsign,decd,decm,decs,vimoswcs->radecsys);
	hgetr8 (hstring,"PLTSCALE",&vimoswcs->plate_scale);
	hgetr8 (hstring,"XPIXELSZ",&vimoswcs->x_pixel_size);
	hgetr8 (hstring,"YPIXELSZ",&vimoswcs->y_pixel_size);
	hgetr8 (hstring,"CNPIX1",&vimoswcs->x_pixel_offset);
	hgetr8 (hstring,"CNPIX2",&vimoswcs->y_pixel_offset);
	hcoeff = ksearch (hstring,"PPO1");
	for (i = 0; i < 6; i++) {
	    sprintf (keyword,"PPO%d", i+1);
	    vimoswcs->ppo_coeff[i] = 0.0;
	    hgetr8 (hcoeff,keyword,&vimoswcs->ppo_coeff[i]);
	    }
	hcoeff = ksearch (hstring,"AMDX1");
	for (i = 0; i < 20; i++) {
	    sprintf (keyword,"AMDX%d", i+1);
	    vimoswcs->x_coeff[i] = 0.0;
	    hgetr8 (hcoeff, keyword, &vimoswcs->x_coeff[i]);
	    }
	hcoeff = ksearch (hstring,"AMDY1");
	for (i = 0; i < 20; i++) {
	    sprintf (keyword,"AMDY%d",i+1);
	    vimoswcs->y_coeff[i] = 0.0;
	    hgetr8 (hcoeff, keyword, &vimoswcs->y_coeff[i]);
	    }
	vimoswcs->vimoswcson = 1;
	(void)strcpy (vimoswcs->c1type, "RA");
	(void)strcpy (vimoswcs->c2type, "DEC");
	(void)strcpy (vimoswcs->ptype, "DSS");
	vimoswcs->degout = 0;
	vimoswcs->ndec = 3;

	/* Compute a nominal reference pixel at the image center */
	strcpy (vimoswcs->ctype[0], "RA---DSS");
	strcpy (vimoswcs->ctype[1], "DEC--DSS");
	vimoswcs->crpix[0] = 0.5 * vimoswcs->nxpix;
	vimoswcs->crpix[1] = 0.5 * vimoswcs->nypix;
	vimoswcs->xrefpix = vimoswcs->crpix[0];
	vimoswcs->yrefpix = vimoswcs->crpix[1];
	dsspos (vimoswcs->crpix[0], vimoswcs->crpix[1], vimoswcs, &ra0, &dec0);
	vimoswcs->crval[0] = ra0;
	vimoswcs->crval[1] = dec0;
	vimoswcs->xref = vimoswcs->crval[0];
	vimoswcs->yref = vimoswcs->crval[1];

	/* Compute a nominal scale factor */
	dsspos (vimoswcs->crpix[0], vimoswcs->crpix[1]+1.0, vimoswcs, &ra1, &dec1);
	vimoswcs->yinc = dec1 - dec0;
	vimoswcs->xinc = -vimoswcs->yinc;

	/* Compute image rotation angle */
	vimoswcs->vimoswcson = 1;
	vimoswcsrotset (vimoswcs);
	rot = degrad (vimoswcs->rot);

	/* Compute image scale at center */
	dsspos (vimoswcs->crpix[0]+cos(rot),
		vimoswcs->crpix[1]+sin(rot), vimoswcs, &ra1, &dec1);
	vimoswcs->cdelt[0] = -vimoswcsdist (ra0, dec0, ra1, dec1);
	dsspos (vimoswcs->crpix[0]+sin(rot),
		vimoswcs->crpix[1]+cos(rot), vimoswcs, &ra1, &dec1);
	vimoswcs->cdelt[1] = vimoswcsdist (ra0, dec0, ra1, dec1);

	/* Set all other image scale parameters */
	vimoswcsdeltset (vimoswcs, vimoswcs->cdelt[0], vimoswcs->cdelt[1], vimoswcs->rot);
	}

    /* Approximate world coordinate system if plate scale is known */
    else if (ksearch (hstring,"SECPIX") != NULL ||
	     ksearch (hstring,"PIXSCALE") != NULL ||
	     ksearch (hstring,"PIXSCAL1") != NULL ||
	     ksearch (hstring,"SECPIX1") != NULL) {
	secpix = 0.0;
	hgetr8 (hstring,"SECPIX",&secpix);
	if (secpix == 0.0)
	    hgetr8 (hstring,"PIXSCALE",&secpix);
	if (secpix == 0.0) {
	    hgetr8 (hstring,"SECPIX1",&secpix);
	    if (secpix != 0.0) {
		cdelt1 = -secpix / 3600.0;
		hgetr8 (hstring,"SECPIX2",&secpix);
		cdelt2 = secpix / 3600.0;
		}
	    else {
		hgetr8 (hstring,"PIXSCAL1",&secpix);
		cdelt1 = -secpix / 3600.0;
		hgetr8 (hstring,"PIXSCAL2",&secpix);
		cdelt2 = secpix / 3600.0;
		}
	    }
	else {
	    cdelt2 = secpix / 3600.0;
	    cdelt1 = -cdelt2;
	    }

	/* Get rotation angle from the header, if it's there */
	rot = 0.0;
	hgetr8 (hstring,"CROTA1", &rot);
	if (vimoswcs->rot == 0.)
	    hgetr8 (hstring,"CROTA2", &rot);

	/* Set CD and PC matrices */
	vimoswcsdeltset (vimoswcs, cdelt1, cdelt2, rot);

	/* By default, set reference pixel to center of image */
	vimoswcs->crpix[0] = vimoswcs->nxpix * 0.5;
	vimoswcs->crpix[1] = vimoswcs->nypix * 0.5;

	/* Get reference pixel from the header, if it's there */
	if (ksearch (hstring,"CRPIX1") != NULL) {
	    hgetr8 (hstring,"CRPIX1",&vimoswcs->crpix[0]);
	    hgetr8 (hstring,"CRPIX2",&vimoswcs->crpix[1]);
	    }

	/* Use center of detector array as reference pixel
	else if (ksearch (hstring,"DETSIZE") != NULL ||
		 ksearch (hstring,"DETSEC") != NULL) {
	    char *ic;
	    hgets (hstring, "DETSIZE", 32, temp);
	    ic = strchr (temp, ':');
	    if (ic != NULL)
		*ic = ' ';
	    ic = strchr (temp, ',');
	    if (ic != NULL)
		*ic = ' ';
	    ic = strchr (temp, ':');
	    if (ic != NULL)
		*ic = ' ';
	    ic = strchr (temp, ']');
	    if (ic != NULL)
		*ic = (char) 0;
	    sscanf (temp, "%d %d %d %d", &idx1, &idx2, &idy1, &idy2);
	    dxrefpix = 0.5 * (double) (idx1 + idx2 - 1);
	    dyrefpix = 0.5 * (double) (idy1 + idy2 - 1);
	    hgets (hstring, "DETSEC", 32, temp);
	    ic = strchr (temp, ':');
	    if (ic != NULL)
		*ic = ' ';
	    ic = strchr (temp, ',');
	    if (ic != NULL)
		*ic = ' ';
	    ic = strchr (temp, ':');
	    if (ic != NULL)
		*ic = ' ';
	    ic = strchr (temp, ']');
	    if (ic != NULL)
		*ic = (char) 0;
	    sscanf (temp, "%d %d %d %d", &ix1, &ix2, &iy1, &iy2);
	    vimoswcs->crpix[0] = dxrefpix - (double) (ix1 - 1);
	    vimoswcs->crpix[1] = dyrefpix - (double) (iy1 - 1);
	    } */
	vimoswcs->xrefpix = vimoswcs->crpix[0];
	vimoswcs->yrefpix = vimoswcs->crpix[1];

	vimoswcs->crval[0] = 0.0;
	if (!hgetra (hstring,"RA",&vimoswcs->crval[0])) {
	    setvimoswcserr ("WCSINIT: No RA with SECPIX, no WCS");
	    vimoswcsfree (vimoswcs);
	    return (NULL);
	    }
	vimoswcs->crval[1] = 0.0;
	if (!hgetdec (hstring,"DEC",&vimoswcs->crval[1])) {
	    setvimoswcserr ("WCSINIT No DEC with SECPIX, no WCS");
	    vimoswcsfree (vimoswcs);
	    return (NULL);
	    }
	vimoswcs->xref = vimoswcs->crval[0];
	vimoswcs->yref = vimoswcs->crval[1];
	vimoswcs->coorflip = 0;

	vimoswcs->cel.ref[0] = vimoswcs->crval[0];
	vimoswcs->cel.ref[1] = vimoswcs->crval[1];
	vimoswcs->cel.ref[2] = 999.0;
	hgetr8 (hstring,"LONGPOLE",&vimoswcs->cel.ref[2]);
	vimoswcs->cel.ref[3] = 999.0;
	hgetr8 (hstring,"LATPOLE",&vimoswcs->cel.ref[3]);
	    
	(void) vimoswcstype (vimoswcs, "RA---TAN", "DEC--TAN");
	vimoswcs->coorflip = 0;
	vimoswcs->degout = 0;
	vimoswcs->ndec = 3;

	/* Coordinate reference frame and equinox */
	vimoswcseq (hstring,vimoswcs);

	/* Epoch of image (from observation date, if possible) */
	if (hgetr8 (hstring, "MJD-OBS", &mjd))
	    vimoswcs->epoch = 1900.0 + (mjd - 15019.81352) / 365.242198781;
	else if (!hgetdate (hstring,"DATE-OBS",&vimoswcs->epoch)) {
	    if (!hgetdate (hstring,"DATE",&vimoswcs->epoch)) {
		if (!hgetr8 (hstring,"EPOCH",&vimoswcs->epoch))
		    vimoswcs->epoch = vimoswcs->equinox;
		}
	    }
	vimoswcs->vimoswcson = 1;
	}

    else {
	if (mchar == (char) 0)
	    setvimoswcserr ("WCSINIT: No image scale");
	else
	    setvimoswcserr ("WCSINIT: No image scale for WCS");
	vimoswcsfree (vimoswcs);
	return (NULL);
	}

    vimoswcs->lin.crpix = vimoswcs->crpix;
    vimoswcs->lin.cdelt = vimoswcs->cdelt;
    vimoswcs->lin.pc = vimoswcs->pc;
    if (strlen (vimoswcs->radecsys) == 0 || vimoswcs->prjcode == VIMOSWCS_LIN)
	strcpy (vimoswcs->radecsys, "LINEAR");
    vimoswcs->sysvimoswcs = vimoswcscsys (vimoswcs->radecsys);

    if (vimoswcs->sysvimoswcs == VIMOSWCS_B1950)
	strcpy (vimoswcs->radecout, "FK4");
    else if (vimoswcs->sysvimoswcs == VIMOSWCS_J2000)
	strcpy (vimoswcs->radecout, "FK5");
    else
	strcpy (vimoswcs->radecout, vimoswcs->radecsys);
    vimoswcs->sysout = vimoswcscsys (vimoswcs->radecout);
    vimoswcs->eqout = vimoswcs->equinox;
    strcpy (vimoswcs->radecin, vimoswcs->radecsys);
    vimoswcs->sysin = vimoswcscsys (vimoswcs->radecin);
    vimoswcs->eqin = vimoswcs->equinox;
    vimoswcs->printsys = 1;
    vimoswcs->tabsys = 0;
    vimoswcs->linmode = 0;

    /* Initialize special WCS commands */
    setvimoswcscom (vimoswcs);

    return (vimoswcs);
}


static void
vimoswcseq (hstring, vimoswcs)

char	*hstring;	/* character string containing FITS header information
		   	in the format <keyword>= <value> [/ <comment>] */
struct WorldCoor *vimoswcs;	/* World coordinate system data structure */
{
    char mchar;		/* Suffix character for one of multiple WCS */
    mchar = (char) 0;
    vimoswcseqm (hstring, vimoswcs, mchar);
    return;
}


static void
vimoswcseqm (hstring, vimoswcs, mchar)

char	*hstring;	/* character string containing FITS header information
		   	in the format <keyword>= <value> [/ <comment>] */
struct WorldCoor *vimoswcs;	/* World coordinate system data structure */
char	mchar;		/* Suffix character for one of multiple WCS */
{
    int ieq = 0;
    int eqhead = 0;
    char systring[32], eqstring[32];
    char radeckey[16], eqkey[16];

    /* Set equinox from EQUINOX, EPOCH, or RADECSYS; default to 2000 */
    systring[0] = 0;
    eqstring[0] = 0;
    if (mchar)
	sprintf (eqkey, "EQUINOX%c", mchar);
    else
	strcpy (eqkey, "EQUINOX");
    if (!hgets (hstring, eqkey, 16, eqstring))
	hgets (hstring, "EQUINOX", 16, eqstring);
    if (mchar)
	sprintf (radeckey,"RADESYS%c", mchar);
    else
	strcpy (radeckey, "RADECSYS");
    if (!hgets (hstring, radeckey, 16, systring))
	hgets (hstring, "RADECSYS", 16, systring);

    if (eqstring[0] == 'J') {
	vimoswcs->equinox = atof (eqstring+1);
	ieq = atoi (eqstring+1);
	strcpy (systring, "FK5");
	}
    else if (eqstring[0] == 'B') {
	vimoswcs->equinox = atof (eqstring+1);
	ieq = atoi (eqstring+1);
	strcpy (systring, "FK4");
	}
    else if (hgeti4 (hstring, eqkey, &ieq)) {
	hgetr8 (hstring, eqkey, &vimoswcs->equinox);
	eqhead = 1;
	}

    else if (hgeti4 (hstring,"EPOCH",&ieq)) {
	if (ieq == 0) {
	    ieq = 1950;
	    vimoswcs->equinox = 1950.0;
	    }
	else {
            hgetr8 (hstring,"EPOCH",&vimoswcs->equinox);
	    eqhead = 1;
	    }
	}

    else if (systring[0] != (char)0) {
	if (!strncmp (systring,"FK4",3)) {
	    vimoswcs->equinox = 1950.0;
	    ieq = 1950;
	    }
	else if (!strncmp (systring,"ICRS",4)) {
	    vimoswcs->equinox = 2000.0;
	    ieq = 2000;
	    }
	else if (!strncmp (systring,"FK5",3)) {
	    vimoswcs->equinox = 2000.0;
	    ieq = 2000;
	    }
	else if (!strncmp (systring,"GAL",3)) {
	    vimoswcs->equinox = 2000.0;
	    ieq = 2000;
	    }
	else if (!strncmp (systring,"ECL",3)) {
	    vimoswcs->equinox = 2000.0;
	    ieq = 2000;
	    }
	}

    if (ieq == 0) {
	vimoswcs->equinox = 2000.0;
	ieq = 2000;
	if (vimoswcs->c1type[0] == 'R' || vimoswcs->c1type[0] == 'D')
	    strcpy (systring,"FK5");
	}

    /* Epoch of image (from observation date, if possible) */
    if (!hgetdate (hstring,"DATE-OBS",&vimoswcs->epoch)) {
	if (!hgetdate (hstring,"DATE",&vimoswcs->epoch)) {
	    if (!hgetr8 (hstring,"EPOCH",&vimoswcs->epoch))
		vimoswcs->epoch = vimoswcs->equinox;
	    }
	}
    if (vimoswcs->epoch == 0.0)
	vimoswcs->epoch = vimoswcs->equinox;

    /* Set coordinate system from keyword, if it is present */
    if (systring[0] == (char) 0)
	 hgets (hstring, radeckey, 16, systring);
    if (systring[0] != (char) 0) {
	strcpy (vimoswcs->radecsys,systring);
	if (!eqhead) {
	    if (!strncmp (vimoswcs->radecsys,"FK4",3))
		vimoswcs->equinox = 1950.0;
	    else if (!strncmp (vimoswcs->radecsys,"FK5",3))
		vimoswcs->equinox = 2000.0;
	    else if (!strncmp (vimoswcs->radecsys,"ICRS",4))
		vimoswcs->equinox = 2000.0;
	    else if (!strncmp (vimoswcs->radecsys,"GAL",3) && ieq == 0)
		vimoswcs->equinox = 2000.0;
	    }
	}

    /* Set galactic coordinates if GLON or GLAT are in C1TYPE */
    else if (vimoswcs->c1type[0] == 'G')
	strcpy (vimoswcs->radecsys,"GALACTIC");
    else if (vimoswcs->c1type[0] == 'E')
	strcpy (vimoswcs->radecsys,"ECLIPTIC");
    else if (vimoswcs->c1type[0] == 'S')
	strcpy (vimoswcs->radecsys,"SGALACTC");
    else if (vimoswcs->c1type[0] == 'H')
	strcpy (vimoswcs->radecsys,"HELIOECL");
    else if (vimoswcs->c1type[0] == 'A')
	strcpy (vimoswcs->radecsys,"ALTAZ");
    else if (vimoswcs->c1type[0] == 'L')
	strcpy (vimoswcs->radecsys,"LINEAR");

    /* Otherwise set coordinate system from equinox */
    /* Systemless coordinates cannot be translated using b, j, or g commands */
    else if (vimoswcs->sysvimoswcs != VIMOSWCS_NPOLE) {
	if (ieq > 1980)
	    strcpy (vimoswcs->radecsys,"FK5");
	else
	    strcpy (vimoswcs->radecsys,"FK4");
	}
    vimoswcs->sysvimoswcs = vimoswcscsys (vimoswcs->radecsys);

    return;
}

/* Jun 11 1998	Split off header-dependent WCS initialization from other subs
 * Jun 15 1998	Fix major bug in wcsinit() when synthesizing WCS from header
 * Jun 18 1998	Fix bug in CD initialization; split PC initialization off
 * Jun 18 1998	Split PC initialization off into subroutine wcspcset()
 * Jun 24 1998	Set equinox from RADECSYS only if EQUINOX and EPOCH not present
 * Jul  6 1998  Read third and fourth axis CTYPEs
 * Jul  7 1998  Initialize eqin and eqout to equinox,
 * Jul  9 1998	Initialize rotation matrices correctly
 * Jul 13 1998	Initialize rotation, scale for polynomial and DSS projections
 * Aug  6 1998	Fix CROTA computation for DSS projection
 * Sep  4 1998	Fix CROTA, CDELT computation for DSS and polynomial projections
 * Sep 14 1998	If DATE-OBS not found, check for DATE
 * Sep 14 1998	If B or J present in EQUINOX, use that info to set system
 * Sep 29 1998  Initialize additional WCS commands from the environment
 * Sep 29 1998	Fix bug which read DATE as number rather than formatted date
 * Dec  2 1998	Read projection constants from header (bug fix)
 *
 * Feb  9 1999	Set rotation angle correctly when using DSS projection
 * Feb 19 1999	Fill in CDELTs from scale keyword if absent or zero
 * Feb 19 1999	Add PIXSCALE as possible default arcseconds per pixel
 * Apr  7 1999	Add error checking for NAXIS and NAXIS1 keywords
 * Apr  7 1999	Do not set systring if epoch is 0 and not RA/Dec
 * Jul  8 1999	In RADECSYS, use FK5 and FK4 instead of J2000 and B1950
 * Oct 15 1999	Free wcs using wcsfree()
 * Oct 20 1999	Add multiple WCS support using new subroutine names
 * Oct 21 1999	Delete unused variables after lint; declare dsspos()
 * Nov  9 1999	Add wcschar() to check WCSNAME keywords for desired WCS
 * Nov  9 1999	Check WCSPREx keyword to find out if chained WCS's
 *
 * Jan  6 1999	Add wcsinitn() to initialize from specific WCSNAME
 * Jan 24 2000  Set CD matrix from header even if using polynomial
 * Jan 27 2000  Fix MJD to epoch conversion for when MJD-OBS is the only date
 * Jan 28 2000  Set CD matrix for DSS projection, too
 * Jan 28 2000	Use wcsproj instead of oldwcs
 * Dec 18 2000	Fix error in hgets() call in wcschar()
 * Dec 29 2000  Compute inverse CD matrix even if polynomial solution
 * Dec 29 2000  Add PROJR0 keyword for WCSLIB projections
 * Dec 29 2000  Use CDi_j matrix if any elements are present
 *
 * Jan 31 2001	Fix to allow 1D WCS
 * Jan 31 2001	Treat single character WCS name as WCS character
 * Feb 20 2001	Implement WCSDEPx nested WCS's
 * Feb 23 2001	Initialize all 4 terms of CD matrix
 * Feb 28 2001	Fix bug which read CRPIX1 into CRPIX2
 * Mar 20 2001	Compare mchar to (char)0, not null
 * Mar 21 2001	Move ic declaration into commented out code
 */