File: structwcsprm.html

package info (click to toggle)
python-pywcs 1.11-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 11,888 kB
  • sloc: ansic: 31,441; lex: 6,170; fortran: 6,080; sh: 3,478; python: 3,122; sed: 408; makefile: 76
file content (1523 lines) | stat: -rw-r--r-- 84,554 bytes parent folder | download
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
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>WCSLIB 4.8.2: wcsprm Struct Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.6 -->
<div class="navigation" id="top">
  <div class="tabs">
    <ul>
      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
      <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
      <li class="current"><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
  <div class="tabs">
    <ul>
      <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
      <li><a href="functions.html"><span>Data&nbsp;Fields</span></a></li>
    </ul>
  </div>
</div>
<div class="contents">
<h1>wcsprm Struct Reference</h1><!-- doxytag: class="wcsprm" -->Coordinate transformation parameters.  
<a href="#_details">More...</a>
<p>
<code>#include &lt;<a class="el" href="wcs_8h-source.html">wcs.h</a>&gt;</code>
<p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Data Fields</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#35bff8de85e5a8892e1b68db69ca7a68">flag</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#70cac2976524a5f0a6aeb2b3fcb95834">naxis</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#adad828f07e3affd1511e533b00da19f">crpix</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#3495a5b0ef529706ec9a0af5c3163d63">pc</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#de355cdce054938cfa36e06ef9c51446">cdelt</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#7a0a1ce2432cef9377f70367ea1fd18c">crval</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">char(*&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#a0ae3f3605566be2e85e51e5b52c3b52">cunit</a> )[72]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">char(*&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#e1f462606974e1324cd38f143eda691e">ctype</a> )[72]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#f8f679749574250cb9ba09e1f05fab5d">lonpole</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#5e04127eb71da6e1350467a7a6d236f5">latpole</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#da1b98589c0127d34766b4c6b5d6cb41">restfrq</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#5d0b60efc55a61525b9beb26ead4859e">restwav</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#0e31f1eef036258c2957da9b985945dd">npv</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#912eed291f15134e8cfb8750acc6c4bc">npvmax</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">struct <a class="el" href="structpvcard.html">pvcard</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#04fbd6ed1b338e225f2291523e64be2c">pv</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#4c89dafecd036e169f96cb84d53ace65">nps</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#42052d557bdef2c5640a6d19b6d9ed8b">npsmax</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">struct <a class="el" href="structpscard.html">pscard</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#9eca2fcc30058310d020181ae16bf256">ps</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#fd2f31d782b3becce4ca2f9b495ec0b1">cd</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#f124a4259475ea355ced38e73a05363a">crota</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#8b3a65921acc0dabfa4efd19a003ea6e">altlin</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#c3c9c869bef4e4850dfd9762b33ce908">velref</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">char&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#e7609283351ea46484690f873f8ea9c3">alt</a> [4]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#9ee8fb568ca75874bab00825b768f8ca">colnum</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#7320fc64e7705cc7495eba07482b5c55">colax</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">char(*&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#922f0f57b8c35cad3d01ceedeba01d4b">cname</a> )[72]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#49eee6450b1a646d3fe01b8965a63af4">crder</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#15485177ea8bbacefc29a5a5cba98c8f">csyer</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">char&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#e6b40e2adeb31414871c7cae68619d63">dateavg</a> [72]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">char&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#ad387ccbd7847672b5dc2223d9124120">dateobs</a> [72]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#88b55f6c8d122f3ff63532de85698864">equinox</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#0730c37f09502eb364f4e7d7addb8ab8">mjdavg</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#c0cb013b1505fb7abd4167ac0db0e0aa">mjdobs</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#6a88e64207df5007151c2c25028ce3eb">obsgeo</a> [3]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">char&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#65801f93622504672ee3faf8f2110e48">radesys</a> [72]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">char&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#c089e5d0e3191255ceaea7f8591b27ea">specsys</a> [72]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">char&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#9eac54f497e1244c8106dd3ebba12223">ssysobs</a> [72]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#f300da5a94594a9769ab312bb56dde83">velosys</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#0936d10c2ac93d13d096b1711ac639a1">zsource</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">char&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#8715975565c8bbd0c562a32eee40fd20">ssyssrc</a> [72]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#9fd60ce9e6bc31df07ed02ce64b48be4">velangl</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">char&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#2166fb650f937d8870711d8be5986b66">wcsname</a> [72]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#94c26ce331cc876d63baeeada9820241">ntab</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#8625c0a6ff99c754566c46c2372df801">nwtb</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">struct <a class="el" href="structtabprm.html">tabprm</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#292133b2b7143b969a3af6a3f2cf3709">tab</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">struct <a class="el" href="structwtbarr.html">wtbarr</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#9063e8d0c956e9eae7f7d6f3608b9ed2">wtb</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">char&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#5b56e1b378a6ae9f8dfff5c364f0653c">lngtyp</a> [8]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">char&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#e352318ce3202dab1b5db8b9ceec7703">lattyp</a> [8]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#08098820949433d1336841d32d0b62b5">lng</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#b7f7173e6d2b1b8028a3275bdd751e79">lat</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#b9729795155b8f37afd80784fb70068b">spec</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#de8495d3ca5047eeadba5934d0bb2708">cubeface</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#b63cdcf6ff8febd1b40d0e044ca7d7ef">types</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">void *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#b253d36f0dc1716952285c6078622e66">padding</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">struct <a class="el" href="structlinprm.html">linprm</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#3224bd06f8f4d2d7d398533eb44a49e8">lin</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">struct <a class="el" href="structcelprm.html">celprm</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#c8391dd770637dbb841067996b7777ba">cel</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">struct <a class="el" href="structspcprm.html">spcprm</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#e83952aec7c1ac76c090bc89bf4eeea7">spc</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">struct <a class="el" href="structwcserr.html">wcserr</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#f54ce939604be183231f0ee006e2f8ed">err</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">void *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#603ef3ab7f3bc42cf8d8bf99b79b63ac">m_padding</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#5780880281f2f9d085d2e06919b7647a">m_flag</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#5ed753e401cda620a04adfb4ebfb8e0d">m_naxis</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#164e3852bcd2dea8b5f73e1dff79ddf5">m_crpix</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#6778d31ec5a2ee643dc5f0a8af630b03">m_pc</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#42e0ff2da3b0c1ca0a9509f787ed1951">m_cdelt</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#5072893bd9beddb33967697d501acdce">m_crval</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">char(*&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#f1cb3e68560d1ac42c620cfe3900af95">m_cunit</a> )[72]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">char((*&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#ee7f71c872491b25e1d1440e5dfa8153">m_ctype</a> )[72]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">struct <a class="el" href="structpvcard.html">pvcard</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#6a3fa7adc304567271c5cc0eda3ac986">m_pv</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">struct <a class="el" href="structpscard.html">pscard</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#042875def8cab8354c5b2c40ab9fa374">m_ps</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#7a88af56c4c978c6d4213ae1f4bec87a">m_cd</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#5444415c94c7ab0226788f5efe93221d">m_crota</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#4ed527b90d49e8365c1b727f7bec29c7">m_colax</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">char(*&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#092c11d209ecdd16bb79858c68e4d582">m_cname</a> )[72]</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#0d15534535c7f9308c9daa2cceff29e7">m_crder</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">double *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#13fab263ca03f35844fdaca289b7dfac">m_csyer</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">struct <a class="el" href="structtabprm.html">tabprm</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#e09d5bf005e3bd7ee880353e8816ceb8">m_tab</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">struct <a class="el" href="structwtbarr.html">wtbarr</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structwcsprm.html#ce7e0986c79d73bd3a0613034b71974f">m_wtb</a></td></tr>

</table>
<hr><a name="_details"></a><h2>Detailed Description</h2>
The <b>wcsprm</b> struct contains information required to transform world coordinates. It consists of certain members that must be set by the user (<em>given</em>) and others that are set by the WCSLIB routines (<em>returned</em>). Some of the former are not actually required for transforming coordinates. These are described as "auxiliary"; the struct simply provides a place to store them, though they may be used by <a class="el" href="wcshdr_8h.html#0b8372e555a2e2bcc63a11f3dc7a1bf6" title="Write out a wcsprm struct as a FITS header.">wcshdo()</a> in constructing a FITS header from a <b>wcsprm</b> struct. Some of the returned values are supplied for informational purposes and others are for internal use only as indicated.<p>
In practice, it is expected that a WCS parser would scan the FITS header to determine the number of coordinate axes. It would then use <a class="el" href="wcs_8h.html#2afc8255fde0965dddaa374463666d45" title="Default constructor for the wcsprm struct.">wcsini()</a> to allocate memory for arrays in the <b>wcsprm</b> struct and set default values. Then as it reread the header and identified each WCS keyrecord it would load the value into the relevant <b>wcsprm</b> array element. This is essentially what <a class="el" href="wcshdr_8h.html#c75623ee805ab7d43b0bba684c719a60" title="FITS WCS parser routine for image headers.">wcspih()</a> does - refer to the prologue of <a class="el" href="wcshdr_8h.html">wcshdr.h</a>. As the final step, <a class="el" href="wcs_8h.html#e5cc3f5d249755583403cdf54d2ebb91" title="Setup routine for the wcsprm struct.">wcsset()</a> is invoked, either directly or indirectly, to set the derived members of the <b>wcsprm</b> struct. <a class="el" href="wcs_8h.html#e5cc3f5d249755583403cdf54d2ebb91" title="Setup routine for the wcsprm struct.">wcsset()</a> strips off trailing blanks in all string members and null-fills the character array. <hr><h2>Field Documentation</h2>
<a class="anchor" name="35bff8de85e5a8892e1b68db69ca7a68"></a><!-- doxytag: member="wcsprm::flag" ref="35bff8de85e5a8892e1b68db69ca7a68" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#35bff8de85e5a8892e1b68db69ca7a68">wcsprm::flag</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given and returned) This flag must be set to zero whenever any of the following <b>wcsprm</b> struct members are set or changed:<p>
<ul>
<li>
<a class="el" href="structwcsprm.html#70cac2976524a5f0a6aeb2b3fcb95834">wcsprm::naxis</a> (q.v., not normally set by the user), </li>
<li>
<a class="el" href="structwcsprm.html#adad828f07e3affd1511e533b00da19f">wcsprm::crpix</a>, </li>
<li>
<a class="el" href="structwcsprm.html#3495a5b0ef529706ec9a0af5c3163d63">wcsprm::pc</a>, </li>
<li>
<a class="el" href="structwcsprm.html#de355cdce054938cfa36e06ef9c51446">wcsprm::cdelt</a>, </li>
<li>
<a class="el" href="structwcsprm.html#7a0a1ce2432cef9377f70367ea1fd18c">wcsprm::crval</a>, </li>
<li>
<a class="el" href="structwcsprm.html#a0ae3f3605566be2e85e51e5b52c3b52">wcsprm::cunit</a>, </li>
<li>
<a class="el" href="structwcsprm.html#e1f462606974e1324cd38f143eda691e">wcsprm::ctype</a>, </li>
<li>
<a class="el" href="structwcsprm.html#f8f679749574250cb9ba09e1f05fab5d">wcsprm::lonpole</a>, </li>
<li>
<a class="el" href="structwcsprm.html#5e04127eb71da6e1350467a7a6d236f5">wcsprm::latpole</a>, </li>
<li>
<a class="el" href="structwcsprm.html#da1b98589c0127d34766b4c6b5d6cb41">wcsprm::restfrq</a>, </li>
<li>
<a class="el" href="structwcsprm.html#5d0b60efc55a61525b9beb26ead4859e">wcsprm::restwav</a>, </li>
<li>
<a class="el" href="structwcsprm.html#0e31f1eef036258c2957da9b985945dd">wcsprm::npv</a>, </li>
<li>
<a class="el" href="structwcsprm.html#04fbd6ed1b338e225f2291523e64be2c">wcsprm::pv</a>, </li>
<li>
<a class="el" href="structwcsprm.html#4c89dafecd036e169f96cb84d53ace65">wcsprm::nps</a>, </li>
<li>
<a class="el" href="structwcsprm.html#9eca2fcc30058310d020181ae16bf256">wcsprm::ps</a>, </li>
<li>
<a class="el" href="structwcsprm.html#fd2f31d782b3becce4ca2f9b495ec0b1">wcsprm::cd</a>, </li>
<li>
<a class="el" href="structwcsprm.html#f124a4259475ea355ced38e73a05363a">wcsprm::crota</a>, </li>
<li>
<a class="el" href="structwcsprm.html#8b3a65921acc0dabfa4efd19a003ea6e">wcsprm::altlin</a>. </li>
</ul>
<p>
This signals the initialization routine, <a class="el" href="wcs_8h.html#e5cc3f5d249755583403cdf54d2ebb91" title="Setup routine for the wcsprm struct.">wcsset()</a>, to recompute the returned members of the <a class="el" href="structcelprm.html" title="Celestial transformation parameters.">celprm</a> struct. <a class="el" href="cel_8h.html#b0f67d1727750616f71c7bfcb3a037b6" title="Setup routine for the celprm struct.">celset()</a> will reset flag to indicate that this has been done.<p>
<b>PLEASE NOTE:</b> flag should be set to -1 when <a class="el" href="wcs_8h.html#2afc8255fde0965dddaa374463666d45" title="Default constructor for the wcsprm struct.">wcsini()</a> is called for the first time for a particular <b>wcsprm</b> struct in order to initialize memory management. It must ONLY be used on the first initialization otherwise memory leaks may result. 
</div>
</div><p>
<a class="anchor" name="70cac2976524a5f0a6aeb2b3fcb95834"></a><!-- doxytag: member="wcsprm::naxis" ref="70cac2976524a5f0a6aeb2b3fcb95834" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#70cac2976524a5f0a6aeb2b3fcb95834">wcsprm::naxis</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given or returned) Number of pixel and world coordinate elements.<p>
If <a class="el" href="wcs_8h.html#2afc8255fde0965dddaa374463666d45" title="Default constructor for the wcsprm struct.">wcsini()</a> is used to initialize the <a class="el" href="structlinprm.html" title="Linear transformation parameters.">linprm</a> struct (as would normally be the case) then it will set naxis from the value passed to it as a function argument. The user should not subsequently modify it. 
</div>
</div><p>
<a class="anchor" name="adad828f07e3affd1511e533b00da19f"></a><!-- doxytag: member="wcsprm::crpix" ref="adad828f07e3affd1511e533b00da19f" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double * <a class="el" href="structwcsprm.html#adad828f07e3affd1511e533b00da19f">wcsprm::crpix</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) Address of the first element of an array of double containing the coordinate reference pixel, <code><b>CRPIX</b>ja</code>. 
</div>
</div><p>
<a class="anchor" name="3495a5b0ef529706ec9a0af5c3163d63"></a><!-- doxytag: member="wcsprm::pc" ref="3495a5b0ef529706ec9a0af5c3163d63" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double * <a class="el" href="structwcsprm.html#3495a5b0ef529706ec9a0af5c3163d63">wcsprm::pc</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) Address of the first element of the <code><b>PC</b>i<b>_</b>ja</code> (pixel coordinate) transformation matrix. The expected order is <div class="fragment"><pre class="fragment">        <span class="keyword">struct </span><a class="code" href="structwcsprm.html" title="Coordinate transformation parameters.">wcsprm</a> wcs;
        wcs.pc = {PC1_1, PC1_2, PC2_1, PC2_2};
</pre></div><p>
This may be constructed conveniently from a 2-D array via <div class="fragment"><pre class="fragment">        <span class="keywordtype">double</span> m[2][2] = {{PC1_1, PC1_2},
                          {PC2_1, PC2_2}};
</pre></div><p>
which is equivalent to <div class="fragment"><pre class="fragment">        <span class="keywordtype">double</span> m[2][2];
        m[0][0] = PC1_1;
        m[0][1] = PC1_2;
        m[1][0] = PC2_1;
        m[1][1] = PC2_2;
</pre></div><p>
The storage order for this 2-D array is the same as for the 1-D array, whence <div class="fragment"><pre class="fragment">        wcs.pc = *m;
</pre></div><p>
would be legitimate. 
</div>
</div><p>
<a class="anchor" name="de355cdce054938cfa36e06ef9c51446"></a><!-- doxytag: member="wcsprm::cdelt" ref="de355cdce054938cfa36e06ef9c51446" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double * <a class="el" href="structwcsprm.html#de355cdce054938cfa36e06ef9c51446">wcsprm::cdelt</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) Address of the first element of an array of double containing the coordinate increments, <code><b>CDELT</b>ia</code>. 
</div>
</div><p>
<a class="anchor" name="7a0a1ce2432cef9377f70367ea1fd18c"></a><!-- doxytag: member="wcsprm::crval" ref="7a0a1ce2432cef9377f70367ea1fd18c" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double * <a class="el" href="structwcsprm.html#7a0a1ce2432cef9377f70367ea1fd18c">wcsprm::crval</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) Address of the first element of an array of double containing the coordinate reference values, <code><b>CRVAL</b>ia</code>. 
</div>
</div><p>
<a class="anchor" name="a0ae3f3605566be2e85e51e5b52c3b52"></a><!-- doxytag: member="wcsprm::cunit" ref="a0ae3f3605566be2e85e51e5b52c3b52" args=")[72]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="structwcsprm.html#a0ae3f3605566be2e85e51e5b52c3b52">wcsprm::cunit</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) Address of the first element of an array of char[72] containing the <code><b>CUNIT</b>ia</code> keyvalues which define the units of measurement of the <code><b>CRVAL</b>ia</code>, <code><b>CDELT</b>ia</code>, and <code><b>CD</b>i<b>_</b>ja</code> keywords.<p>
As <code><b>CUNIT</b>ia</code> is an optional header keyword, cunit[][72] may be left blank but otherwise is expected to contain a standard units specification as defined by WCS Paper I. Utility function <a class="el" href="wcsunits_8h.html#560462cb2a7fa7eae6b4f325c85e7911">wcsutrn()</a>, described in <a class="el" href="wcsunits_8h.html">wcsunits.h</a>, is available to translate commonly used non-standard units specifications but this must be done as a separate step before invoking <a class="el" href="wcs_8h.html#e5cc3f5d249755583403cdf54d2ebb91" title="Setup routine for the wcsprm struct.">wcsset()</a>.<p>
For celestial axes, if cunit[][72] is not blank, <a class="el" href="wcs_8h.html#e5cc3f5d249755583403cdf54d2ebb91" title="Setup routine for the wcsprm struct.">wcsset()</a> uses <a class="el" href="wcsunits_8h.html#ef5d64e333f758458b1edaa617911513">wcsunits()</a> to parse it and scale cdelt[], crval[], and cd[][*] to degrees. It then resets cunit[][72] to "deg".<p>
For spectral axes, if cunit[][72] is not blank, <a class="el" href="wcs_8h.html#e5cc3f5d249755583403cdf54d2ebb91" title="Setup routine for the wcsprm struct.">wcsset()</a> uses <a class="el" href="wcsunits_8h.html#ef5d64e333f758458b1edaa617911513">wcsunits()</a> to parse it and scale cdelt[], crval[], and cd[][*] to SI units. It then resets cunit[][72] accordingly.<p>
<a class="el" href="wcs_8h.html#e5cc3f5d249755583403cdf54d2ebb91" title="Setup routine for the wcsprm struct.">wcsset()</a> ignores cunit[][72] for other coordinate types; cunit[][72] may be used to label coordinate values.<p>
These variables accomodate the longest allowed string-valued FITS keyword, being limited to 68 characters, plus the null-terminating character. 
</div>
</div><p>
<a class="anchor" name="e1f462606974e1324cd38f143eda691e"></a><!-- doxytag: member="wcsprm::ctype" ref="e1f462606974e1324cd38f143eda691e" args=")[72]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="structwcsprm.html#e1f462606974e1324cd38f143eda691e">wcsprm::ctype</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) Address of the first element of an array of char[72] containing the coordinate axis types, <code><b>CTYPE</b>ia</code>.<p>
The ctype[][72] keyword values must be in upper case and there must be zero or one pair of matched celestial axis types, and zero or one spectral axis. The ctype[][72] strings should be padded with blanks on the right and null-terminated so that they are at least eight characters in length.<p>
These variables accomodate the longest allowed string-valued FITS keyword, being limited to 68 characters, plus the null-terminating character. 
</div>
</div><p>
<a class="anchor" name="f8f679749574250cb9ba09e1f05fab5d"></a><!-- doxytag: member="wcsprm::lonpole" ref="f8f679749574250cb9ba09e1f05fab5d" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double <a class="el" href="structwcsprm.html#f8f679749574250cb9ba09e1f05fab5d">wcsprm::lonpole</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given and returned) The native longitude of the celestial pole, <img class="formulaInl" alt="$\phi_{\mathrm p}$" src="form_5.png">, given by <code><b>LONPOLE</b>a</code> [deg] or by <b><code>PV</code>i<code>_2</code>a</b> [deg] attached to the longitude axis which takes precedence if defined, and ... 
</div>
</div><p>
<a class="anchor" name="5e04127eb71da6e1350467a7a6d236f5"></a><!-- doxytag: member="wcsprm::latpole" ref="5e04127eb71da6e1350467a7a6d236f5" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double <a class="el" href="structwcsprm.html#5e04127eb71da6e1350467a7a6d236f5">wcsprm::latpole</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given and returned) ... the native latitude of the celestial pole, <img class="formulaInl" alt="$\theta_{\mathrm p}$" src="form_6.png">, given by <code><b>LATPOLE</b>a</code> [deg] or by <b><code>PV</code>i<code>_3</code>a</b> [deg] attached to the longitude axis which takes precedence if defined.<p>
lonpole and latpole may be left to default to values set by <a class="el" href="wcs_8h.html#2afc8255fde0965dddaa374463666d45" title="Default constructor for the wcsprm struct.">wcsini()</a> (see <a class="el" href="structcelprm.html#3f9ae993e97f0e73e3f59117929eeda6">celprm::ref</a>), but in any case they will be reset by <a class="el" href="wcs_8h.html#e5cc3f5d249755583403cdf54d2ebb91" title="Setup routine for the wcsprm struct.">wcsset()</a> to the values actually used. Note therefore that if the <b>wcsprm</b> struct is reused without resetting them, whether directly or via <a class="el" href="wcs_8h.html#2afc8255fde0965dddaa374463666d45" title="Default constructor for the wcsprm struct.">wcsini()</a>, they will no longer have their default values. 
</div>
</div><p>
<a class="anchor" name="da1b98589c0127d34766b4c6b5d6cb41"></a><!-- doxytag: member="wcsprm::restfrq" ref="da1b98589c0127d34766b4c6b5d6cb41" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double <a class="el" href="structwcsprm.html#da1b98589c0127d34766b4c6b5d6cb41">wcsprm::restfrq</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) The rest frequency [Hz], and/or ... 
</div>
</div><p>
<a class="anchor" name="5d0b60efc55a61525b9beb26ead4859e"></a><!-- doxytag: member="wcsprm::restwav" ref="5d0b60efc55a61525b9beb26ead4859e" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double <a class="el" href="structwcsprm.html#5d0b60efc55a61525b9beb26ead4859e">wcsprm::restwav</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) ... the rest wavelength in vacuuo [m], only one of which need be given, the other should be set to zero. 
</div>
</div><p>
<a class="anchor" name="0e31f1eef036258c2957da9b985945dd"></a><!-- doxytag: member="wcsprm::npv" ref="0e31f1eef036258c2957da9b985945dd" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#0e31f1eef036258c2957da9b985945dd">wcsprm::npv</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) The number of entries in the <a class="el" href="structwcsprm.html#04fbd6ed1b338e225f2291523e64be2c">wcsprm::pv</a>[] array. 
</div>
</div><p>
<a class="anchor" name="912eed291f15134e8cfb8750acc6c4bc"></a><!-- doxytag: member="wcsprm::npvmax" ref="912eed291f15134e8cfb8750acc6c4bc" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#912eed291f15134e8cfb8750acc6c4bc">wcsprm::npvmax</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given or returned) The length of the <a class="el" href="structwcsprm.html#04fbd6ed1b338e225f2291523e64be2c">wcsprm::pv</a>[] array.<p>
npvmax will be set by <a class="el" href="wcs_8h.html#2afc8255fde0965dddaa374463666d45" title="Default constructor for the wcsprm struct.">wcsini()</a> if it allocates memory for <a class="el" href="structwcsprm.html#04fbd6ed1b338e225f2291523e64be2c">wcsprm::pv</a>[], otherwise it must be set by the user. See also <a class="el" href="wcs_8h.html#42b2578d76ace7ca6114d82b7ae46a89" title="Memory allocation for PVi_ma.">wcsnpv()</a>. 
</div>
</div><p>
<a class="anchor" name="04fbd6ed1b338e225f2291523e64be2c"></a><!-- doxytag: member="wcsprm::pv" ref="04fbd6ed1b338e225f2291523e64be2c" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">struct <a class="el" href="structpvcard.html">pvcard</a> * <a class="el" href="structwcsprm.html#04fbd6ed1b338e225f2291523e64be2c">wcsprm::pv</a><code> [read]</code>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given or returned) Address of the first element of an array of length npvmax of <a class="el" href="structpvcard.html" title="Store for PVi_ma keyrecords.">pvcard</a> structs. Set by <a class="el" href="wcs_8h.html#2afc8255fde0965dddaa374463666d45" title="Default constructor for the wcsprm struct.">wcsini()</a> if it allocates memory for pv[], otherwise it must be set by the user. See also <a class="el" href="wcs_8h.html#42b2578d76ace7ca6114d82b7ae46a89" title="Memory allocation for PVi_ma.">wcsnpv()</a>.<p>
As a FITS header parser encounters each <code><b>PV</b>i<b>_</b>ma</code> keyword it should load it into a <a class="el" href="structpvcard.html" title="Store for PVi_ma keyrecords.">pvcard</a> struct in the array and increment npv. <a class="el" href="wcs_8h.html#e5cc3f5d249755583403cdf54d2ebb91" title="Setup routine for the wcsprm struct.">wcsset()</a> interprets these as required.<p>
Note that, if they were not given, <a class="el" href="wcs_8h.html#e5cc3f5d249755583403cdf54d2ebb91" title="Setup routine for the wcsprm struct.">wcsset()</a> resets the entries for <b><code>PV</code>i<code>_1</code>a</b>, <b><code>PV</code>i<code>_2</code>a</b>, <b><code>PV</code>i<code>_3</code>a</b>, and <b><code>PV</code>i<code>_4</code>a</b> for longitude axis <b>i</b> to match phi_0 and theta_0 (the native longitude and latitude of the reference point), <code><b>LONPOLE</b>a</code> and <code><b>LATPOLE</b>a</code> respectively. 
</div>
</div><p>
<a class="anchor" name="4c89dafecd036e169f96cb84d53ace65"></a><!-- doxytag: member="wcsprm::nps" ref="4c89dafecd036e169f96cb84d53ace65" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#4c89dafecd036e169f96cb84d53ace65">wcsprm::nps</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) The number of entries in the <a class="el" href="structwcsprm.html#9eca2fcc30058310d020181ae16bf256">wcsprm::ps</a>[] array. 
</div>
</div><p>
<a class="anchor" name="42052d557bdef2c5640a6d19b6d9ed8b"></a><!-- doxytag: member="wcsprm::npsmax" ref="42052d557bdef2c5640a6d19b6d9ed8b" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#42052d557bdef2c5640a6d19b6d9ed8b">wcsprm::npsmax</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given or returned) The length of the <a class="el" href="structwcsprm.html#9eca2fcc30058310d020181ae16bf256">wcsprm::ps</a>[] array.<p>
npsmax will be set by <a class="el" href="wcs_8h.html#2afc8255fde0965dddaa374463666d45" title="Default constructor for the wcsprm struct.">wcsini()</a> if it allocates memory for <a class="el" href="structwcsprm.html#9eca2fcc30058310d020181ae16bf256">wcsprm::ps</a>[], otherwise it must be set by the user. See also <a class="el" href="wcs_8h.html#e790c9ce6c9b7a4845cf1c3c97b1e97a" title="Memory allocation for PSi_ma.">wcsnps()</a>. 
</div>
</div><p>
<a class="anchor" name="9eca2fcc30058310d020181ae16bf256"></a><!-- doxytag: member="wcsprm::ps" ref="9eca2fcc30058310d020181ae16bf256" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">struct <a class="el" href="structpscard.html">pscard</a> * <a class="el" href="structwcsprm.html#9eca2fcc30058310d020181ae16bf256">wcsprm::ps</a><code> [read]</code>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given or returned) Address of the first element of an array of length npsmax of <a class="el" href="structpscard.html" title="Store for PSi_ma keyrecords.">pscard</a> structs. Set by <a class="el" href="wcs_8h.html#2afc8255fde0965dddaa374463666d45" title="Default constructor for the wcsprm struct.">wcsini()</a> if it allocates memory for ps[], otherwise it must be set by the user. See also <a class="el" href="wcs_8h.html#e790c9ce6c9b7a4845cf1c3c97b1e97a" title="Memory allocation for PSi_ma.">wcsnps()</a>.<p>
As a FITS header parser encounters each <code><b>PS</b>i<b>_</b>ma</code> keyword it should load it into a <a class="el" href="structpscard.html" title="Store for PSi_ma keyrecords.">pscard</a> struct in the array and increment nps. <a class="el" href="wcs_8h.html#e5cc3f5d249755583403cdf54d2ebb91" title="Setup routine for the wcsprm struct.">wcsset()</a> interprets these as required (currently no <code><b>PS</b>i<b>_</b>ma</code> keyvalues are recognized). 
</div>
</div><p>
<a class="anchor" name="fd2f31d782b3becce4ca2f9b495ec0b1"></a><!-- doxytag: member="wcsprm::cd" ref="fd2f31d782b3becce4ca2f9b495ec0b1" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double * <a class="el" href="structwcsprm.html#fd2f31d782b3becce4ca2f9b495ec0b1">wcsprm::cd</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) For historical compatibility, the <b>wcsprm</b> struct supports two alternate specifications of the linear transformation matrix, those associated with the <code><b>CD</b>i<b>_</b>ja</code> keywords, and ... 
</div>
</div><p>
<a class="anchor" name="f124a4259475ea355ced38e73a05363a"></a><!-- doxytag: member="wcsprm::crota" ref="f124a4259475ea355ced38e73a05363a" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double * <a class="el" href="structwcsprm.html#f124a4259475ea355ced38e73a05363a">wcsprm::crota</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) ... those associated with the <code><b>CROTA</b>ia</code> keywords. Although these may not formally co-exist with <code><b>PC</b>i<b>_</b>ja</code>, the approach taken here is simply to ignore them if given in conjunction with <code><b>PC</b>i<b>_</b>ja</code>. 
</div>
</div><p>
<a class="anchor" name="8b3a65921acc0dabfa4efd19a003ea6e"></a><!-- doxytag: member="wcsprm::altlin" ref="8b3a65921acc0dabfa4efd19a003ea6e" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#8b3a65921acc0dabfa4efd19a003ea6e">wcsprm::altlin</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) altlin is a bit flag that denotes which of the <code><b>PC</b>i<b>_</b>ja</code>, <code><b>CD</b>i<b>_</b>ja</code> and <code><b>CROTA</b>ia</code> keywords are present in the header:<p>
<ul>
<li>
Bit 0: <code><b>PC</b>i<b>_</b>ja</code> is present.<p>
</li>
<li>
Bit 1: <code><b>CD</b>i<b>_</b>ja</code> is present.<p>
Matrix elements in the IRAF convention are equivalent to the product <code><b>CD</b>i<b>_</b>ja</code> = <code><b>CDELT</b>ia</code> * <code><b>PC</b>i<b>_</b>ja</code>, but the defaults differ from that of the <code><b>PC</b>i<b>_</b>ja</code> matrix. If one or more <code><b>CD</b>i<b>_</b>ja</code> keywords are present then all unspecified <code><b>CD</b>i<b>_</b>ja</code> default to zero. If no <code><b>CD</b>i<b>_</b>ja</code> (or <code><b>CROTA</b>ia</code>) keywords are present, then the header is assumed to be in <code><b>PC</b>i<b>_</b>ja</code> form whether or not any <code><b>PC</b>i<b>_</b>ja</code> keywords are present since this results in an interpretation of <code><b>CDELT</b>ia</code> consistent with the original FITS specification.<p>
While <code><b>CD</b>i<b>_</b>ja</code> may not formally co-exist with <code><b>PC</b>i<b>_</b>ja</code>, it may co-exist with <code><b>CDELT</b>ia</code> and <code><b>CROTA</b>ia</code> which are to be ignored.<p>
</li>
<li>
Bit 2: <code><b>CROTA</b>ia</code> is present.<p>
In the AIPS convention, <code><b>CROTA</b>ia</code> may only be associated with the latitude axis of a celestial axis pair. It specifies a rotation in the image plane that is applied AFTER the <code><b>CDELT</b>ia</code>; any other <code><b>CROTA</b>ia</code> keywords are ignored.<p>
<code><b>CROTA</b>ia</code> may not formally co-exist with <code><b>PC</b>i<b>_</b>ja</code>.<p>
<code><b>CROTA</b>ia</code> and <code><b>CDELT</b>ia</code> may formally co-exist with <code><b>CD</b>i<b>_</b>ja</code> but if so are to be ignored. </li>
</ul>
<p>
<code><b>CD</b>i<b>_</b>ja</code> and <code><b>CROTA</b>ia</code> keywords, if found, are to be stored in the <a class="el" href="structwcsprm.html#fd2f31d782b3becce4ca2f9b495ec0b1">wcsprm::cd</a> and <a class="el" href="structwcsprm.html#f124a4259475ea355ced38e73a05363a">wcsprm::crota</a> arrays which are dimensioned similarly to <a class="el" href="structwcsprm.html#3495a5b0ef529706ec9a0af5c3163d63">wcsprm::pc</a> and <a class="el" href="structwcsprm.html#de355cdce054938cfa36e06ef9c51446">wcsprm::cdelt</a>. FITS header parsers should use the following procedure:<p>
<ul>
<li>
Whenever a <code><b>PC</b>i<b>_</b>ja</code> keyword is encountered: <div class="fragment"><pre class="fragment"> <a class="code" href="structwcsprm.html#8b3a65921acc0dabfa4efd19a003ea6e">altlin</a> |= 1; 
</pre></div><p>
</li>
<li>
Whenever a <code><b>CD</b>i<b>_</b>ja</code> keyword is encountered: <div class="fragment"><pre class="fragment"> <a class="code" href="structwcsprm.html#8b3a65921acc0dabfa4efd19a003ea6e">altlin</a> |= 2; 
</pre></div><p>
</li>
<li>
Whenever a <code><b>CROTA</b>ia</code> keyword is encountered: <div class="fragment"><pre class="fragment"> <a class="code" href="structwcsprm.html#8b3a65921acc0dabfa4efd19a003ea6e">altlin</a> |= 4; 
</pre></div> </li>
</ul>
<p>
If none of these bits are set the <code><b>PC</b>i<b>_</b>ja</code> representation results, i.e. <a class="el" href="structwcsprm.html#3495a5b0ef529706ec9a0af5c3163d63">wcsprm::pc</a> and <a class="el" href="structwcsprm.html#de355cdce054938cfa36e06ef9c51446">wcsprm::cdelt</a> will be used as given.<p>
These alternate specifications of the linear transformation matrix are translated immediately to <code><b>PC</b>i<b>_</b>ja</code> by <a class="el" href="wcs_8h.html#e5cc3f5d249755583403cdf54d2ebb91" title="Setup routine for the wcsprm struct.">wcsset()</a> and are invisible to the lower-level WCSLIB routines. In particular, <a class="el" href="wcs_8h.html#e5cc3f5d249755583403cdf54d2ebb91" title="Setup routine for the wcsprm struct.">wcsset()</a> resets <a class="el" href="structwcsprm.html#de355cdce054938cfa36e06ef9c51446">wcsprm::cdelt</a> to unity if <code><b>CD</b>i<b>_</b>ja</code> is present (and no <code><b>PC</b>i<b>_</b>ja</code>).<p>
If <code><b>CROTA</b>ia</code> are present but none is associated with the latitude axis (and no <code><b>PC</b>i<b>_</b>ja</code> or <code><b>CD</b>i<b>_</b>ja</code>), then <a class="el" href="wcs_8h.html#e5cc3f5d249755583403cdf54d2ebb91" title="Setup routine for the wcsprm struct.">wcsset()</a> reverts to a unity <code><b>PC</b>i<b>_</b>ja</code> matrix. 
</div>
</div><p>
<a class="anchor" name="c3c9c869bef4e4850dfd9762b33ce908"></a><!-- doxytag: member="wcsprm::velref" ref="c3c9c869bef4e4850dfd9762b33ce908" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#c3c9c869bef4e4850dfd9762b33ce908">wcsprm::velref</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) AIPS velocity code <code><b>VELREF</b></code>, refer to <a class="el" href="spc_8h.html#615d3ef3a505a8be7da1578d9338d218" title="Translate AIPS-convention spectral keywords.">spcaips()</a>. 
</div>
</div><p>
<a class="anchor" name="e7609283351ea46484690f873f8ea9c3"></a><!-- doxytag: member="wcsprm::alt" ref="e7609283351ea46484690f873f8ea9c3" args="[4]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">char <a class="el" href="structwcsprm.html#e7609283351ea46484690f873f8ea9c3">wcsprm::alt</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) Character code for alternate coordinate descriptions (i.e. the '<b>a</b>' in keyword names such as <code><b>CTYPE</b>ia</code>). This is blank for the primary coordinate description, or one of the 26 upper-case letters, A-Z.<p>
An array of four characters is provided for alignment purposes, only the first is used. 
</div>
</div><p>
<a class="anchor" name="9ee8fb568ca75874bab00825b768f8ca"></a><!-- doxytag: member="wcsprm::colnum" ref="9ee8fb568ca75874bab00825b768f8ca" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#9ee8fb568ca75874bab00825b768f8ca">wcsprm::colnum</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) Where the coordinate representation is associated with an image-array column in a FITS binary table, this variable may be used to record the relevant column number.<p>
It should be set to zero for an image header or pixel list. 
</div>
</div><p>
<a class="anchor" name="7320fc64e7705cc7495eba07482b5c55"></a><!-- doxytag: member="wcsprm::colax" ref="7320fc64e7705cc7495eba07482b5c55" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int * <a class="el" href="structwcsprm.html#7320fc64e7705cc7495eba07482b5c55">wcsprm::colax</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) Address of the first element of an array of int recording the column numbers for each axis in a pixel list.<p>
The array elements should be set to zero for an image header or image array in a binary table. 
</div>
</div><p>
<a class="anchor" name="922f0f57b8c35cad3d01ceedeba01d4b"></a><!-- doxytag: member="wcsprm::cname" ref="922f0f57b8c35cad3d01ceedeba01d4b" args=")[72]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="structwcsprm.html#922f0f57b8c35cad3d01ceedeba01d4b">wcsprm::cname</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) The address of the first element of an array of char[72] containing the coordinate axis names, <code><b>CNAME</b>ia</code>.<p>
These variables accomodate the longest allowed string-valued FITS keyword, being limited to 68 characters, plus the null-terminating character. 
</div>
</div><p>
<a class="anchor" name="49eee6450b1a646d3fe01b8965a63af4"></a><!-- doxytag: member="wcsprm::crder" ref="49eee6450b1a646d3fe01b8965a63af4" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double * <a class="el" href="structwcsprm.html#49eee6450b1a646d3fe01b8965a63af4">wcsprm::crder</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) Address of the first element of an array of double recording the random error in the coordinate value, <code><b>CRDER</b>ia</code>. 
</div>
</div><p>
<a class="anchor" name="15485177ea8bbacefc29a5a5cba98c8f"></a><!-- doxytag: member="wcsprm::csyer" ref="15485177ea8bbacefc29a5a5cba98c8f" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double * <a class="el" href="structwcsprm.html#15485177ea8bbacefc29a5a5cba98c8f">wcsprm::csyer</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) Address of the first element of an array of double recording the systematic error in the coordinate value, <code><b>CSYER</b>ia</code>. 
</div>
</div><p>
<a class="anchor" name="e6b40e2adeb31414871c7cae68619d63"></a><!-- doxytag: member="wcsprm::dateavg" ref="e6b40e2adeb31414871c7cae68619d63" args="[72]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">char <a class="el" href="structwcsprm.html#e6b40e2adeb31414871c7cae68619d63">wcsprm::dateavg</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) The date of a representative mid-point of the observation in ISO format, <em>yyyy-mm-dd</em><code><b>T</b></code><em>hh:mm:ss</em>. 
</div>
</div><p>
<a class="anchor" name="ad387ccbd7847672b5dc2223d9124120"></a><!-- doxytag: member="wcsprm::dateobs" ref="ad387ccbd7847672b5dc2223d9124120" args="[72]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">char <a class="el" href="structwcsprm.html#ad387ccbd7847672b5dc2223d9124120">wcsprm::dateobs</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) The date of the start of the observation unless otherwise explained in the comment field of the <code><b>DATE-OBS</b></code> keyword, in ISO format, <em>yyyy-mm-dd</em><code><b>T</b></code><em>hh:mm:ss</em>. 
</div>
</div><p>
<a class="anchor" name="88b55f6c8d122f3ff63532de85698864"></a><!-- doxytag: member="wcsprm::equinox" ref="88b55f6c8d122f3ff63532de85698864" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double <a class="el" href="structwcsprm.html#88b55f6c8d122f3ff63532de85698864">wcsprm::equinox</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) The equinox associated with dynamical equatorial or ecliptic coordinate systems, <code><b>EQUINOX</b>a</code> (or <code><b>EPOCH</b></code> in older headers). Not applicable to ICRS equatorial or ecliptic coordinates. 
</div>
</div><p>
<a class="anchor" name="0730c37f09502eb364f4e7d7addb8ab8"></a><!-- doxytag: member="wcsprm::mjdavg" ref="0730c37f09502eb364f4e7d7addb8ab8" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double <a class="el" href="structwcsprm.html#0730c37f09502eb364f4e7d7addb8ab8">wcsprm::mjdavg</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) Modified Julian Date (MJD = JD - 2400000.5), <code><b>MJD-AVG</b></code>, corresponding to <code><b>DATE-AVG</b></code>. 
</div>
</div><p>
<a class="anchor" name="c0cb013b1505fb7abd4167ac0db0e0aa"></a><!-- doxytag: member="wcsprm::mjdobs" ref="c0cb013b1505fb7abd4167ac0db0e0aa" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double <a class="el" href="structwcsprm.html#c0cb013b1505fb7abd4167ac0db0e0aa">wcsprm::mjdobs</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) Modified Julian Date (MJD = JD - 2400000.5), <code><b>MJD-OBS</b></code>, corresponding to <code><b>DATE-OBS</b></code>. 
</div>
</div><p>
<a class="anchor" name="6a88e64207df5007151c2c25028ce3eb"></a><!-- doxytag: member="wcsprm::obsgeo" ref="6a88e64207df5007151c2c25028ce3eb" args="[3]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double <a class="el" href="structwcsprm.html#6a88e64207df5007151c2c25028ce3eb">wcsprm::obsgeo</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) Location of the observer in a standard terrestrial reference frame, <code><b>OBSGEO-X</b></code>, <code><b>OBSGEO-Y</b></code>, <code><b>OBSGEO-Z</b></code> [m]. 
</div>
</div><p>
<a class="anchor" name="65801f93622504672ee3faf8f2110e48"></a><!-- doxytag: member="wcsprm::radesys" ref="65801f93622504672ee3faf8f2110e48" args="[72]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">char <a class="el" href="structwcsprm.html#65801f93622504672ee3faf8f2110e48">wcsprm::radesys</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) The equatorial or ecliptic coordinate system type, <code><b>RADESYS</b>a</code>. 
</div>
</div><p>
<a class="anchor" name="c089e5d0e3191255ceaea7f8591b27ea"></a><!-- doxytag: member="wcsprm::specsys" ref="c089e5d0e3191255ceaea7f8591b27ea" args="[72]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">char <a class="el" href="structwcsprm.html#c089e5d0e3191255ceaea7f8591b27ea">wcsprm::specsys</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) Spectral reference frame (standard of rest), <code><b>SPECSYS</b>a</code>, and ... 
</div>
</div><p>
<a class="anchor" name="9eac54f497e1244c8106dd3ebba12223"></a><!-- doxytag: member="wcsprm::ssysobs" ref="9eac54f497e1244c8106dd3ebba12223" args="[72]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">char <a class="el" href="structwcsprm.html#9eac54f497e1244c8106dd3ebba12223">wcsprm::ssysobs</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) ... the actual frame in which there is no differential variation in the spectral coordinate across the field-of-view, <code><b>SSYSOBS</b>a</code>. 
</div>
</div><p>
<a class="anchor" name="f300da5a94594a9769ab312bb56dde83"></a><!-- doxytag: member="wcsprm::velosys" ref="f300da5a94594a9769ab312bb56dde83" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double <a class="el" href="structwcsprm.html#f300da5a94594a9769ab312bb56dde83">wcsprm::velosys</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) The relative radial velocity [m/s] between the observer and the selected standard of rest in the direction of the celestial reference coordinate, <code><b>VELOSYS</b>a</code>. 
</div>
</div><p>
<a class="anchor" name="0936d10c2ac93d13d096b1711ac639a1"></a><!-- doxytag: member="wcsprm::zsource" ref="0936d10c2ac93d13d096b1711ac639a1" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double <a class="el" href="structwcsprm.html#0936d10c2ac93d13d096b1711ac639a1">wcsprm::zsource</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) The redshift, <code><b>ZSOURCE</b>a</code>, of the source, and ... 
</div>
</div><p>
<a class="anchor" name="8715975565c8bbd0c562a32eee40fd20"></a><!-- doxytag: member="wcsprm::ssyssrc" ref="8715975565c8bbd0c562a32eee40fd20" args="[72]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">char <a class="el" href="structwcsprm.html#8715975565c8bbd0c562a32eee40fd20">wcsprm::ssyssrc</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) ... the spectral reference frame (standard of rest) in which this was measured, <code><b>SSYSSRC</b>a</code>. 
</div>
</div><p>
<a class="anchor" name="9fd60ce9e6bc31df07ed02ce64b48be4"></a><!-- doxytag: member="wcsprm::velangl" ref="9fd60ce9e6bc31df07ed02ce64b48be4" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double <a class="el" href="structwcsprm.html#9fd60ce9e6bc31df07ed02ce64b48be4">wcsprm::velangl</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) The angle [deg] that should be used to decompose an observed velocity into radial and transverse components. 
</div>
</div><p>
<a class="anchor" name="2166fb650f937d8870711d8be5986b66"></a><!-- doxytag: member="wcsprm::wcsname" ref="2166fb650f937d8870711d8be5986b66" args="[72]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">char <a class="el" href="structwcsprm.html#2166fb650f937d8870711d8be5986b66">wcsprm::wcsname</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(Given, auxiliary) The name given to the coordinate representation, <code><b>WCSNAME</b>a</code>. This variable accomodates the longest allowed string-valued FITS keyword, being limited to 68 characters, plus the null-terminating character. 
</div>
</div><p>
<a class="anchor" name="94c26ce331cc876d63baeeada9820241"></a><!-- doxytag: member="wcsprm::ntab" ref="94c26ce331cc876d63baeeada9820241" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#94c26ce331cc876d63baeeada9820241">wcsprm::ntab</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) See <a class="el" href="structwcsprm.html#292133b2b7143b969a3af6a3f2cf3709">wcsprm::tab</a>. 
</div>
</div><p>
<a class="anchor" name="8625c0a6ff99c754566c46c2372df801"></a><!-- doxytag: member="wcsprm::nwtb" ref="8625c0a6ff99c754566c46c2372df801" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#8625c0a6ff99c754566c46c2372df801">wcsprm::nwtb</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) See <a class="el" href="structwcsprm.html#9063e8d0c956e9eae7f7d6f3608b9ed2">wcsprm::wtb</a>. 
</div>
</div><p>
<a class="anchor" name="292133b2b7143b969a3af6a3f2cf3709"></a><!-- doxytag: member="wcsprm::tab" ref="292133b2b7143b969a3af6a3f2cf3709" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">struct <a class="el" href="structtabprm.html">tabprm</a> * <a class="el" href="structwcsprm.html#292133b2b7143b969a3af6a3f2cf3709">wcsprm::tab</a><code> [read]</code>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) Address of the first element of an array of ntab <a class="el" href="structtabprm.html" title="Tabular transformation parameters.">tabprm</a> structs for which memory has been allocated. These are used to store tabular transformation parameters.<p>
Although technically <a class="el" href="structwcsprm.html#94c26ce331cc876d63baeeada9820241">wcsprm::ntab</a> and tab are "given", they will normally be set by invoking <a class="el" href="wcshdr_8h.html#6dd857f7b61a5b349cc8af5a4b6d8a1c" title="Tabular construction routine.">wcstab()</a>, whether directly or indirectly.<p>
The <a class="el" href="structtabprm.html" title="Tabular transformation parameters.">tabprm</a> structs contain some members that must be supplied and others that are derived. The information to be supplied comes primarily from arrays stored in one or more FITS binary table extensions. These arrays, referred to here as "wcstab arrays", are themselves located by parameters stored in the FITS image header. 
</div>
</div><p>
<a class="anchor" name="9063e8d0c956e9eae7f7d6f3608b9ed2"></a><!-- doxytag: member="wcsprm::wtb" ref="9063e8d0c956e9eae7f7d6f3608b9ed2" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">struct <a class="el" href="structwtbarr.html">wtbarr</a> * <a class="el" href="structwcsprm.html#9063e8d0c956e9eae7f7d6f3608b9ed2">wcsprm::wtb</a><code> [read]</code>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Given</em>) Address of the first element of an array of nwtb <a class="el" href="structwtbarr.html" title="Extraction of coordinate lookup tables from BINTABLE.">wtbarr</a> structs for which memory has been allocated. These are used in extracting wcstab arrays from a FITS binary table.<p>
Although technically <a class="el" href="structwcsprm.html#8625c0a6ff99c754566c46c2372df801">wcsprm::nwtb</a> and wtb are "given", they will normally be set by invoking <a class="el" href="wcshdr_8h.html#6dd857f7b61a5b349cc8af5a4b6d8a1c" title="Tabular construction routine.">wcstab()</a>, whether directly or indirectly. 
</div>
</div><p>
<a class="anchor" name="5b56e1b378a6ae9f8dfff5c364f0653c"></a><!-- doxytag: member="wcsprm::lngtyp" ref="5b56e1b378a6ae9f8dfff5c364f0653c" args="[8]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">char <a class="el" href="structwcsprm.html#5b56e1b378a6ae9f8dfff5c364f0653c">wcsprm::lngtyp</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Returned</em>) Four-character WCS celestial longitude and ... 
</div>
</div><p>
<a class="anchor" name="e352318ce3202dab1b5db8b9ceec7703"></a><!-- doxytag: member="wcsprm::lattyp" ref="e352318ce3202dab1b5db8b9ceec7703" args="[8]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">char <a class="el" href="structwcsprm.html#e352318ce3202dab1b5db8b9ceec7703">wcsprm::lattyp</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Returned</em>) ... latitude axis types. e.g. "RA", "DEC", "GLON", "GLAT", etc. extracted from '<code><b>RA--</b></code>', '<code><b>DEC-</b></code>', '<code><b>GLON</b></code>', '<code><b>GLAT</b></code>', etc. in the first four characters of <code><b>CTYPE</b>ia</code> but with trailing dashes removed. (Declared as char[8] for alignment reasons.) 
</div>
</div><p>
<a class="anchor" name="08098820949433d1336841d32d0b62b5"></a><!-- doxytag: member="wcsprm::lng" ref="08098820949433d1336841d32d0b62b5" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#08098820949433d1336841d32d0b62b5">wcsprm::lng</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Returned</em>) Index for the longitude coordinate, and ... 
</div>
</div><p>
<a class="anchor" name="b7f7173e6d2b1b8028a3275bdd751e79"></a><!-- doxytag: member="wcsprm::lat" ref="b7f7173e6d2b1b8028a3275bdd751e79" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#b7f7173e6d2b1b8028a3275bdd751e79">wcsprm::lat</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Returned</em>) ... index for the latitude coordinate, and ... 
</div>
</div><p>
<a class="anchor" name="b9729795155b8f37afd80784fb70068b"></a><!-- doxytag: member="wcsprm::spec" ref="b9729795155b8f37afd80784fb70068b" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#b9729795155b8f37afd80784fb70068b">wcsprm::spec</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Returned</em>) ... index for the spectral coordinate in the imgcrd[][] and world[][] arrays in the API of <a class="el" href="wcs_8h.html#27d3dd209db3e76cf4c50f48c01ba986" title="Pixel-to-world transformation.">wcsp2s()</a>, <a class="el" href="wcs_8h.html#60673d05a3513659ac848a9cb3d0cb07" title="World-to-pixel transformation.">wcss2p()</a> and <a class="el" href="wcs_8h.html#f3f00b876c8212d43f32a51feeadaa81" title="Hybrid coordinate transformation.">wcsmix()</a>.<p>
These may also serve as indices into the pixcrd[][] array provided that the <code><b>PC</b>i<b>_</b>ja</code> matrix does not transpose axes. 
</div>
</div><p>
<a class="anchor" name="de8495d3ca5047eeadba5934d0bb2708"></a><!-- doxytag: member="wcsprm::cubeface" ref="de8495d3ca5047eeadba5934d0bb2708" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#de8495d3ca5047eeadba5934d0bb2708">wcsprm::cubeface</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Returned</em>) Index into the pixcrd[][] array for the <code><b>CUBEFACE</b></code> axis. This is used for quadcube projections where the cube faces are stored on a separate axis (see <a class="el" href="wcs_8h.html">wcs.h</a>). 
</div>
</div><p>
<a class="anchor" name="b63cdcf6ff8febd1b40d0e044ca7d7ef"></a><!-- doxytag: member="wcsprm::types" ref="b63cdcf6ff8febd1b40d0e044ca7d7ef" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int * <a class="el" href="structwcsprm.html#b63cdcf6ff8febd1b40d0e044ca7d7ef">wcsprm::types</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Returned</em>) Address of the first element of an array of int containing a four-digit type code for each axis.<p>
<ul>
<li>
First digit (i.e. 1000s): <ul>
<li>
0: Non-specific coordinate type. </li>
<li>
1: Stokes coordinate. </li>
<li>
2: Celestial coordinate (including <code><b>CUBEFACE</b></code>). </li>
<li>
3: Spectral coordinate. </li>
</ul>
<p>
</li>
<li>
Second digit (i.e. 100s): <ul>
<li>
0: Linear axis. </li>
<li>
1: Quantized axis (<code><b>STOKES</b></code>, <code><b>CUBEFACE</b></code>). </li>
<li>
2: Non-linear celestial axis. </li>
<li>
3: Non-linear spectral axis. </li>
<li>
4: Logarithmic axis. </li>
<li>
5: Tabular axis. </li>
</ul>
<p>
</li>
<li>
Third digit (i.e. 10s): <ul>
<li>
0: Group number, e.g. lookup table number, being an index into the <a class="el" href="structtabprm.html" title="Tabular transformation parameters.">tabprm</a> array (see above). </li>
</ul>
<p>
</li>
<li>
The fourth digit is used as a qualifier depending on the axis type.<p>
<ul>
<li>
For celestial axes: <ul>
<li>
0: Longitude coordinate. </li>
<li>
1: Latitude coordinate. </li>
<li>
2: <code><b>CUBEFACE</b></code> number. </li>
</ul>
<p>
</li>
<li>
For lookup tables: the axis number in a multidimensional table. </li>
</ul>
</li>
</ul>
<p>
<code><b>CTYPE</b>ia</code> in "4-3" form with unrecognized algorithm code will have its type set to -1 and generate an error.<p>
void *padding (An unused variable inserted for alignment purposes only.) 
</div>
</div><p>
<a class="anchor" name="b253d36f0dc1716952285c6078622e66"></a><!-- doxytag: member="wcsprm::padding" ref="b253d36f0dc1716952285c6078622e66" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void* <a class="el" href="structwcsprm.html#b253d36f0dc1716952285c6078622e66">wcsprm::padding</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>

</div>
</div><p>
<a class="anchor" name="3224bd06f8f4d2d7d398533eb44a49e8"></a><!-- doxytag: member="wcsprm::lin" ref="3224bd06f8f4d2d7d398533eb44a49e8" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">struct <a class="el" href="structlinprm.html">linprm</a> <a class="el" href="structwcsprm.html#3224bd06f8f4d2d7d398533eb44a49e8">wcsprm::lin</a><code> [read]</code>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Returned</em>) Linear transformation parameters (usage is described in the prologue to <a class="el" href="lin_8h.html">lin.h</a>). 
</div>
</div><p>
<a class="anchor" name="c8391dd770637dbb841067996b7777ba"></a><!-- doxytag: member="wcsprm::cel" ref="c8391dd770637dbb841067996b7777ba" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">struct <a class="el" href="structcelprm.html">celprm</a> <a class="el" href="structwcsprm.html#c8391dd770637dbb841067996b7777ba">wcsprm::cel</a><code> [read]</code>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Returned</em>) Celestial transformation parameters (usage is described in the prologue to <a class="el" href="cel_8h.html">cel.h</a>). 
</div>
</div><p>
<a class="anchor" name="e83952aec7c1ac76c090bc89bf4eeea7"></a><!-- doxytag: member="wcsprm::spc" ref="e83952aec7c1ac76c090bc89bf4eeea7" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">struct <a class="el" href="structspcprm.html">spcprm</a> <a class="el" href="structwcsprm.html#e83952aec7c1ac76c090bc89bf4eeea7">wcsprm::spc</a><code> [read]</code>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Returned</em>) Spectral transformation parameters (usage is described in the prologue to <a class="el" href="spc_8h.html">spc.h</a>). 
</div>
</div><p>
<a class="anchor" name="f54ce939604be183231f0ee006e2f8ed"></a><!-- doxytag: member="wcsprm::err" ref="f54ce939604be183231f0ee006e2f8ed" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">struct <a class="el" href="structwcserr.html">wcserr</a> * <a class="el" href="structwcsprm.html#f54ce939604be183231f0ee006e2f8ed">wcsprm::err</a><code> [read]</code>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(<em>Returned</em>) If enabled, when an error status is returned this struct contains detailed information about the error, see <a class="el" href="wcserr_8h.html#1691b8bd184d40ca6fda255be078fa53" title="Enable/disable error messaging.">wcserr_enable()</a>.<p>
void *m_padding (For internal use only.) 
</div>
</div><p>
<a class="anchor" name="603ef3ab7f3bc42cf8d8bf99b79b63ac"></a><!-- doxytag: member="wcsprm::m_padding" ref="603ef3ab7f3bc42cf8d8bf99b79b63ac" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void* <a class="el" href="structwcsprm.html#603ef3ab7f3bc42cf8d8bf99b79b63ac">wcsprm::m_padding</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>

</div>
</div><p>
<a class="anchor" name="5780880281f2f9d085d2e06919b7647a"></a><!-- doxytag: member="wcsprm::m_flag" ref="5780880281f2f9d085d2e06919b7647a" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#5780880281f2f9d085d2e06919b7647a">wcsprm::m_flag</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="5ed753e401cda620a04adfb4ebfb8e0d"></a><!-- doxytag: member="wcsprm::m_naxis" ref="5ed753e401cda620a04adfb4ebfb8e0d" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="structwcsprm.html#5ed753e401cda620a04adfb4ebfb8e0d">wcsprm::m_naxis</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="164e3852bcd2dea8b5f73e1dff79ddf5"></a><!-- doxytag: member="wcsprm::m_crpix" ref="164e3852bcd2dea8b5f73e1dff79ddf5" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double * <a class="el" href="structwcsprm.html#164e3852bcd2dea8b5f73e1dff79ddf5">wcsprm::m_crpix</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="6778d31ec5a2ee643dc5f0a8af630b03"></a><!-- doxytag: member="wcsprm::m_pc" ref="6778d31ec5a2ee643dc5f0a8af630b03" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double * <a class="el" href="structwcsprm.html#6778d31ec5a2ee643dc5f0a8af630b03">wcsprm::m_pc</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="42e0ff2da3b0c1ca0a9509f787ed1951"></a><!-- doxytag: member="wcsprm::m_cdelt" ref="42e0ff2da3b0c1ca0a9509f787ed1951" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double * <a class="el" href="structwcsprm.html#42e0ff2da3b0c1ca0a9509f787ed1951">wcsprm::m_cdelt</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="5072893bd9beddb33967697d501acdce"></a><!-- doxytag: member="wcsprm::m_crval" ref="5072893bd9beddb33967697d501acdce" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double * <a class="el" href="structwcsprm.html#5072893bd9beddb33967697d501acdce">wcsprm::m_crval</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="f1cb3e68560d1ac42c620cfe3900af95"></a><!-- doxytag: member="wcsprm::m_cunit" ref="f1cb3e68560d1ac42c620cfe3900af95" args=")[72]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="structwcsprm.html#f1cb3e68560d1ac42c620cfe3900af95">wcsprm::m_cunit</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="ee7f71c872491b25e1d1440e5dfa8153"></a><!-- doxytag: member="wcsprm::m_ctype" ref="ee7f71c872491b25e1d1440e5dfa8153" args=")[72]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="structwcsprm.html#ee7f71c872491b25e1d1440e5dfa8153">wcsprm::m_ctype</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="6a3fa7adc304567271c5cc0eda3ac986"></a><!-- doxytag: member="wcsprm::m_pv" ref="6a3fa7adc304567271c5cc0eda3ac986" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">struct <a class="el" href="structpvcard.html">pvcard</a> * <a class="el" href="structwcsprm.html#6a3fa7adc304567271c5cc0eda3ac986">wcsprm::m_pv</a><code> [read]</code>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="042875def8cab8354c5b2c40ab9fa374"></a><!-- doxytag: member="wcsprm::m_ps" ref="042875def8cab8354c5b2c40ab9fa374" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">struct <a class="el" href="structpscard.html">pscard</a> * <a class="el" href="structwcsprm.html#042875def8cab8354c5b2c40ab9fa374">wcsprm::m_ps</a><code> [read]</code>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="7a88af56c4c978c6d4213ae1f4bec87a"></a><!-- doxytag: member="wcsprm::m_cd" ref="7a88af56c4c978c6d4213ae1f4bec87a" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double * <a class="el" href="structwcsprm.html#7a88af56c4c978c6d4213ae1f4bec87a">wcsprm::m_cd</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="5444415c94c7ab0226788f5efe93221d"></a><!-- doxytag: member="wcsprm::m_crota" ref="5444415c94c7ab0226788f5efe93221d" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double * <a class="el" href="structwcsprm.html#5444415c94c7ab0226788f5efe93221d">wcsprm::m_crota</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="4ed527b90d49e8365c1b727f7bec29c7"></a><!-- doxytag: member="wcsprm::m_colax" ref="4ed527b90d49e8365c1b727f7bec29c7" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int * <a class="el" href="structwcsprm.html#4ed527b90d49e8365c1b727f7bec29c7">wcsprm::m_colax</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="092c11d209ecdd16bb79858c68e4d582"></a><!-- doxytag: member="wcsprm::m_cname" ref="092c11d209ecdd16bb79858c68e4d582" args=")[72]" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="structwcsprm.html#092c11d209ecdd16bb79858c68e4d582">wcsprm::m_cname</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="0d15534535c7f9308c9daa2cceff29e7"></a><!-- doxytag: member="wcsprm::m_crder" ref="0d15534535c7f9308c9daa2cceff29e7" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double * <a class="el" href="structwcsprm.html#0d15534535c7f9308c9daa2cceff29e7">wcsprm::m_crder</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="13fab263ca03f35844fdaca289b7dfac"></a><!-- doxytag: member="wcsprm::m_csyer" ref="13fab263ca03f35844fdaca289b7dfac" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double * <a class="el" href="structwcsprm.html#13fab263ca03f35844fdaca289b7dfac">wcsprm::m_csyer</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="e09d5bf005e3bd7ee880353e8816ceb8"></a><!-- doxytag: member="wcsprm::m_tab" ref="e09d5bf005e3bd7ee880353e8816ceb8" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">struct <a class="el" href="structtabprm.html">tabprm</a> * <a class="el" href="structwcsprm.html#e09d5bf005e3bd7ee880353e8816ceb8">wcsprm::m_tab</a><code> [read]</code>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
<a class="anchor" name="ce7e0986c79d73bd3a0613034b71974f"></a><!-- doxytag: member="wcsprm::m_wtb" ref="ce7e0986c79d73bd3a0613034b71974f" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">struct <a class="el" href="structwtbarr.html">wtbarr</a> * <a class="el" href="structwcsprm.html#ce7e0986c79d73bd3a0613034b71974f">wcsprm::m_wtb</a><code> [read]</code>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
(For internal use only.) 
</div>
</div><p>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Tue Oct 4 19:02:31 2011 for WCSLIB 4.8.2 by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address>
</body>
</html>