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
|
/*** File libwcs/uacread.c
*** December 15, 2000
*** By Doug Mink, dmink@cfa.harvard.edu
*** Harvard-Smithsonian Center for Astrophysics
* Subroutines to read from the USNO A and SA catalogs
*/
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "fitshead.h"
#include "vimoswcs.h"
#include "vimoswcscat.h"
void br2sp(double *br, double b, double r, char *isp);
#define USNOA10 0 /* USNO A-1.0 Catalog */
#define USNOSA10 1 /* USNO SA-1.0 Catalog */
#define USNOA20 2 /* USNO A-2.0 Catalog */
#define USNOSA20 3 /* USNO SA-2.0 Catalog */
static int ucat=USNOA10;
/* USNO SA-1.0 directory pathname; replaced by USA1_PATH environment variable
* This may also be a URL to a catalog search engine */
static char usa1path[64]="/data/usnosa10";
/* USNO SA-2.0 directory pathname; replaced by USA2_PATH environment variable
* This may also be a URL to a catalog search engine */
static char usa2path[64]="/data/usnosa20";
/* USNO A-1.0 directory pathname; replaced by UA1_PATH environment variable
* Use this if CDROMs have been transferred to a single hard disk
* Otherwise set to null string ("") and use cdroot
* This may also be a URL to a catalog search engine */
static char ua1path[64]="/data/ua1";
/* USNO A-2.0 directory pathname; replaced by UA2_PATH environment variable
* Use this if CDROMs have been transferred to a single hard disk
* Otherwise set to null string ("") and use cdroot
* This may also be a URL to a catalog search engine */
static char ua2path[64]="/data/ua2";
static char *uapath;
/* Root directory for CDROMs; replaced by UA_ROOT environment variable */
/* Ignored if uapath or UA*_PATH are set */
static char cdroot[32]="/cdrom";
/* Names of CDROM's for USNO A Catalogs */
static char cdname[11][8]={"ua001","ua002","ua003","ua004","ua005","ua006",
"ua007","ua008","ua009","ua010","ua011"};
/* Disks for 24 zones of USNO A-1.0 Catalog */
static int zdisk1[24]={1,1,6,5,3,2,1,4,6,5,7,10,8,7,8,9,9,4,10,3,2,6,2,3};
/* Disks for 24 zones of USNO A-2.0 Catalog */
static int zdisk2[24]={1,1,9,7,5,4,3,2,1,6,7,10,9,8,8,11,10,11,6,4,2,3,3,2};
typedef struct {
int rasec, decsec, magetc;
} UACstar;
static int nstars; /* Number of stars in catalog */
static int cswap = 0; /* Byte reverse catalog to Intel/DEC order if 1 */
static FILE *fcat;
#define ABS(a) ((a) < 0 ? (-(a)) : (a))
#define NZONES 24
static double uacra();
static double uacdec();
static double uacmagr();
static double uacmagb();
static int uacmagerr();
static int uacgsc();
static int uacplate();
static int uaczones();
static int uaczone();
static int uacsra();
static int uacopen();
static int uacpath();
static int uacstar();
static void uacswap();
static int xplate = 0; /* If nonzero, use objects only from this plate */
void setuplate (xplate0)
int xplate0;
{ xplate = xplate0; return; }
int getuplate ()
{ return (xplate); }
/* USACREAD -- Read USNO SA Catalog stars from CDROM */
int
usaread (cra,cdec,dra,ddec,drad,distsort,sysout,eqout,epout,mag1,mag2,nstarmax,
unum,ura,udec,umag,umagb,uplate,nlog)
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) */
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 nstarmax; /* Maximum number of stars to be returned */
double *unum; /* Array of UA numbers (returned) */
double *ura; /* Array of right ascensions (returned) */
double *udec; /* Array of declinations (returned) */
double *umag; /* Array of red magnitudes (returned) */
double *umagb; /* Array of blue magnitudes (returned) */
int *uplate; /* Array of plate numbers (returned) */
int nlog; /* Logging interval */
{
int i;
int uacread();
ucat = USNOSA10;
i = uacread ("usac",distsort,cra,cdec,dra,ddec,drad,
sysout,eqout,epout,mag1,mag2,nstarmax,
unum,ura,udec,umag,umagb,uplate,nlog);
ucat = USNOA10;
return (i);
}
/* UACREAD -- Read USNO A or SA Catalog stars from CDROM */
int
uacread (refcatname,distsort,cra,cdec,dra,ddec,drad,sysout,eqout,epout,
mag1,mag2,nstarmax,unum,ura,udec,umag,umagb,uplate,nlog)
char *refcatname; /* Name of catalog (UAC, USAC, UAC2, USAC2) */
int distsort; /* 1 to sort stars by distance from center */
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) */
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 nstarmax; /* Maximum number of stars to be returned */
double *unum; /* Array of UA numbers (returned) */
double *ura; /* Array of right ascensions (returned) */
double *udec; /* Array of declinations (returned) */
double *umag; /* Array of red magnitudes (returned) */
double *umagb; /* Array of blue magnitudes (returned) */
int *uplate; /* Array of plate numbers (returned) */
int nlog; /* Logging interval */
{
double ra1,ra2; /* Limiting right ascensions of region in degrees */
double dec1,dec2; /* Limiting declinations of region in degrees */
int nz; /* Number of input UA zone files */
int zlist[NZONES]; /* List of input UA zones */
UACstar star; /* UA catalog entry for one star */
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 */
double *udist; /* Array of distances to stars */
int sysref=VIMOSWCS_J2000; /* Catalog coordinate system */
double eqref=2000.0; /* Catalog equinox */
double rra1, rra2, rdec1, rdec2;
double num; /* UA numbers */
int wrap, iwrap;
int verbose;
int znum, itot,iz, i;
int itable, jtable,jstar;
int nstar, nread;
int uara1, uara2, uadec1, uadec2;
double ra,dec;
double mag, magb;
int istar, istar1, istar2, plate;
int nzmax = NZONES; /* Maximum number of declination zones */
int isp;
char ispc[2];
char *str;
char cstr[32];
itot = 0;
if (nlog > 0)
verbose = 1;
else
verbose = 0;
/* Set catalog code and path to catalog */
if (strncmp (refcatname,"us",2)==0 ||
strncmp (refcatname,"US",2)==0) {
if (strchr (refcatname, '2') != NULL) {
if ((str = getenv("USA2_PATH")) != NULL)
strcpy (usa2path,str);
ucat = USNOSA20;
uapath = usa2path;
}
else {
if ((str = getenv("USA1_PATH")) != NULL)
strcpy (usa1path,str);
ucat = USNOSA10;
uapath = usa1path;
}
}
else if (strncmp (refcatname,"ua",2)==0 ||
strncmp (refcatname,"UA",2)==0) {
if (strchr (refcatname, '2') != NULL) {
if ((str = getenv("UA2_PATH")) != NULL)
strcpy (ua2path,str);
else if ((str = getenv("UA2_ROOT")) != NULL) {
ua2path[0] = 0;
strcpy (cdroot,str);
}
ucat = USNOA20;
uapath = ua2path;
}
else {
if ((str = getenv("UA1_PATH")) != NULL)
strcpy (ua1path,str);
else if ((str = getenv("UA1_ROOT")) != NULL) {
ua1path[0] = 0;
strcpy (cdroot,str);
}
ucat = USNOA10;
uapath = ua1path;
}
}
else {
fprintf (stderr, "UACREAD: %s not a USNO catalog\n", refcatname);
return (0);
}
/* If root pathname is a URL, search and return */
if (!strncmp (uapath, "http:",5)) {
return (webread (uapath,refcatname,distsort,cra,cdec,dra,ddec,drad,
sysout,eqout,epout,mag1,mag2,nstarmax,unum,ura,udec,
NULL,NULL,umag,umagb,uplate,nlog));
}
vimoswcscstr (cstr, sysout, eqout, epout);
SearchLim (cra,cdec,dra,ddec,sysout,&ra1,&ra2,&dec1,&dec2,verbose);
/* mag1 is always the smallest magnitude */
if (mag2 < mag1) {
mag = mag2;
mag2 = mag1;
mag1 = mag;
}
/* Find UA Star Catalog regions in which to search */
rra1 = ra1;
rra2 = ra2;
rdec1 = dec1;
rdec2 = dec2;
RefLim (cra, cdec, dra, ddec, sysout, sysref, eqout, eqref, epout,
&rra1, &rra2, &rdec1, &rdec2, verbose);
nz = uaczones (rra1, rra2, rdec1, rdec2, nzmax, zlist, verbose);
if (nz <= 0) {
fprintf (stderr, "UACREAD: no USNO A zones found\n");
return (0);
}
/* If RA range includes zero, set a flat */
wrap = 0;
if (rra1 > rra2)
wrap = 1;
else
wrap = 0;
uara1 = (int) (rra1 * 360000.0 + 0.5);
uara2 = (int) (rra2 * 360000.0 + 0.5);
uadec1 = (int) ((rdec1 * 360000.0) + 32400000.5);
uadec2 = (int) ((rdec2 * 360000.0) + 32400000.5);
udist = (double *) malloc (nstarmax * sizeof (double));
/* Loop through region list */
nstar = 0;
for (iz = 0; iz < nz; iz++) {
/* Get path to zone catalog */
znum = zlist[iz];
if ((nstars = uacopen (znum)) != 0) {
jstar = 0;
jtable = 0;
for (iwrap = 0; iwrap <= wrap; iwrap++) {
/* Find first star based on RA */
if (iwrap == 0 || wrap == 0)
istar1 = uacsra (rra1);
else
istar1 = 1;
/* Find last star based on RA */
if (iwrap == 1 || wrap == 0)
istar2 = uacsra (rra2);
else
istar2 = nstars;
if (istar1 == 0 || istar2 == 0)
break;
nread = istar2 - istar1 + 1;
itable = 0;
/* Loop through zone catalog for this region */
for (istar = istar1; istar <= istar2; istar++) {
itable ++;
jtable ++;
if (uacstar (istar, &star)) {
fprintf (stderr,"UACREAD: Cannot read star %d\n", istar);
break;
}
/* Extract selected fields */
else {
/* Check position limits */
if ((star.decsec >= uadec1 && star.decsec <= uadec2) &&
((wrap && (star.rasec>=uara1 || star.rasec<=uara2)) ||
(!wrap && (star.rasec>=uara1 && star.rasec<=uara2))
)){
/* Check magnitude, distance, and plate number */
mag = uacmagr (star.magetc); /* Red magnitude */
plate = uacplate (star.magetc);
ra = uacra (star.rasec);
dec = uacdec (star.decsec);
vimoswcscon (sysref,sysout,eqref,eqout,&ra,&dec,epout);
if (distsort || drad > 0)
dist = vimoswcsdist (cra,cdec,ra,dec);
else
dist = 0.0;
if ((mag1==mag2 || (mag>=mag1 && mag<=mag2)) &&
(drad == 0.0 || dist < drad) &&
(xplate == 0 || plate == xplate)) {
magb = uacmagb (star.magetc);
br2sp (NULL, magb, mag, ispc);
isp = (1000 * (int)ispc[0]) + (int)ispc[1];
num = (double) znum +
(0.00000001 * (double)istar);
/* Save star position and magnitude in table */
if (nstar < nstarmax) {
unum[nstar] = num;
ura[nstar] = ra;
udec[nstar] = dec;
umag[nstar] = mag;
umagb[nstar] = magb;
uplate[nstar] = plate;
udist[nstar] = dist;
if (dist > maxdist) {
maxdist = dist;
farstar = nstar;
}
if (mag > faintmag) {
faintmag = mag;
faintstar = nstar;
}
}
/* If too many stars and distance sorting,
replace furthest star */
else if (distsort) {
if (dist < maxdist) {
unum[farstar] = num;
ura[farstar] = ra;
udec[farstar] = dec;
umag[farstar] = mag;
umagb[farstar] = magb;
uplate[farstar] = plate;
udist[farstar] = dist;
/* Find new farthest star */
maxdist = 0.0;
for (i = 0; i < nstarmax; i++) {
if (udist[i] > maxdist) {
maxdist = udist[i];
farstar = i;
}
}
}
}
/* If too many stars, replace faintest star */
else if (mag < faintmag) {
unum[faintstar] = num;
ura[faintstar] = ra;
udec[faintstar] = dec;
umag[faintstar] = mag;
umagb[faintstar] = magb;
uplate[faintstar] = plate;
udist[faintstar] = dist;
/* Find new faintest star */
faintmag = 0.0;
for (i = 0; i < nstarmax; i++) {
if (umag[i] > faintmag) {
faintmag = umag[i];
faintstar = i;
}
}
}
nstar++;
jstar++;
if (nlog == 1)
fprintf (stderr,"UACREAD: %04d.%08d: %9.5f %9.5f %s %5.2f\n",
znum,istar,ra,dec,cstr,mag);
/* End of accepted star processing */
}
}
/* End of individual star processing */
}
/* Log operation */
if (nlog > 0 && itable%nlog == 0)
fprintf (stderr,"UACREAD: zone %d (%2d / %2d) %8d / %8d / %8d sources\r",
znum, iz+1, nz, jstar, itable, nread);
/* End of star loop */
}
/* End of wrap loop */
}
/* Close zone input file */
(void) fclose (fcat);
itot = itot + itable;
if (nlog > 0)
fprintf (stderr,"UACREAD: zone %d (%2d / %2d) %8d / %8d / %8d sources \n",
znum, iz+1, nz, jstar, jtable, nstars);
/* End of zone processing */
}
/* End of zone loop */
}
/* Summarize search */
if (nlog > 0) {
if (nz > 1)
fprintf (stderr,"UACREAD: %d zones: %d / %d found\n",nz,nstar,itot);
else
fprintf (stderr,"UACREAD: 1 zone: %d / %d found\n",nstar,itable);
if (nstar > nstarmax)
fprintf (stderr,"UACREAD: %d stars found; only %d returned\n",
nstar,nstarmax);
}
free ((char *)udist);
return (nstar);
}
int
usarnum (nnum,sysout,eqout,epout,unum,ura,udec,umag,umagb,uplate,nlog)
int nnum; /* 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 *unum; /* Array of UA numbers to find */
double *ura; /* Array of right ascensions (returned) */
double *udec; /* Array of declinations (returned) */
double *umag; /* Array of red magnitudes (returned) */
double *umagb; /* Array of blue magnitudes (returned) */
int *uplate; /* Array of plate numbers (returned) */
int nlog; /* Logging interval */
{
int i;
int uacrnum();
ucat = USNOSA10;
i = uacrnum ("USAC",nnum,sysout,eqout,epout,unum,ura,udec,umag,umagb,uplate,
nlog);
ucat = USNOA10;
return (i);
}
int
uacrnum (refcatname,nnum,sysout,eqout,epout,unum,ura,udec,umag,umagb,uplate,
nlog)
char *refcatname; /* Name of catalog (UAC, USAC, UAC2, USAC2) */
int nnum; /* 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 *unum; /* Array of UA numbers to find */
double *ura; /* Array of right ascensions (returned) */
double *udec; /* Array of declinations (returned) */
double *umag; /* Array of red magnitudes (returned) */
double *umagb; /* Array of blue magnitudes (returned) */
int *uplate; /* Array of spectral types (returned) */
int nlog; /* Logging interval */
{
UACstar star; /* UA catalog entry for one star */
int sysref=VIMOSWCS_J2000; /* Catalog coordinate system */
double eqref=2000.0; /* Catalog equinox */
int isp;
char ispc[2];
int znum;
int jnum;
int nzone;
int nfound = 0;
double ra,dec;
double mag, magb;
int istar, plate;
char *str;
/* Set catalog code and path to catalog */
if (strncmp (refcatname,"us",2)==0 ||
strncmp (refcatname,"US",2)==0) {
if (strchr (refcatname, '2') != NULL) {
if ((str = getenv("USA2_PATH")) != NULL)
strcpy (usa2path,str);
ucat = USNOSA20;
uapath = usa2path;
}
else {
if ((str = getenv("USA1_PATH")) != NULL)
strcpy (usa1path,str);
ucat = USNOSA10;
uapath = usa1path;
}
}
else if (strncmp (refcatname,"ua",2)==0 ||
strncmp (refcatname,"UA",2)==0) {
if (strchr (refcatname, '2') != NULL) {
if ((str = getenv("UA2_PATH")) != NULL)
strcpy (ua2path,str);
else if ((str = getenv("UA2_ROOT")) != NULL) {
ua2path[0] = 0;
strcpy (cdroot,str);
}
ucat = USNOA20;
uapath = ua2path;
}
else {
if ((str = getenv("UA1_PATH")) != NULL)
strcpy (ua1path,str);
else if ((str = getenv("UA1_ROOT")) != NULL) {
ua1path[0] = 0;
strcpy (cdroot,str);
}
ucat = USNOA10;
uapath = ua1path;
}
}
else {
fprintf (stderr, "UACREAD: %s not a USNO catalog\n", refcatname);
return (0);
}
/* If root pathname is a URL, search and return */
if (!strncmp (uapath, "http:",5)) {
return (webrnum (uapath,refcatname,nnum,sysout,eqout,epout,
unum,ura,udec,NULL,NULL,umag,umagb,uplate,nlog));
}
/* Loop through star list */
for (jnum = 0; jnum < nnum; jnum++) {
/* Get path to zone catalog */
znum = (int) unum[jnum];
if ((nzone = uacopen (znum)) != 0) {
istar = (int) (((unum[jnum] - znum) * 100000000.0) + 0.5);
if (istar > nzone) {
fprintf (stderr,"UACRNUM: Star %d > max. in zone %d\n",
istar,nzone);
break;
}
if (uacstar (istar, &star)) {
fprintf (stderr,"UACRNUM: Cannot read star %d\n", istar);
break;
}
/* Extract selected fields */
else {
ra = uacra (star.rasec); /* Right ascension in degrees */
dec = uacdec (star.decsec); /* Declination in degrees */
magb = uacmagb (star.magetc); /* Blue magnitude */
mag = uacmagr (star.magetc); /* Red magnitude */
plate = uacplate (star.magetc); /* Plate number */
vimoswcscon (sysref, sysout, eqref, eqout, &ra, &dec, epout);
/* Save star position and magnitude in table */
ura[nfound] = ra;
udec[nfound] = dec;
umag[nfound] = mag;
umagb[nfound] = magb;
br2sp (NULL, magb, mag, ispc);
isp = (1000 * (int)ispc[0]) + (int)ispc[1];
uplate[nfound] = plate;
nfound++;
if (nlog == 1)
fprintf (stderr,"UACRNUM: %04d.%08d: %9.5f %9.5f %5.2f\n",
znum,istar,ra,dec,mag);
/* Log operation */
if (nlog > 0 && jnum%nlog == 0)
fprintf (stderr,"UACRNUM: %4d.%8d %8d / %8d sources\r",
znum, istar, jnum, nnum);
(void) fclose (fcat);
/* End of star processing */
}
/* End of star */
}
/* End of star loop */
}
/* Summarize search */
if (nlog > 0)
fprintf (stderr,"UACRNUM: %d / %d found\n",nfound,nnum);
return (nfound);
}
/* Declination zone numbers */
int azone[NZONES]={0,75,150,225,300,375,450,525,600,675,750,825,900,
975,1050,1125,1200,1275,1350,1425,1500,1575,1650,1725};
/* UACZONES -- figure out which UA zones will need to be searched */
static int
uaczones (ra1, ra2, dec1, dec2, nzmax, zones, verbose)
double ra1, ra2; /* Right ascension limits in degrees */
double dec1, dec2; /* Declination limits in degrees */
int nzmax; /* Maximum number of zones to find */
int *zones; /* Region numbers (returned)*/
int verbose; /* 1 for diagnostics */
{
int nrgn; /* Number of zones found (returned) */
int iz,iz1,iz2,i;
for (i = 0; i < nzmax; i++)
zones[i] = 0;
nrgn = 0;
/* Find zone range to search based on declination */
iz1 = uaczone (dec1);
iz2 = uaczone (dec2);
/* Tabulate zones to search */
i = 0;
if (iz2 >= iz1) {
for (iz = iz1; iz <= iz2; iz++)
zones[i++] = azone[iz];
}
else {
for (iz = iz2; iz <= iz1; iz++)
zones[i++] = azone[iz];
}
nrgn = i;
if (verbose) {
fprintf(stderr,"UACZONES: %d zones: %d - %d\n",nrgn,zones[0],zones[i-1]);
fprintf(stderr,"UACZONES: RA: %.5f - %.5f, Dec: %.5f - %.5f\n",ra1,ra2,dec1,dec2);
}
return (nrgn);
}
/* UACRA -- returns right ascension in degrees from the UA star structure */
static double
uacra (rasec)
int rasec; /* RA in 100ths of arcseconds from UA catalog entry */
{
return ((double) (rasec) / 360000.0);
}
/* UACDEC -- returns the declination in degrees from the UA star structure */
static double
uacdec (decsec)
int decsec; /* Declination in 100ths of arcseconds from UA catalog entry */
{
return ((double) (decsec - 32400000) / 360000.0);
}
/* UACMAGR -- returns the red magnitude from the UA star structure */
static double
uacmagr (magetc)
int magetc; /* Quality, plate, and magnitude from UA catalog entry */
{
if (magetc < 0)
return ((double) (-magetc % 1000) * 0.1);
else
return ((double) (magetc % 1000) * 0.1);
}
/* UACMAGB -- returns the blue magnitude from the UA star structure */
static double
uacmagb (magetc)
int magetc; /* Quality, plate, and magnitude from UA catalog entry */
{
if (magetc < 0)
return ((double) ((-magetc / 1000) % 1000) * 0.1);
else
return ((double) ((magetc / 1000) % 1000) * 0.1);
}
/* UACMAGERR -- returns 1 if magnitude is uncertain from UA star structure */
static int
uacmagerr (magetc)
int magetc; /* Quality, plate, and magnitude from UA catalog entry */
{
if (magetc < 0)
return ((-magetc / 1000000000) % 10);
else
return ((magetc / 1000000000) % 10);
}
/* UACGSC -- returns 1 if UA star is in the HST Guide Star Catalog */
static int
uacgsc (magetc)
int magetc; /* Quality, plate, and magnitude from UA catalog entry */
{
if (magetc < 0)
return (1);
else
return (0);
}
/* UACPLATE -- returns the plate number from the UA star structure */
static int
uacplate (magetc)
int magetc; /* Quality, plate, and magnitude from UA catalog entry */
{
if (magetc < 0)
return ((-magetc / 1000000) % 1000);
else
return ((magetc / 1000000) % 1000);
}
/* UACZONE -- find the UA zone number where a declination can be found */
static int
uaczone (dec)
double dec; /* declination in degrees */
{
double zonesize = 7.5; /* number of degrees per declination zone */
int zone;
zone = (int) ((dec + 90.0) / zonesize);
if (zone > 23)
zone = 23;
else if (zone < 0)
zone = 0;
return (zone);
}
/* UACSRA -- Find UA star closest to specified right ascension */
static int
uacsra (rax0)
double rax0; /* Right ascension in degrees for which to search */
{
int istar, istar1, istar2, nrep;
double rax, ra1, ra, rdiff, rdiff1, rdiff2, sdiff;
UACstar star; /* UA catalog entry for one star */
char rastrx[16];
int debug = 0;
rax = rax0;
if (debug)
ra2str (rastrx, 16, rax, 3);
istar1 = 1;
if (uacstar (istar1, &star))
return (0);
ra1 = uacra (star.rasec);
istar = nstars;
nrep = 0;
while (istar != istar1 && nrep < 20) {
if (uacstar (istar, &star))
break;
else {
ra = uacra (star.rasec);
if (ra == ra1)
break;
if (debug) {
char rastr[16];
ra2str (rastr, 16, ra, 3);
fprintf (stderr,"UACSRA %d %d: %s (%s)\n",
nrep,istar,rastr,rastrx);
}
rdiff = ra1 - ra;
rdiff1 = ra1 - rax;
rdiff2 = ra - rax;
if (nrep > 20 && ABS(rdiff2) > ABS(rdiff1)) {
istar = istar1;
break;
}
nrep++;
sdiff = (double)(istar - istar1) * rdiff1 / rdiff;
istar2 = istar1 + (int) (sdiff + 0.5);
ra1 = ra;
istar1 = istar;
istar = istar2;
if (debug) {
fprintf (stderr," ra1= %.5f ra= %.5f rax= %.5f\n",
ra1,ra,rax);
fprintf (stderr," rdiff= %.5f rdiff1= %.5f rdiff2= %.5f\n",
rdiff,rdiff1,rdiff2);
fprintf (stderr," istar1= %d istar= %d istar1= %d\n",
istar1,istar,istar2);
}
if (istar < 1)
istar = 1;
if (istar > nstars)
istar = nstars;
if (istar == istar1)
break;
}
}
return (istar);
}
/* UACOPEN -- Open UA Catalog zone catalog, returning number of entries */
static int
uacopen (znum)
int znum; /* UA Catalog zone */
{
char zonepath[64]; /* Pathname for input UA zone file */
UACstar star; /* UA catalog entry for one star */
struct stat statbuff;
/* Get path to zone catalog */
if (uacpath (znum, zonepath)) {
fprintf (stderr, "UACOPEN: Cannot find zone catalog for %d\n", znum);
return (0);
}
/* Find number of stars in zone catalog by its length */
if (stat (zonepath, &statbuff)) {
fprintf (stderr,"UA zone catalog %s has no entries\n",zonepath);
return (0);
}
else
nstars = (int) statbuff.st_size / 12;
/* Open zone catalog */
if (!(fcat = fopen (zonepath, "r"))) {
fprintf (stderr,"UA zone catalog %s cannot be read\n",zonepath);
return (0);
}
/* Check to see if byte-swapping is necessary */
cswap = 0;
if (uacstar (1, &star)) {
fprintf (stderr,"UACOPEN: cannot read star 1 from UA zone catalog %s\n",
zonepath);
return (0);
}
else {
if (star.rasec > 360 * 360000 || star.rasec < 0) {
cswap = 1;
/* fprintf (stderr,"UACOPEN: swapping bytes in UA zone catalog %s\n",
zonepath); */
}
else if (star.decsec > 180 * 360000 || star.decsec < 0) {
cswap = 1;
/* fprintf (stderr,"UACOPEN: swapping bytes in UA zone catalog %s\n",
zonepath); */
}
else
cswap = 0;
}
return (nstars);
}
/* UACPATH -- Get UA Catalog region file pathname */
static int
uacpath (zn, path)
int zn; /* UA zone number */
char *path; /* Pathname of UA zone file */
{
int iz; /* Zone index (0000 = 0, 0075 = 1, ...) */
int icd; /* CDROM number if multiple CDROMs used */
/* Return error code and null path if zone is out of range */
if (zn < 0 || zn > 1725) {
fprintf (stderr, "UACPATH: zone %d out of range 0-1725\n",zn);
path[0] = 0;
return (-1);
}
/* Set path for USNO SA zone catalog */
if (ucat == USNOSA10 || ucat == USNOSA20)
sprintf (path,"%s/zone%04d.cat", uapath, zn);
/* Set zone catalog path when USNO A is in a single directory */
else if (strlen (uapath) > 0)
sprintf (path,"%s/zone%04d.cat", uapath, zn);
/* Set zone catalog path when USNO A is read from CDROMs */
else {
iz = zn / 75;
if (ucat == USNOA10)
icd = zdisk1[iz];
else
icd = zdisk2[iz];
sprintf (path,"%s/%s/zone%04d.cat", cdroot, cdname[icd-1], zn);
}
return (0);
}
/* UACSTAR -- Get UA catalog entry for one star; return 0 if successful */
static int
uacstar (istar, star)
int istar; /* Star sequence number in UA zone catalog */
UACstar *star; /* UA catalog entry for one star */
{
int nbs, nbr, nbskip;
if (istar < 1 || istar > nstars) {
fprintf (stderr, "UACstar %d is not in catalog\n",istar);
return (-1);
}
nbskip = 12 * (istar - 1);
if (fseek (fcat,nbskip,SEEK_SET))
return (-1);
nbs = sizeof (UACstar);
nbr = fread (star, nbs, 1, fcat) * nbs;
if (nbr < nbs) {
fprintf (stderr, "UACstar %d / %d bytes read\n",nbr, nbs);
return (-2);
}
if (cswap)
uacswap ((char *)star);
return (0);
}
/* UACSWAP -- Reverse bytes of UA Catalog entry */
static void
uacswap (string)
char *string; /* Start of vector of 4-byte ints */
{
char *sbyte, *slast;
char temp0, temp1, temp2, temp3;
int nbytes = 12; /* Number of bytes to reverse */
slast = string + nbytes;
sbyte = string;
while (sbyte < slast) {
temp3 = sbyte[0];
temp2 = sbyte[1];
temp1 = sbyte[2];
temp0 = sbyte[3];
sbyte[0] = temp0;
sbyte[1] = temp1;
sbyte[2] = temp2;
sbyte[3] = temp3;
sbyte = sbyte + 4;
}
return;
}
/* Nov 15 1996 New subroutine
* Dec 11 1996 Set ra<0 to ra+360 and ra>360 to ra-360
* Dec 16 1996 Add code to read a specific star
* Dec 17 1996 Keep closest stars, not brightest, if searching within radius
*
* Mar 12 1997 Set paths for SA-1.0 and multiple CDROM A-1.0
* Mar 20 1997 Clean up UACRNUM after lint
* Apr 23 1997 Fix bug which rejected stars in HST Guide Star Catalog
* Nov 6 1997 Don't print star overrun unless logging
*
* Feb 20 1998 Speed up processing by searching in arcseconds, not degrees
* Feb 20 1998 Speed up processing by searching RA and Dec, then rest
* Apr 20 1998 Fix bug so stars within radius can be found
* Jun 24 1998 Add string lengths to ra2str() and dec2str() calls
* Jun 24 1998 Initialize byte-swapping flag in UACOPEN()
* Sep 15 1998 Fix bug setting A 1.0 region path on CDROM found by Naoki Yasuda
* Sep 22 1998 Convert coordinates in these subroutines
* Oct 8 1998 Fix bug in uacread call in usaread() and uacrnum call in usarnum()
* Oct 26 1998 Fix bug in search algorith for non-J2000 searches
* Oct 29 1998 Correctly assign numbers when too many stars are found
* Nov 20 1998 Add support for USNO A-2.0 and SA-2.0 catalogs
* Nov 24 1998 Fix bug reading SA-2.0 catalog
*
* Feb 9 1999 Improve documentation
* Jun 16 1999 Use SearchLim()
* Aug 16 1999 Add RefLim() to get converted search coordinates right
* Aug 16 1999 Fix bug to fix failure to search across 0:00 RA
* Aug 25 1999 Return real number of stars from uacread()
* Sep 10 1999 Set plate selection with subroutine, not argument
* Sep 16 1999 Fix bug which didn't always return closest stars
* Sep 16 1999 Add distsort argument so brightest stars in circle works, too
* Oct 20 1999 Include vimoswcscat.h
* Oct 21 1999 Clean up code after lint
*
* Jun 9 2000 Fix bug detecting swapped files on Alphas and PCs if RA=0
* Jun 26 2000 Add coordinate system to SearchLim() arguments
* Sep 22 2000 Return approximate spectral type instead of plate number
* Nov 28 2000 Add option to read catalog using HTTP
* Dec 1 2000 Return plate number, not bad spectral type
* Dec 11 2000 Path may be set to catalog search engine URL
* Dec 15 2000 Do away with separate usapath variable; use uapath
*/
|