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 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962
|
/*** File libwcs/ucacread.c
*** August 3, 2018
*** By Jessica Mink, jmink@cfa.harvard.edu
*** Harvard-Smithsonian Center for Astrophysics
*** Copyright (C) 2003-2018
*** Smithsonian Astrophysical Observatory, Cambridge, MA, USA
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Correspondence concerning WCSTools should be addressed as follows:
Internet email: jmink@cfa.harvard.edu
Postal address: Jessica Mink
Smithsonian Astrophysical Observatory
60 Garden St.
Cambridge, MA 02138 USA
* ucacread() Read UCAC Star Catalog stars in a rectangle on the sky
* ucacrnum() Read UCAC Star Catalog stars by number
* ucacbin() Fill a FITS WECS image with UCAC Star Catalog stars
* ucaczones() Make list of zones covered by a range of declinations
* ucacsra (sc,st,zone,rax0) Find UCAC star closest to specified right ascension
* ucacopen(zone, nstars) Open UCAC catalog file, returning number of entries
* ucacclose (sc) Close UCAC catalog file
* ucacstar (sc,st,zone,istar) Get UCAC catalog entry for one star
*/
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdint.h>
#include "fitsfile.h"
#include "wcs.h"
#include "wcscat.h"
#define MAXZONE 900
#define ABS(a) ((a) < 0 ? (-(a)) : (a))
/* #define UCAC_DEBUG 1 */
typedef struct {
int rasec, decsec;
short cmag;
unsigned char era, edec, nobs, rflg, ncat, cflg;
short epra, epdec;
int rapm, decpm;
unsigned char erapm, edecpm, qrapm, qdecpm;
int id2m;
short jmag, hmag, kmag, qm, cc;
} UCAC2star;
typedef struct {
int rasec, decsec;
short mmag, amag, sigmag;
char objt, dsf;
short sigra, sigdec;
char na1, nu1, us1, cn1;
short cepra, cepdec;
int rapm, decpm;
short sigpmr, sigpmd;
int id2m;
short jmag, hmag, kmag;
char jq, hq, kq;
char e2mpho[3];
short bmag, rmag, imag;
char clbl;
char bq, rq, iq;
char catflg[10];
char g1, c1, leda, x2m;
int rn;
} UCAC3star;
/* The following is from ucac4.h */
#pragma pack( 1)
typedef struct {
int32_t ra, spd; /* RA/dec at J2000.0, ICRS, in milliarcsec */
uint16_t magm, maga; /* UCAC fit model & aperture mags, .001 mag */
uint8_t mag_sigma;
uint8_t obj_type, double_star_flag;
int8_t ra_sigma, dec_sigma; /* sigmas in RA and dec at central epoch */
uint8_t n_ucac_total; /* Number of UCAC observations of this star */
uint8_t n_ucac_used; /* # UCAC observations _used_ for this star */
uint8_t n_cats_used; /* # catalogs (epochs) used for prop motion */
uint16_t epoch_ra; /* Central epoch for mean RA, minus 1900, .01y */
uint16_t epoch_dec; /* Central epoch for mean DE, minus 1900, .01y */
int16_t pm_ra; /* prop motion, .1 mas/yr = .01 arcsec/cy */
int16_t pm_dec; /* prop motion, .1 mas/yr = .01 arcsec/cy */
int8_t pm_ra_sigma; /* sigma in same units */
int8_t pm_dec_sigma;
uint32_t twomass_id; /* 2MASS pts_key star identifier */
uint16_t mag_j, mag_h, mag_k; /* 2MASS J, H, K_s mags, in millimags */
uint8_t icq_flag[3];
uint8_t e2mpho[3]; /* 2MASS error photometry (in centimags) */
uint16_t apass_mag[5]; /* in millimags */
uint8_t apass_mag_sigma[5]; /* also in millimags */
uint8_t yale_gc_flags; /* Yale SPM g-flag * 10 + c-flag */
uint32_t catalog_flags;
uint8_t leda_flag; /* LEDA galaxy match flag */
uint8_t twomass_ext_flag; /* 2MASS extended source flag */
uint32_t id_number;
uint16_t ucac2_zone;
uint32_t ucac2_number;
} UCAC4star;
#pragma pack( )
/* Fields in the u4hpm.dat file */
#define MAX_U4HPM_RECORDS 50
#define MAX_U4HPM_LINE 512
typedef struct u4hpm {
int rnm; /* unique star identifier (col. 51 main data) */
int zn; /* UCAC4 zone number for this star */
int rnz; /* unning record number along that zone for this star */
int pmrc; /* actual proper motion in RA*cos(dec) [0.1 mas/yr] */
int pmd; /* actual proper motion in Dec [0.1 mas/yr] */
int ra; /* col. 1 of main data file (redundant) */
int dec; /* col. 2 of main data file (redundant) */
int maga; /* col. 4 of main data file (redundant) */
} U4HPM,*PU4HPM;
int hpmLines = 0;
U4HPM u4hpm_table[MAX_U4HPM_RECORDS];
/* pathname of UCAC1 decompressed data files or search engine URL */
char ucac1path[64]="/data/astrocat/ucac1";
/* pathname of UCAC2 decompressed data files or search engine URL */
char ucac2path[64]="/data/astrocat/ucac2";
/* pathname of UCAC3 decompressed data files or search engine URL */
char ucac3path[64]="/data/astrocat/ucac3";
/* pathname of UCAC4 decompressed data files or search engine URL */
char ucac4path[64]="/data/astrocat/ucac4/u4b";
/* Path name of UCAC4 proper motion catalog */
char ucac4hpmpath[] = "/data/astrocat/ucac4/u4i/u4hpm.dat";
char *ucacpath;
char *hpmpath;
static int ucat = 0;
static double *gdist; /* Array of distances to stars */
static int ndist = 0;
static int cswap = 0; /* Byte reverse catalog to Mac/Sun/network order if 1 */
static int ucaczones();
struct StarCat *ucacopen();
void ucacclose();
static int ucacsra();
static int ucacstar();
static void ucacswap4();
static void ucacswap2();
/* UCACREAD -- Read UCAC Star Catalog stars */
int
ucacread (refcatname,cra,cdec,dra,ddec,drad,dradi,distsort,sysout,eqout,epout,
mag1,mag2,sortmag,nstarmax,gnum,gra,gdec,gpra,gpdec,gmag,gtype,nlog)
char *refcatname; /* Name of catalog (UAC, USAC, UAC2, USAC2) */
double cra; /* Search center J2000 right ascension in degrees */
double cdec; /* Search center J2000 declination in degrees */
double dra; /* Search half width in right ascension in degrees */
double ddec; /* Search half-width in declination in degrees */
double drad; /* Limiting separation in degrees (ignore if 0) */
double dradi; /* Inner edge of annulus in degrees (ignore if 0) */
int distsort; /* 1 to sort stars by distance from center */
int sysout; /* Search coordinate system */
double eqout; /* Search coordinate equinox */
double epout; /* Proper motion epoch (0.0 for no proper motion) */
double mag1,mag2; /* Limiting magnitudes (none if equal) */
int sortmag; /* Magnitude by which to sort (1-8) */
int nstarmax; /* Maximum number of stars to be returned */
double *gnum; /* Array of Guide Star numbers (returned) */
double *gra; /* Array of right ascensions (returned) */
double *gdec; /* Array of declinations (returned) */
double *gpra; /* Array of right ascension proper motions (returned) */
double *gpdec; /* Array of declination proper motions (returned) */
double **gmag; /* Array of magnitudes (returned) */
int *gtype; /* Array of object types (returned) */
int nlog; /* 1 for diagnostics */
{
double ra1,ra2; /* Limiting right ascensions of region in degrees */
double dec1,dec2; /* Limiting declinations of region in degrees */
double dist = 0.0; /* Distance from search center in degrees */
double faintmag=0.0; /* Faintest magnitude */
double maxdist=0.0; /* Largest distance */
int faintstar=0; /* Faintest star */
int farstar=0; /* Most distant star */
int nz; /* Number of UCAC regions in search */
int zlist[MAXZONE]; /* List of region numbers */
int sysref = WCS_J2000; /* Catalog coordinate system */
double eqref = 2000.0; /* Catalog equinox */
double epref = 2000.0; /* Catalog epoch */
double secmarg = 60.0; /* Arcsec/century margin for proper motion */
struct StarCat *starcat; /* Star catalog data structure */
struct Star *star; /* Single star data structure */
double errra, errdec, errpmr, errpmd;
int nim, ncat;
int verbose;
int wrap;
int iz;
int magsort;
int jstar;
int nrmax = MAXZONE;
int nstar,i, ntot, imag;
int istar, istar1, istar2;
int jtable,iwrap, nread;
int pass;
int zone;
int nmag;
int lstr;
double num, ra, dec, rapm, decpm, mag;
double rra1, rra2, rdec1, rdec2;
double rdist, ddist;
char cstr[32], rastr[32], decstr[32];
char ucacenv[16];
char *str, *str1;
char *hpmfile;
hpmpath = 0;
str1 = 0;
ntot = 0;
if (nlog > 0)
verbose = 1;
else
verbose = 0;
/* Set catalog code and path to catalog */
if (strncmp (refcatname,"ucac2",5)==0 ||
strncmp (refcatname,"UCAC2",5)==0) {
ucat = UCAC2;
ucacpath = ucac2path;
strcpy (ucacenv, "UCAC2_PATH");
nmag = 4;
}
else if (strncmp (refcatname,"ucac3",5)==0 ||
strncmp (refcatname,"UCAC3",5)==0) {
ucat = UCAC3;
ucacpath = ucac3path;
strcpy (ucacenv, "UCAC3_PATH");
nmag = 8;
}
else if (strncmp (refcatname,"ucac4",5)==0 ||
strncmp (refcatname,"UCAC4",5)==0) {
ucat = UCAC4;
ucacpath = ucac4path;
strcpy (ucacenv, "UCAC4_PATH");
nmag = 10;
/* UCAC4 high proper motion catalog */
hpmpath = ucac4hpmpath;
}
else {
ucat = UCAC1;
ucacpath = ucac1path;
strcpy (ucacenv, "UCAC1_PATH");
nmag = 1;
}
/* If pathname is set in environment, override local value */
if ((str = getenv (ucacenv)) != NULL ) {
ucacpath = str;
if (hpmpath) {
lstr = strlen (ucacpath) + 16;
str1 = (char *) calloc (lstr, sizeof (char));
strcpy (str1, str);
hpmfile = strrchr (str1, '/') + 1;
strcpy (hpmfile, "u4i/u4hpm.dat");
}
}
/* If pathname is a URL, search and return */
if (!strncmp (ucacpath, "http:",5)) {
if (str1) {
free ((void *)str1);
}
return (webread (ucacpath,refcatname,distsort,cra,cdec,dra,ddec,drad,
dradi,sysout,eqout,epout,mag1,mag2,sortmag,nstarmax,
gnum,gra,gdec,gpra,gpdec,gmag,gtype,nlog));
}
wcscstr (cstr, sysout, eqout, epout);
SearchLim (cra,cdec,dra,ddec,sysout,&ra1,&ra2,&dec1,&dec2,verbose);
/* Make mag1 always the smallest magnitude */
if (mag2 < mag1) {
mag = mag2;
mag2 = mag1;
mag1 = mag;
}
if (sortmag < 1)
magsort = 0;
else if (sortmag > nmag)
magsort = nmag - 1;
else
magsort = sortmag - 1;
/* Allocate table for distances of stars from search center */
if (nstarmax > ndist) {
if (ndist > 0)
free ((void *)gdist);
gdist = (double *) malloc (nstarmax * sizeof (double));
if (gdist == NULL) {
if (str1) {
free ((void *)str1);
}
fprintf (stderr,"UCACREAD: cannot allocate separation array\n");
return (0);
}
ndist = nstarmax;
}
/* Allocate catalog entry buffer */
star = (struct Star *) calloc (1, sizeof (struct Star));
star->num = 0.0;
nstar = 0;
jstar = 0;
/* Get RA and Dec limits in catalog (J2000) coordinates */
rra1 = ra1;
rra2 = ra2;
rdec1 = dec1;
rdec2 = dec2;
RefLim (cra,cdec,dra,ddec,sysout,sysref,eqout,eqref,epout,epref,secmarg,
&rra1, &rra2, &rdec1, &rdec2, &wrap, verbose);
/* Find UCAC Star Catalog zones in which to search */
nz = ucaczones (rdec1,rdec2,nrmax,zlist,verbose);
if (nz <= 0) {
if (str1) {
free ((void *)str1);
}
fprintf (stderr,"UCACREAD: no UCAC zone for %.2f-%.2f %.2f %.2f\n",
rra1, rra2, rdec1, rdec2);
return (0);
}
/* Write header if printing star entries as found */
if (nstarmax < 1) {
char *revmessage;
revmessage = getrevmsg();
printf ("catalog UCAC1\n");
ra2str (rastr, 31, cra, 3);
printf ("ra %s\n", rastr);
dec2str (decstr, 31, cdec, 2);
printf ("dec %s\n", decstr);
printf ("rpmunit mas/year\n");
printf ("dpmunit mas/year\n");
if (drad != 0.0) {
printf ("radmin %.1f\n", drad*60.0);
if (dradi > 0)
printf ("radimin %.1f\n", dradi*60.0);
}
else {
printf ("dramin %.1f\n", dra*60.0* cosdeg (cdec));
printf ("ddecmin %.1f\n", ddec*60.0);
}
printf ("radecsys %s\n", cstr);
printf ("equinox %.3f\n", eqout);
printf ("epoch %.3f\n", epout);
printf ("program scat %s\n", revmessage);
printf ("ucac_id ra dec ");
if (ucat == UCAC1) {
printf ("mag ura udec arcmin\n");
printf ("---------- ------------ ------------ ");
printf ("----- ------ ------ ------\n");
}
else if (ucat == UCAC2) {
printf ("raerr decerr magc ");
printf ("magj magh magk mag ");
printf ("pmra pmdec pmrerr pmderr ");
printf ("ni nc arcsec\n");
printf ("---------- ------------ ------------ ");
printf ("------ ------ ----- ----- ----- ");
printf ("----- ----- ------ ------ ----- ----- ");
printf ("-- -- ------\n");
}
else if (ucat == UCAC3) {
printf ("raerr decerr magb magr magi ");
printf ("magj magh magk maga magm ");
printf ("mag pmra pmdec pmrerr pmderr ");
printf ("ni nc arcsec\n");
printf ("---------- ------------ ------------ ");
printf ("------ ------ ----- ------ ----- ");
printf ("----- ----- ----- ----- ----- ");
printf ("----- ----- ----- ------ ------ ");
printf ("-- -- ------\n");
}
else if (ucat == UCAC4) {
printf ("raerr decerr magb magv magg ");
printf ("magr magi magj magj magk ");
printf ("pmra pmdec pmrerr pmderr ");
printf ("ni nc arcsec\n");
printf ("---------- ------------ ------------ ");
printf ("------ ------ ----- ------ ----- ");
printf ("----- ----- ----- ----- ----- ");
printf ("----- ----- ------ ------ ");
printf ("-- -- ------\n");
}
}
/* Loop through zone list */
nstar = 0;
for (iz = 0; iz < nz; iz++) {
/* Get path to zone catalog */
zone = zlist[iz];
#ifdef UCAC_DEBUG
if (zone == 183) {
fprintf(stderr,"at zone %d\n",zone);
}
#endif /* UCAC_DEBUG */
if ((starcat = ucacopen (zone)) != 0) {
jstar = 0;
jtable = 0;
for (iwrap = 0; iwrap <= wrap; iwrap++) {
/* Find first star based on RA */
if (iwrap == 0 || wrap == 0) {
istar1 = ucacsra (starcat, star, zone, rra1);
if (istar1 > 5)
istar1 = istar1 - 5;
else
istar1 = 1;
}
else
istar1 = 1;
/* Find last star based on RA */
if (iwrap == 1 || wrap == 0) {
istar2 = ucacsra (starcat, star, zone, rra2);
if (istar2 < starcat->nstars - 5)
istar2 = istar2 + 5;
else
istar2 = starcat->nstars;
}
else
istar2 = starcat->nstars;
if (istar1 == 0 || istar2 == 0)
break;
nread = istar2 - istar1 + 1;
/* Loop through zone catalog for this region */
for (istar = istar1; istar <= istar2; istar++) {
jtable ++;
if (ucacstar (starcat, star, zone, istar)) {
fprintf(stderr,"UCACREAD: Cannot read star %d\n",istar);
break;
}
/* ID number */
num = star->num;
/* Magnitude */
mag = star->xmag[magsort];
/* Check magnitude limits */
pass = 1;
if (mag1 != mag2 && (mag < mag1 || mag > mag2))
pass = 0;
/* Check position limits */
if (pass) {
/* Get position in output coordinate system */
ra = star->ra;
dec = star->dec;
rapm = star->rapm;
decpm = star->decpm;
errra = star->errra;
errdec = star->errdec;
errpmr = star->errpmr;
errpmd = star->errpmd;
nim = star->nimage;
ncat = star->ncat;
wcsconp (sysref, sysout, eqref, eqout, epref, epout,
&ra, &dec, &rapm, &decpm);
/* Compute distance from search center */
if (drad > 0 || distsort)
dist = wcsdist (cra,cdec,ra,dec);
else
dist = 0.0;
/* Check radial distance to search center */
if (drad > 0) {
if (dist > drad)
pass = 0;
if (dradi > 0.0 && dist < dradi)
pass = 0;
}
/* Check distance along RA and Dec axes */
else {
ddist = wcsdist (cra,cdec,cra,dec);
if (ddist > ddec)
pass = 0;
rdist = wcsdist (cra,dec,ra,dec);
if (rdist > dra)
pass = 0;
}
}
if (pass) {
/* Write star position and magnitude to stdout */
if (nstarmax < 1) {
ra2str (rastr, 31, ra, 3);
dec2str (decstr, 31, dec, 2);
dist = wcsdist (cra,cdec,ra,dec) * 3600.0;
printf ("%010.6f %s %s", num,rastr,decstr);
if (ucat == UCAC2 || ucat == UCAC3 || ucat == UCAC4)
printf (" %5.3f %5.3f",
errra * 3600.0 * cosdeg (dec), errdec * 3600.0);
if (ucat == UCAC1)
printf (" %5.2f", mag);
else
printf (" %5.2f %5.2f %5.2f %5.2f",
star->xmag[0], star->xmag[1],
star->xmag[2], star->xmag[3]);
if (ucat == UCAC3 || ucat == UCAC4)
printf (" %5.2f %5.2f %5.2f %5.2f",
star->xmag[4], star->xmag[5],
star->xmag[6], star->xmag[7]);
printf (" %5.2f %6.1f %6.1f",
mag, rapm*3600000.0*cosdeg (dec),
decpm*3600000.0);
printf (" %6.1f %6.1f",
errpmr*3600000.0, errpmd*3600000.0);
printf (" %2d %2d %.3f\n", nim, ncat, dist);
}
/* Save star position and magnitude in table */
else if (nstar < nstarmax) {
gnum[nstar] = num;
gra[nstar] = ra;
gdec[nstar] = dec;
gpra[nstar] = rapm;
gpdec[nstar] = decpm;
if (ucat == UCAC1)
gmag[0][nstar] = mag;
else {
for (imag = 0; imag < nmag; imag++)
gmag[imag][nstar] = star->xmag[imag];
gmag[nmag][nstar] = star->errra;
gmag[nmag+1][nstar] = star->errdec;
gmag[nmag+2][nstar] = star->errpmr;
gmag[nmag+3][nstar] = star->errpmd;
gtype[nstar] = (1000 * nim) + ncat;
}
gdist[nstar] = dist;
if (dist > maxdist) {
maxdist = dist;
farstar = nstar;
}
if (mag > faintmag) {
faintmag = mag;
faintstar = nstar;
}
}
/* If too many stars and distance sorting,
replace farthest star */
else if (distsort) {
if (dist < maxdist) {
gnum[farstar] = num;
gra[farstar] = ra;
gdec[farstar] = dec;
gpra[farstar] = rapm;
gpdec[farstar] = decpm;
if (ucat == UCAC1)
gmag[0][farstar] = mag;
else {
for (imag = 0; imag < nmag; imag++)
gmag[imag][farstar] = star->xmag[imag];
gmag[nmag][farstar] = star->errra;
gmag[nmag+1][farstar] = star->errdec;
gmag[nmag+2][farstar] = star->errpmr;
gmag[nmag+3][farstar] = star->errpmd;
gtype[farstar] = (1000 * nim) + ncat;
}
gdist[farstar] = dist;
/* Find new farthest star */
maxdist = 0.0;
for (i = 0; i < nstarmax; i++) {
if (gdist[i] > maxdist) {
maxdist = gdist[i];
farstar = i;
}
}
}
}
/* Else if too many stars, replace faintest star */
else if (mag < faintmag) {
gnum[faintstar] = num;
gra[faintstar] = ra;
gdec[faintstar] = dec;
gpra[faintstar] = rapm;
gpdec[faintstar] = decpm;
if (ucat == UCAC1)
gmag[0][faintstar] = mag;
else {
for (imag = 0; imag < nmag; imag++)
gmag[imag][faintstar] = star->xmag[imag];
gmag[nmag][faintstar] = star->errra;
gmag[nmag+1][faintstar] = star->errdec;
gmag[nmag+2][faintstar] = star->errpmr;
gmag[nmag+3][faintstar] = star->errpmd;
gtype[faintstar] = (1000 * nim) + ncat;
}
gdist[faintstar] = dist;
/* Find new faintest star */
faintmag = 0.0;
for (i = 0; i < nstarmax; i++) {
if (gmag[magsort][i] > faintmag) {
faintmag = gmag[magsort][i];
faintstar = i;
}
}
}
nstar++;
if (nlog == 1)
fprintf (stderr,"UCACREAD: %11.6f: %9.5f %9.5f %5.2f\n",
num,ra,dec,mag);
/* End of accepted star processing */
}
/* Log operation */
jstar++;
if (nlog > 0 && istar%nlog == 0)
fprintf (stderr,"UCACREAD: %5d / %5d / %5d sources\r",
nstar,jstar,starcat->nstars);
/* End of star loop */
}
/* End of 0:00 RA wrap loop */
}
/* End of successful zone file loop */
ntot = ntot + starcat->nstars;
if (nlog > 0)
fprintf (stderr,"UCACREAD: %4d / %4d: %5d / %5d / %5d sources from zone %4d \n",
iz+1,nz,nstar,jstar,starcat->nstars,zlist[iz]);
/* Close region input file */
ucacclose (starcat);
}
/* End of zone loop */
}
/* Summarize transfer */
if (nlog > 0) {
if (nz > 1)
fprintf (stderr,"UCACREAD: %d zones: %d / %d found\n",nz,nstar,ntot);
else
fprintf (stderr,"UCACREAD: 1 region: %d / %d found\n",nstar,ntot);
if (nstar > nstarmax)
fprintf (stderr,"UCACREAD: %d stars found; only %d returned\n",
nstar,nstarmax);
}
if (str1) {
free ((void *)str1);
}
return (nstar);
}
/* UCACRNUM -- Read HST Guide Star Catalog stars from CDROM */
int
ucacrnum (refcatname,nstars,sysout,eqout,epout,
gnum,gra,gdec,gpra,gpdec,gmag,gtype,nlog)
char *refcatname; /* Name of catalog (UAC, USAC, UAC2, USAC2) */
int nstars; /* Number of stars to find */
int sysout; /* Search coordinate system */
double eqout; /* Search coordinate equinox */
double epout; /* Proper motion epoch (0.0 for no proper motion) */
double *gnum; /* Array of Guide Star numbers (returned) */
double *gra; /* Array of right ascensions (returned) */
double *gdec; /* Array of declinations (returned) */
double *gpra; /* Array of right ascension proper motions (returned) */
double *gpdec; /* Array of declination proper motions (returned) */
double **gmag; /* Array of B and V magnitudes (returned) */
int *gtype; /* Array of object types (returned) */
int nlog; /* 1 for diagnostics */
{
int sysref=WCS_J2000; /* Catalog coordinate system */
double eqref=2000.0; /* Catalog equinox */
double epref=2000.0; /* Catalog epoch */
struct StarCat *starcat;
struct Star *star;
char *str;
char ucacenv[16];
int verbose;
int zone, zone0;
int jstar, imag, nmag;
int istar, nstar;
double num, ra, dec, rapm, decpm, mag;
if (nlog == 1)
verbose = 1;
else
verbose = 0;
/* Set catalog code and path to catalog */
if (strncmp (refcatname,"ucac4",5)==0 ||
strncmp (refcatname,"UCAC4",5)==0) {
ucat = UCAC4;
ucacpath = ucac4path;
strcpy (ucacenv, "UCAC4_PATH");
nmag = 8;
}
if (strncmp (refcatname,"ucac3",5)==0 ||
strncmp (refcatname,"UCAC3",5)==0) {
ucat = UCAC3;
ucacpath = ucac3path;
strcpy (ucacenv, "UCAC3_PATH");
nmag = 8;
}
else if (strncmp (refcatname,"ucac2",5)==0 ||
strncmp (refcatname,"UCAC2",5)==0) {
ucat = UCAC2;
ucacpath = ucac2path;
strcpy (ucacenv, "UCAC2_PATH");
nmag = 4;
}
else {
ucat = UCAC1;
ucacpath = ucac1path;
strcpy (ucacenv, "UCAC1_PATH");
nmag = 1;
}
/* If pathname is set in environment, override local value */
if ((str = getenv(ucacenv)) != NULL )
ucacpath = str;
/* If pathname is a URL, search and return */
if (!strncmp (ucacpath, "http:",5))
return (webrnum (ucacpath,refcatname,nstars,sysout,eqout,epout,1,
gnum,gra,gdec,gpra,gpdec,gmag,gtype,nlog));
/* Allocate catalog entry buffer */
star = (struct Star *) calloc (1, sizeof (struct Star));
star->num = 0.0;
nstar = 0;
zone0 = 0;
starcat = NULL;
/* Loop through star list */
for (jstar = 0; jstar < nstars; jstar++) {
zone = (int) (gnum[jstar] + 0.0000001);
/* Find numbered stars (rrr.nnnnnn) */
istar = (int) ((gnum[jstar] - (double) zone + 0.0000001) * 1000000.0);
if (istar > 0) {
if (zone != zone0) {
if (starcat != NULL)
ucacclose (starcat);
starcat = ucacopen (zone);
}
if (starcat == NULL) {
fprintf (stderr,"UCACRNUM: Zone %d file not found\n", zone);
return (0);
}
if (ucacstar (starcat, star, zone, istar)) {
fprintf (stderr,"UCACRNUM: Cannot read star %d.%06d\n", zone, istar);
gra[jstar] = 0.0;
gdec[jstar] = 0.0;
if (ucat == UCAC1)
gmag[0][jstar] = 0.0;
else {
for (imag = 0; imag < nmag; imag++)
gmag[imag][jstar] = 0.0;
}
gtype[jstar] = 0;
continue;
}
/* If star has been found in catalog */
/* ID number */
num = star->num;
/* Position in degrees at designated epoch */
ra = star->ra;
dec = star->dec;
rapm = star->rapm;
decpm = star->decpm;
wcsconp (sysref, sysout, eqref, eqout, epref, epout,
&ra, &dec, &rapm, &decpm);
/* Magnitude */
mag = star->xmag[0];
/* Save star position and magnitude in table */
gnum[jstar] = num;
gra[jstar] = ra;
gdec[jstar] = dec;
gpra[jstar] = rapm;
gpdec[jstar] = decpm;
gmag[0][jstar] = mag;
gtype[jstar] = (1000 * star->nimage) + star->ncat;
if (ucat == UCAC1)
gmag[0][jstar] = star->xmag[0];
else {
for (imag = 0; imag < nmag; imag++)
gmag[imag][jstar] = star->xmag[imag];
gmag[nmag][jstar] = star->errra;
gmag[nmag+1][jstar] = star->errdec;
gmag[nmag+2][jstar] = star->errpmr;
gmag[nmag+3][jstar] = star->errpmd;
gtype[jstar] = (1000 * star->nimage) + star->ncat;
}
if (nlog == 1) {
if (ucat == UCAC1)
fprintf (stderr,"UCACRNUM: %11.6f: %9.5f %9.5f %5.2f %s \n",
num, ra, dec, mag, star->isp);
else if (ucat == UCAC2) {
fprintf (stderr,"UCACRNUM: %11.6f: %9.5f %9.5f %5.2f",
num, ra, dec, star->xmag[0]);
fprintf (stderr," %5.2f %5.2f %5.2f",
star->xmag[1],star->xmag[2],star->xmag[3]);
fprintf (stderr," %d %d\n",star->nimage,star->ncat);
}
else if (ucat == UCAC3) {
fprintf (stderr,"UCACRNUM: %11.6f: %9.5f %9.5f %5.2f %5.2f",
num, ra, dec, star->xmag[0],star->xmag[1]);
fprintf (stderr," %5.2f %5.2f %5.2f",
star->xmag[2], star->xmag[3], star->xmag[4]);
fprintf (stderr," %5.2f %5.2f %5.2f",
star->xmag[5], star->xmag[6], star->xmag[7]);
fprintf (stderr," %d %d\n",star->nimage,star->ncat);
}
else if (ucat == UCAC4) {
fprintf (stderr,"UCACRNUM: %11.6f: %9.5f %9.5f %5.2f %5.2f",
num, ra, dec, star->xmag[0],star->xmag[1]);
fprintf (stderr," %5.2f %5.2f %5.2f",
star->xmag[2], star->xmag[3], star->xmag[4]);
fprintf (stderr," %5.2f %5.2f %5.2f",
star->xmag[5], star->xmag[6], star->xmag[7]);
fprintf (stderr," %d %d\n",star->nimage,star->ncat);
} else {
fprintf(stderr,"ucacread CATALOG NUMBER ERROR %d in line %d\n",ucat,__LINE__);
exit(-1);
}
}
}
/* End of star loop */
}
/* Summarize search */
ucacclose (starcat);
if (nlog > 0)
fprintf (stderr,"UCACRNUM: %d / %d found\n",nstar,starcat->nstars);
return (nstars);
}
/* UCACBIN -- Fill a FITS WCS image with UCAC Star Catalog stars */
int
ucacbin (refcatname, wcs, header, image, mag1, mag2, sortmag, magscale, nlog)
char *refcatname; /* Name of catalog (UAC, USAC, UAC2, USAC2) */
struct WorldCoor *wcs; /* World coordinate system for image */
char *header; /* FITS header for output image */
char *image; /* Output FITS image */
double mag1,mag2; /* Limiting magnitudes (none if equal) */
int sortmag; /* Magnitude by which to sort (1 or 2) */
double magscale; /* Scaling factor for magnitude to pixel flux
* (number of catalog objects per bin if 0) */
int nlog; /* 1 for diagnostics */
{
double cra; /* Search center J2000 right ascension in degrees */
double cdec; /* Search center J2000 declination in degrees */
double dra; /* Search half width in right ascension in degrees */
double ddec; /* Search half-width in declination in degrees */
int sysout; /* Search coordinate system */
double eqout; /* Search coordinate equinox */
double epout; /* Proper motion epoch (0.0 for no proper motion) */
double ra1,ra2; /* Limiting right ascensions of region in degrees */
double dec1,dec2; /* Limiting declinations of region in degrees */
int nz; /* Number of UCAC regions in search */
int zlist[MAXZONE]; /* List of region numbers */
int sysref = WCS_J2000; /* Catalog coordinate system */
double eqref = 2000.0; /* Catalog equinox */
double epref = 2000.0; /* Catalog epoch */
double secmarg = 60.0; /* Arcsec/century margin for proper motion */
struct StarCat *starcat; /* Star catalog data structure */
struct Star *star; /* Single star cata structure */
int verbose;
int wrap;
int ix, iy, iz;
int magsort;
int jstar;
int nrmax = MAXZONE;
int nstar, ntot;
int istar, istar1, istar2;
int jtable,iwrap, nread;
int pass;
int zone;
double num, ra, dec, rapm, decpm, mag;
double rra1, rra2, rdec1, rdec2;
double rdist, ddist;
char cstr[32];
char ucacenv[16];
char *str;
double xpix, ypix, flux;
int offscl;
int bitpix, w, h; /* Image bits/pixel and pixel width and height */
double logt = log(10.0);
ntot = 0;
if (nlog > 0)
verbose = 1;
else
verbose = 0;
/* Set catalog code and path to catalog */
if (strncmp (refcatname,"ucac4",5)==0 ||
strncmp (refcatname,"UCAC4",5)==0) {
ucat = UCAC4;
ucacpath = ucac4path;
strcpy (ucacenv, "UCAC4_PATH");
}
if (strncmp (refcatname,"ucac3",5)==0 ||
strncmp (refcatname,"UCAC3",5)==0) {
ucat = UCAC3;
ucacpath = ucac3path;
strcpy (ucacenv, "UCAC3_PATH");
}
else if (strncmp (refcatname,"ucac2",5)==0 ||
strncmp (refcatname,"UCAC2",5)==0) {
ucat = UCAC2;
ucacpath = ucac2path;
strcpy (ucacenv, "UCAC2_PATH");
}
else {
ucat = UCAC1;
ucacpath = ucac1path;
strcpy (ucacenv, "UCAC1_PATH");
}
/* If pathname is set in environment, override local value */
if ((str = getenv (ucacenv)) != NULL )
ucacpath = str;
/* Set image parameters */
bitpix = 0;
(void)hgeti4 (header, "BITPIX", &bitpix);
w = 0;
(void)hgeti4 (header, "NAXIS1", &w);
h = 0;
(void)hgeti4 (header, "NAXIS2", &h);
/* Set catalog search limits from image WCS information */
sysout = wcs->syswcs;
eqout = wcs->equinox;
epout = wcs->epoch;
wcscstr (cstr, sysout, eqout, epout);
wcssize (wcs, &cra, &cdec, &dra, &ddec);
SearchLim (cra,cdec,dra,ddec,sysout,&ra1,&ra2,&dec1,&dec2,verbose);
/* Make mag1 always the smallest magnitude */
if (mag2 < mag1) {
mag = mag2;
mag2 = mag1;
mag1 = mag;
}
if (sortmag < 1)
magsort = 0;
else if (sortmag > 4)
magsort = 3;
else
magsort = sortmag - 1;
/* Allocate catalog entry buffer */
star = (struct Star *) calloc (1, sizeof (struct Star));
star->num = 0.0;
nstar = 0;
jstar = 0;
/* Get RA and Dec limits in catalog (J2000) coordinates */
rra1 = ra1;
rra2 = ra2;
rdec1 = dec1;
rdec2 = dec2;
RefLim (cra,cdec,dra,ddec,sysout,sysref,eqout,eqref,epout,epref,secmarg,
&rra1, &rra2, &rdec1, &rdec2, &wrap, verbose);
/* Find UCAC Star Catalog zones in which to search */
nz = ucaczones (rdec1,rdec2,nrmax,zlist,verbose);
if (nz <= 0) {
fprintf (stderr,"UCACBIN: no UCAC zone for %.2f-%.2f %.2f %.2f\n",
rra1, rra2, rdec1, rdec2);
return (0);
}
/* Loop through zone list */
nstar = 0;
for (iz = 0; iz < nz; iz++) {
/* Get path to zone catalog */
zone = zlist[iz];
if ((starcat = ucacopen (zone)) != 0) {
jstar = 0;
jtable = 0;
for (iwrap = 0; iwrap <= wrap; iwrap++) {
/* Find first star based on RA */
if (iwrap == 0 || wrap == 0)
istar1 = ucacsra (starcat, star, zone, rra1);
else
istar1 = 1;
/* Find last star based on RA */
if (iwrap == 1 || wrap == 0)
istar2 = ucacsra (starcat, star, zone, rra2);
else
istar2 = starcat->nstars;
if (istar1 == 0 || istar2 == 0)
break;
nread = istar2 - istar1 + 1;
/* Loop through zone catalog for this region */
for (istar = istar1; istar <= istar2; istar++) {
jtable ++;
if (ucacstar (starcat, star, zone, istar)) {
fprintf(stderr,"UCACBIN: Cannot read star %d\n",istar);
break;
}
/* ID number */
num = star->num;
/* Magnitude */
mag = star->xmag[magsort];
/* Check magnitude limits */
pass = 1;
if (mag1 != mag2 && (mag < mag1 || mag > mag2))
pass = 0;
/* Check position limits */
if (pass) {
/* Get position in output coordinate system */
rapm = star->rapm;
decpm = star->decpm;
ra = star->ra;
dec = star->dec;
wcsconp (sysref, sysout, eqref, eqout, epref, epout,
&ra, &dec, &rapm, &decpm);
/* Check distance along RA and Dec axes */
ddist = wcsdist (cra,cdec,cra,dec);
if (ddist > ddec)
pass = 0;
rdist = wcsdist (cra,dec,ra,dec);
if (rdist > dra)
pass = 0;
}
/* Save star in FITS image */
if (pass) {
wcs2pix (wcs, ra, dec, &xpix, &ypix, &offscl);
if (!offscl) {
if (magscale > 0.0)
flux = magscale * exp (logt * (-mag / 2.5));
else
flux = 1.0;
ix = (int) (xpix + 0.5);
iy = (int) (ypix + 0.5);
addpix1 (image, bitpix, w,h, 0.0,1.0, xpix,ypix, flux);
nstar++;
jstar++;
}
else {
ix = 0;
iy = 0;
}
if (nlog == 1) {
fprintf (stderr,"UCACBIN: %11.6f: %9.5f %9.5f %s",
num,ra,dec,cstr);
if (magscale > 0.0)
fprintf (stderr, " %5.2f", mag);
if (!offscl)
flux = getpix1 (image, bitpix, w, h, 0.0, 1.0, ix, iy);
else
flux = 0.0;
fprintf (stderr," (%d,%d): %f\n", ix, iy, flux);
}
/* End of accepted star processing */
}
/* Log operation */
jstar++;
if (nlog > 0 && istar%nlog == 0)
fprintf (stderr,"UCACBIN: %5d / %5d / %5d sources\r",
nstar,jstar,starcat->nstars);
/* End of star loop */
}
/* End of 0:00 RA wrap loop */
}
/* End of successful zone file loop */
ntot = ntot + starcat->nstars;
if (nlog > 0)
fprintf (stderr,"UCACBIN: %4d / %4d: %5d / %5d / %5d sources from zone %4d \n",
iz+1,nz,nstar,jstar,starcat->nstars,zlist[iz]);
/* Close region input file */
ucacclose (starcat);
}
/* End of zone loop */
}
/* Summarize transfer */
if (nlog > 0) {
if (nz > 1)
fprintf (stderr,"UCACBIN: %d zones: %d / %d found\n",nz,nstar,ntot);
else
fprintf (stderr,"UCACBIN: 1 region: %d / %d found\n",nstar,ntot);
}
return (nstar);
}
/* UCACZONE -- Compute the zones over which to search
* in the specified range of coordinates.
* Build lists containing the first star and number of stars for each range.
*/
static int
ucaczones (dec1, dec2, nzmax, zones, verbose)
double dec1, dec2; /* Declination limits in degrees */
int nzmax; /* Maximum number of zones to find */
int *zones; /* Zone numbers (returned)*/
int verbose; /* 1 for diagnostics */
{
int nz; /* Number of declination zones found (returned) */
int iz, iz1, iz2;
int i;
double spd1, spd2;
for (i = 0; i < nzmax; i++)
zones[i] = 0;
/* Find first and last declination zone to search */
spd1 = 90.0 + dec1;
iz1 = (int) ((spd1 * 2.0) + 0.99999);
if (iz1 < 1) iz1 = 1;
spd2 = 90.0 + dec2;
iz2 = (int) ((spd2 * 2.0) + 0.99999);
if (ucat == UCAC1 && iz2 > 169) iz2 = 169;
if (ucat == UCAC2 && iz2 > 288) iz2 = 288;
if (ucat == UCAC3 && iz2 > 360) iz2 = 360;
if (ucat == UCAC4) {
iz1 = (int) ((spd1 * 5.0) + 0.99999);
if (iz1 < 1) iz1 = 1;
spd2 = 90.0 + dec2;
iz2 = (int) ((spd2 * 5.0) + 0.99999);
if (iz2 > 900) {
iz2 = 900;
}
}
if (iz1 > iz2)
return (0);
nz = iz2 - iz1 + 1;
if (verbose) {
fprintf (stderr,"UCACZONES: searching %d zones: %d - %d\n",nz,iz1,iz2);
fprintf(stderr,"UCACZONES: Dec: %.5f - %.5f\n", dec1,dec2);
}
i = 0;
for (iz = iz1; iz <= iz2; iz++) {
zones[i] = iz;
i++;
}
return (nz);
}
/* UCACSRA -- Find UCAC star closest to specified right ascension */
static int
ucacsra (sc, st, zone, rax0)
struct StarCat *sc; /* Star catalog descriptor */
struct Star *st; /* Current star entry */
int zone; /* Declination zone */
double rax0; /* Right ascension in degrees for which to search */
{
int istar, istar1, istar2, nrep;
double rax, ra1, ra2, ra, rdiff, rdiff1, rdiff2, sdiff;
char rastrx[32];
int debug = 0;
int maxnrep;
#ifdef UCAC_DEBUG
if (zone == 183) {
debug = 1;
fprintf(stderr,"Entering UCACSRA, zone %d\n",zone);
} else {
debug = 0;
}
#endif /* UCAC_DEBUG */
rax = rax0;
if (debug)
ra2str (rastrx, 31, rax, 3);
istar1 = 1;
ucacstar (sc, st, zone, istar1);
ra1 = st->ra;
istar2 = sc->nstars;
maxnrep = sc->nstars;
istar = (istar1+istar2)/2;
nrep = 0;
while (istar != istar1 && nrep < maxnrep) {
if (ucacstar (sc, st, zone, istar)) {
break;
} else {
ra = st->ra;
if (ra == ra1)
break;
if (debug) {
char rastr[32];
ra2str (rastr, 31, ra, 3);
fprintf (stderr,"UCACSRA %d %d: %s (%s)\n",
nrep,istar,rastr,rastrx);
}
nrep++;
if (ra > rax) {
istar2 = istar;
ra2 = ra;
} else {
istar1 = istar;
ra1 = ra;
}
istar = (istar1+istar2)/2;
if (debug) {
fprintf (stderr," ra1= %.5f ra2= %.5f rax= %.5f\n",
ra1,ra2,rax);
fprintf (stderr," istar1= %d istar= %d istar2= %d\n",
istar1,istar,istar2);
}
if (istar < 1)
istar = 1;
if (istar > sc->nstars)
istar = sc->nstars;
if (istar == istar1)
break;
}
}
return (istar);
}
/* UCACOPEN -- Open UCAC catalog file, returning number of entries */
struct StarCat *
ucacopen (zone)
int zone; /* Number of catalog zone to read */
{
FILE *fcat;
struct StarCat *sc;
int lfile, lpath;
char *zonefile;
char *zonepath; /* Full pathname for catalog file */
/* Set pathname for catalog file */
lpath = strlen (ucacpath) + 16;
zonepath = (char *) malloc (lpath);
if (ucat == UCAC1)
sprintf (zonepath, "%s/u1/z%03d", ucacpath, zone);
else if (ucat == UCAC2)
sprintf (zonepath, "%s/u2/z%03d", ucacpath, zone);
else if (ucat == UCAC3)
sprintf (zonepath, "%s/z%03d", ucacpath, zone);
else if (ucat == UCAC4)
sprintf (zonepath, "%s/z%03d", ucacpath, zone);
else {
fprintf(stderr,"ucacread CATALOG NUMBER ERROR %d in line %d\n",ucat,__LINE__);
exit(-1);
}
/* Set UCAC catalog header information */
sc = (struct StarCat *) calloc (1, sizeof (struct StarCat));
sc->byteswapped = 0;
/* Set number of stars in this zone catalog */
if (ucat == UCAC1)
sc->nbent = 67;
else if (ucat == UCAC2)
sc->nbent = 44;
else if (ucat == UCAC3)
sc->nbent = 84;
else if (ucat == UCAC4)
sc->nbent = sizeof(UCAC4star);
else {
fprintf(stderr,"ucacread CATALOG NUMBER ERROR %d in line %d\n",ucat,__LINE__);
exit(-1);
}
lfile = getfilesize (zonepath);
if (lfile < 2) {
fprintf (stderr,"UCAC zone catalog %s has no entries\n",zonepath);
free (sc);
sc = NULL;
return (NULL);
}
else
sc->nstars = lfile / sc->nbent;
/* Open UCAC file */
if (!(fcat = fopen (zonepath, "r"))) {
fprintf (stderr,"UCACOPEN: UCAC file %s cannot be read\n",zonepath);
free (sc);
return (NULL);
}
/* Separate filename from pathname and save in structure */
zonefile = strrchr (zonepath,'/');
if (zonefile)
zonefile = zonefile + 1;
else
zonefile = zonepath;
if (strlen (zonefile) < 24)
strcpy (sc->isfil, zonefile);
else
strncpy (sc->isfil, zonefile, 23);
/* Set other catalog information in structure */
sc->inform = 'J';
sc->coorsys = WCS_J2000;
sc->epoch = 2000.0;
sc->equinox = 2000.0;
sc->ifcat = fcat;
sc->sptype = 0;
if (ucat == UCAC1)
sc->nmag = 1;
else if (ucat == UCAC2)
sc->nmag = 4;
else if (ucat == UCAC3)
sc->nmag = 8;
else if (ucat == UCAC4)
sc->nmag = 8;
else {
fprintf(stderr,"ucacread CATALOG NUMBER ERROR %d in line %d\n",ucat,__LINE__);
exit(-1);
}
/* UCAC stars are RA-sorted within declination zones */
sc->rasorted = 1;
/* Check to see if byte-swapping is necessary */
cswap = 0;
if (ucat == UCAC2) {
UCAC2star us2; /* UCAC2 catalog entry for one star */
int nbr;
nbr = fread (&us2, 1, sc->nbent, sc->ifcat);
if (nbr < 1) {
fprintf (stderr,
"UCACOPEN: cannot read star 1 from UCAC2 zone catalog %s\n",
zonepath);
return (0);
}
/* RA should be between 0 and 360 degrees in milliarcseconds */
if (us2.rasec > 360 * 3600000 || us2.rasec < 0)
cswap = 1;
/* Dec should be between -90 and +90 degrees in milliarcseconds */
else if (us2.decsec > 90 * 3600000 || us2.decsec < -90 * 3600000)
cswap = 1;
/* J H K magnitudes should be near-positive */
else if (us2.jmag < -1000 || us2.hmag < -1000 || us2.kmag < -1000)
cswap = 1;
else
cswap = 0;
/* if (cswap)
fprintf (stderr,
"UCACOPEN: swapping bytes in UCAC2 zone catalog %s\n",
zonepath); */
}
else if (ucat == UCAC3) {
UCAC3star us3; /* UCAC3 catalog entry for one star */
int nbr;
nbr = fread (&us3, 1, sc->nbent, sc->ifcat);
if (nbr < 1) {
fprintf (stderr,
"UCACOPEN: cannot read star 1 from UCAC3 zone catalog %s\n",
zonepath);
return (0);
}
/* RA should be between 0 and 360 degrees in milliarcseconds */
if (us3.rasec > 360 * 3600000 || us3.rasec < 0)
cswap = 1;
/* Dec should be between -90 and +90 degrees in milliarcseconds */
else if (us3.decsec > 180 * 3600000 || us3.decsec < -180 * 3600000)
cswap = 1;
/* J H K magnitudes should be near-positive */
else if (us3.jmag < -1000 || us3.hmag < -1000 || us3.kmag < -1000)
cswap = 1;
else
cswap = 0;
/* if (cswap)
fprintf (stderr,
"UCACOPEN: swapping bytes in UCAC2 zone catalog %s\n",zomepath); */
}
else if (ucat == UCAC4) {
UCAC4star us4; /* UCAC4 catalog entry for one star */
int nbr;
nbr = fread (&us4, 1, sc->nbent, sc->ifcat);
if (nbr < 1) {
fprintf (stderr,
"UCACOPEN: cannot read star 1 from UCAC4 zone catalog %s\n",
zonepath);
return (0);
}
/* RA should be between 0 and 360 degrees in milliarcseconds */
if (us4.ra > 360 * 3600000 || us4.ra < 0)
cswap = 1;
/* Dec should be between -90 and +90 degrees in milliarcseconds */
else if (us4.spd > 180 * 3600000 || us4.spd < 0)
cswap = 1;
/* J H K magnitudes should be near-positive */
else if (us4.mag_j < -1000 || us4.mag_h < -1000 || us4.mag_k < -1000)
cswap = 1;
else
cswap = 0;
if (cswap)
fprintf (stderr,
"UCACOPEN: swapping bytes in UCAC4 zone catalog %s\n",zonepath);
}
else {
fprintf(stderr,"ucacread CATALOG NUMBER ERROR %d in line %d\n",ucat,__LINE__);
exit(-1);
}
sc->istar = 0;
free (zonepath);
return (sc);
}
void
ucacclose (sc)
struct StarCat *sc; /* Star catalog descriptor */
{
fclose (sc->ifcat);
free (sc);
return;
}
/* UCACSTAR -- Get UCAC catalog entry for one star;
return 0 if successful */
static int
ucacstar (sc, st, zone, istar)
struct StarCat *sc; /* Star catalog descriptor */
struct Star *st; /* Current star entry */
int zone; /* Declination zone */
int istar; /* Star sequence number in UCAC catalog region file */
{
char line[256];
int nbr, nbskip;
UCAC2star us2; /* UCAC2 catalog entry for one star */
UCAC3star us3; /* UCAC3 catalog entry for one star */
UCAC4star us4; /* UCAC4 catalog entry for one star */
int hpmIndex;
int lineLen;
int nvals;
FILE *hpmHandle;
char inLine[MAX_U4HPM_LINE];
char *inBuffer;
PU4HPM pU4hpm = NULL;
/* Drop out if catalog pointer is not set */
if (sc == NULL)
return (1);
/* Drop out if catalog is not open */
if (sc->ifcat == NULL)
return (2);
/* Drop out if star number is too small or too large */
if (istar < 1 || istar > sc->nstars) {
fprintf (stderr, "UCAC star %d is not in catalog\n",istar);
return (-1);
}
/* Move file pointer to start of correct star entry */
nbskip = sc->nbent * (istar - 1);
if (fseek (sc->ifcat,nbskip,SEEK_SET))
return (-1);
if (ucat == UCAC1)
nbr = fread (line, 1, sc->nbent, sc->ifcat);
else if (ucat == UCAC2)
nbr = fread (&us2, 1, sc->nbent, sc->ifcat);
else if (ucat == UCAC3)
nbr = fread (&us3, 1, sc->nbent, sc->ifcat);
else if (ucat == UCAC4)
nbr = fread (&us4, 1, sc->nbent, sc->ifcat);
else {
fprintf(stderr,"ucacread CATALOG NUMBER ERROR %d in line %d\n",ucat,__LINE__);
exit(-1);
}
if (nbr < sc->nbent) {
fprintf (stderr, "UCACSTAR %d / %d bytes read\n",nbr, sc->nbent);
return (-2);
}
#if 0
if ((zone == 552) && (istar == 43247)) {
printf("At zone %d and istar %d\n",zone,istar);
}
#endif
/* Star ID number = region.sequence */
st->num = (double) zone + (0.000001 * (double) istar);
/* Read UCAC1 position and proper motion from ASCII file */
if (ucat == UCAC1) {
/* Read position in degrees */
st->ra = atof (line) / 3600000.0;
st->dec = (atof (line+10) / 3600000.0) - 90.0;
/* Read proper motion and convert it to to degrees/year */
st->rapm = (atof (line+41) / 3600000.0) / cosdeg (st->dec);
st->decpm = atof (line+48) / 3600000.0;
/* Set V magnitude */
st->xmag[0] = atof (line+20) * 0.01;
}
/* Read UCAC2 position, proper motion, and magnitudes from binary file */
else if (ucat == UCAC2) {
if (cswap) {
ucacswap4 (&us2.rasec);
ucacswap4 (&us2.decsec);
ucacswap4 (&us2.rapm);
ucacswap4 (&us2.decpm);
ucacswap2 (&us2.cmag);
ucacswap2 (&us2.jmag);
ucacswap2 (&us2.hmag);
ucacswap2 (&us2.kmag);
}
st->ra = (double) us2.rasec / 3600000.0;
st->dec = (double) us2.decsec / 3600000.0;
st->errra = (double) us2.era / 3600000.0; /* mas */
st->errra = st->errra / cosdeg (st->dec); /* to RA deg */
st->errdec = (double) us2.edec / 3600000.0; /* mas */
st->rapm = (double) us2.rapm / 36000000.0; /* 0.1mas/yr */
st->decpm = (double) us2.decpm / 36000000.0; /* 0.1mas/yr */
st->errpmr = (double) us2.erapm / 36000000.0; /* 0.1mas/yr */
st->errpmr = st->errpmr / cosdeg (st->dec); /* to RA deg */
st->errpmd = (double) us2.edecpm / 36000000.0; /* 0.1mas/yr */
st->xmag[0] = ((double) us2.jmag) / 1000.0;
st->xmag[1] = ((double) us2.hmag) / 1000.0;
st->xmag[2] = ((double) us2.kmag) / 1000.0;
st->xmag[3] = ((double) us2.cmag) / 100.0;
st->nimage = (int) us2.nobs;
st->ncat = (int) us2.ncat;
}
/* Read UCAC3 position, proper motion, and magnitudes from binary file */
else if (ucat == UCAC3) {
if (cswap) {
ucacswap4 (&us3.rasec);
ucacswap4 (&us3.decsec);
ucacswap4 (&us3.rapm);
ucacswap4 (&us3.decpm);
ucacswap2 (&us3.sigra);
ucacswap2 (&us3.sigdec);
ucacswap2 (&us3.sigpmr);
ucacswap2 (&us3.sigpmd);
ucacswap2 (&us3.mmag);
ucacswap2 (&us3.amag);
ucacswap2 (&us3.jmag);
ucacswap2 (&us3.hmag);
ucacswap2 (&us3.kmag);
ucacswap2 (&us3.bmag);
ucacswap2 (&us3.rmag);
ucacswap2 (&us3.imag);
}
st->ra = (double) us3.rasec / 3600000.0; /* mas */
st->dec = (double) us3.decsec / 3600000.0; /* mas */
st->dec = st->dec - 90.0;
st->errra = (double) us3.sigra / 3600000.0; /* mas */
st->errra = st->errra / cosdeg (st->dec); /* to RA deg */
st->errdec = (double) us3.sigdec / 3600000.0; /* mas */
st->rapm = (double) us3.rapm / 36000000.0; /* 0.1mas/yr */
st->rapm = st->rapm / cosdeg (st->dec); /* to RA deg */
st->decpm = (double) us3.decpm / 36000000.0; /* 0.1mas/yr */
st->errpmr = (double) us3.sigpmr / 36000000.0; /* 0.1mas/yr */
st->errpmr = st->errpmr / cosdeg (st->dec); /* to RA deg */
st->errpmd = (double) us3.sigpmd / 36000000.0; /* 0.1mas/yr */
st->nimage = (int) us3.nu1;
st->ncat = (int) us3.us1;
if (us3.bmag == 0)
st->xmag[0] = 99.990;
else
st->xmag[0] = ((double) us3.bmag) / 1000.0;
if (us3.rmag == 0)
st->xmag[1] = 99.990;
else
st->xmag[1] = ((double) us3.rmag) / 1000.0;
if (us3.imag == 0)
st->xmag[2] = 99.990;
else
st->xmag[2] = ((double) us3.imag) / 1000.0;
if (us3.jmag == 0)
st->xmag[3] = 99.990;
else
st->xmag[3] = ((double) us3.jmag) / 1000.0;
if (us3.hmag == 0)
st->xmag[4] = 99.990;
else
st->xmag[4] = ((double) us3.hmag) / 1000.0;
if (us3.kmag == 0)
st->xmag[5] = 99.990;
else
st->xmag[5] = ((double) us3.kmag) / 1000.0;
if (us3.mmag == 0)
st->xmag[6] = 99.990;
else
st->xmag[6] = ((double) us3.mmag) / 1000.0;
if (us3.amag == 0)
st->xmag[7] = 99.990;
else
st->xmag[7] = ((double) us3.amag) / 1000.0;
}
else if (ucat == UCAC4) {
if (cswap) {
ucacswap4 (&us4.ra);
ucacswap4 (&us4.spd);
ucacswap4 (&us4.pm_ra);
ucacswap4 (&us4.pm_dec);
ucacswap4 (&us4.id_number);
ucacswap2 (&us4.ra_sigma);
ucacswap2 (&us4.dec_sigma);
ucacswap2 (&us4.pm_ra_sigma);
ucacswap2 (&us4.pm_dec_sigma);
ucacswap2 (&us4.magm);
ucacswap2 (&us4.maga);
ucacswap2 (&us4.mag_j);
ucacswap2 (&us4.mag_h);
ucacswap2 (&us4.mag_k);
ucacswap2 (&us4.apass_mag[0]);
ucacswap2 (&us4.apass_mag[1]);
ucacswap2 (&us4.apass_mag[2]);
ucacswap2 (&us4.apass_mag[3]);
ucacswap2 (&us4.apass_mag[4]);
}
st->ra = (double) us4.ra / 3600000.0; /* mas */
st->dec = (double) us4.spd / 3600000.0; /* mas */
st->dec = st->dec - 90.0;
st->errra = (double) us4.ra_sigma / 3600000.0; /* mas */
st->errra = st->errra / cosdeg (st->dec); /* to RA deg */
st->errdec = (double) us4.dec_sigma / 3600000.0; /* mas */
/* Must get proper motions from a different catalog */
if ((us4.pm_ra == 32767) || (us4.pm_dec == 32767)) {
if (hpmLines == 0) {
/* Read in the high proper motion catalog */
hpmHandle = fopen(hpmpath,"rt");
if (hpmHandle == NULL) {
printf("ERROR: failed to open %s\n",hpmpath);
exit(-1);
}
hpmLines = 0;
while(1) {
if (hpmLines >= MAX_U4HPM_RECORDS) {
printf("ERROR: MAX_U4HPM_RECORDS exceeded\n");
exit(-1);
}
pU4hpm = &u4hpm_table[hpmLines];
memset(pU4hpm,0,sizeof(U4HPM));
inBuffer = fgets(inLine,MAX_U4HPM_LINE,hpmHandle);
if (inBuffer == NULL) {
break;
}
lineLen = strlen(inBuffer);
/* Trim off the carriage return */
if (inBuffer[lineLen-1] == 10) {
inBuffer[lineLen-1] = 0;
lineLen--;
}
/* Trim off the line feed */
if (inBuffer[lineLen-1] == 13) {
inBuffer[lineLen-1] = 0;
lineLen--;
}
nvals = sscanf(inBuffer,"%d %d %d %d %d %d %d %d",
&pU4hpm->rnm,
&pU4hpm->zn,
&pU4hpm->rnz,
&pU4hpm->pmrc,
&pU4hpm->pmd,
&pU4hpm->ra,
&pU4hpm->dec,
&pU4hpm->maga);
if (nvals != 8) {
fprintf(stderr,"Error reading line %d of u4hpm %s\n",hpmLines,inLine);
} else {
hpmLines++;
}
}
fclose(hpmHandle);
}
for (hpmIndex = 0; hpmIndex < hpmLines; hpmIndex++) {
pU4hpm = &u4hpm_table[hpmIndex];
if ((zone == pU4hpm->zn) &&
(us4.id_number == pU4hpm->rnm) &&
(us4.ra == pU4hpm->ra) &&
(us4.spd == pU4hpm->dec) &&
(us4.maga == pU4hpm->maga)) {
/* We have a match */
st->rapm = (1.0 * pU4hpm->pmrc) / 36000000.0; /* 0.1 mas/yr */
st->rapm = st->rapm / cosdeg (st->dec); /* to RA deg */
st->decpm = (1.0 * pU4hpm->pmd) / 36000000.0; /* 0.1 mas/yr */
break;
}
}
if (hpmIndex == hpmLines) {
fprintf(stderr,"ERROR: no proper motion found for zone %d entry %d\n",zone,us4.id_number);
}
} else {
st->rapm = (double) us4.pm_ra / 36000000.0; /* 0.1mas/yr */
st->rapm = st->rapm / cosdeg (st->dec); /* to RA deg */
st->decpm = (double) us4.pm_dec / 36000000.0; /* 0.1mas/yr */
}
st->errpmr = (double) (us4.pm_ra_sigma+128) / 36000000.0; /* 0.1mas/yr */
st->errpmr = st->errpmr / cosdeg (st->dec); /* to RA deg */
st->errpmd = (double) (us4.pm_dec_sigma+128) / 36000000.0; /* 0.1mas/yr */
st->nimage = (int) us4.n_ucac_used;
st->ncat = (int) us4.n_cats_used;
if (us4.apass_mag[0] == 20000)
st->xmag[0] = 99.990;
else
st->xmag[0] = ((double) us4.apass_mag[0]) / 1000.0;
if (us4.apass_mag[1] == 20000)
st->xmag[1] = 99.990;
else
st->xmag[1] = ((double) us4.apass_mag[1]) / 1000.0;
if (us4.apass_mag[2] == 20000)
st->xmag[2] = 99.990;
else
st->xmag[2] = ((double) us4.apass_mag[2]) / 1000.0;
if (us4.apass_mag[3] == 20000)
st->xmag[3] = 99.990;
else
st->xmag[3] = ((double) us4.apass_mag[3]) / 1000.0;
if (us4.apass_mag[4] == 20000)
st->xmag[4] = 99.990;
else
st->xmag[4] = ((double) us4.apass_mag[4]) / 1000.0;
if (us4.mag_j == 0)
st->xmag[5] = 99.990;
else
st->xmag[5] = ((double) us4.mag_j) / 1000.0;
if (us4.mag_h == 0)
st->xmag[6] = 99.990;
else
st->xmag[6] = ((double) us4.mag_h) / 1000.0;
if (us4.mag_k == 0)
st->xmag[7] = 99.990;
else
st->xmag[7] = ((double) us4.mag_k) / 1000.0;
if (us4.magm == 20000)
st->xmag[8] = 99.990;
else
st->xmag[8] = ((double) us4.magm) / 1000.0;
if (us4.maga == 20000)
st->xmag[9] = 99.990;
else
st->xmag[9] = ((double) us4.maga) / 1000.0;
/* DASCH specific. Since we are sorting on mag[8], try using APASS B or mag[9] first */
if (st->xmag[9] < 90.0) {
st->xmag[8] = st->xmag[9];
}
if (st->xmag[0] < 90.0) {
st->xmag[8] = st->xmag[0];
}
}
else {
fprintf(stderr,"ucacread CATALOG NUMBER ERROR %d in line %d\n",ucat,__LINE__);
exit(-1);
}
#if 0
if ((zone == 256) && (istar == 149200)) {
printf("At zone %d and istar %d\n",zone,istar);
}
#endif
#ifdef UCAC_DEBUG
if (zone == 183) {
fprintf(stderr,"istar %6d, ra %.3f dec %.3f\n",istar,st->ra,st->dec);
}
#endif /* UCAC_DEBUG */
return (0);
}
/* UCACSWAP2 -- Swap bytes in Integer*2 number in place */
static void
ucacswap2 (string)
char *string; /* Address of starting point of bytes to swap */
{
char *sbyte, temp;
sbyte = string;
temp = sbyte[0];
sbyte[0] = sbyte[1];
sbyte[1] = temp;
return;
}
/* UCACSWAP4 -- Reverse bytes of Integer*4 or Real*4 number in place */
static void
ucacswap4 (string)
char *string; /* Address of Integer*4 or Real*4 vector */
{
char temp0, temp1, temp2, temp3;
temp3 = string[0];
temp2 = string[1];
temp1 = string[2];
temp0 = string[3];
string[0] = temp0;
string[1] = temp1;
string[2] = temp2;
string[3] = temp3;
return;
}
/* Apr 24 2003 New subroutines, based on ty2read.c and uacread.c
* May 30 2003 Add UCAC2, compute file size rather than reading it from file
* Jun 2 2003 Print proper motions as mas/year
* Aug 22 2003 Add radi argument for inner edge of search annulus
* Sep 25 2003 Add ucacbin() to fill an image with sources
* Oct 6 2003 Update ubcread() and ubcbin() for improved RefLim()
* Nov 10 2003 Fix byte-swapping test in ucacopen() found by Ed Beshore
* Nov 18 2003 Initialize image size and bits/pixel from header in ucacbin()
* Dec 1 2003 Add missing tab to n=-1 header
* Dec 12 2003 Fix bug in wcs2pix() call in ucacbin()
*
* Jan 4 2005 Fix bug in if statement on line 626 found by Dan Katz at JPL
*
* Jun 20 2006 Drop unused variables
* Sep 26 2006 Increase length of rastr and destr from 16 to 32
* Nov 16 2006 Fix binning
*
* Jan 8 2007 Drop unused variable in ucacbin()
* Jan 10 2007 Add match=1 argument to webrnum()
* Jul 11 2007 Add magnitude byte-swap check
*
* Oct 5 2009 Add UCAC3
* Oct 15 2009 Read extra stars in RA
* Oct 22 2009 Set UCAC3 magnitudes to 99.99 if zero
* Oct 30 2009 Add position and proper motion error to Star structure
* Nov 2 2009 Print UCAC3 errors if n = -1
* Nov 5 2009 Return number of images and catalogs in gtype
* Nov 5 2009 Return errors in position and proper motion as magnitudes
* Nov 5 2009 Return UCAC2 and UCAC3 RA proper motion and error as RA degrees
* Dec 14 2009 Drop nmag1 from ucacread() and ucacrnum(); it wasn't being used
*
* Jan 29 2013 Add UCAC4 support see "DASCH" tag for DASCH-specific changes
*
* Jun 12 2015 Fix UCAC4 support to include BVgriJHK magnitudes correctly
*
* Jun 22 2016 Remove extra variables from format string (via Ole Streicher)
*
* Aug 3 2018 Fix bug to set up UCAC4 hpm file path if environment UCAC4_PATH used
*/
|