Changeset 5133
- Timestamp:
- Sep 25, 2005, 10:28:50 PM (21 years ago)
- Location:
- trunk/Ohana/src
- Files:
-
- 2 edited
-
gastro2/src/greference2.c (modified) (2 diffs)
-
mosastro/src/greference.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/gastro2/src/greference2.c
r2442 r5133 10 10 11 11 Ref[0].N = 0; 12 /* get stars from the USNO catalog for the given region */12 /* get stars from the USNO A catalog for the given region */ 13 13 if (!strcmp (REFCAT, "USNO")) { 14 14 getusno (&catstats, Ref); … … 21 21 } 22 22 23 /* get stars from the HST GSC catalog for the given region*/23 /* get stars from 2MASS for the given region -- add PHOTCODE check? */ 24 24 if (!strcmp (REFCAT, "2MASS")) { 25 get2mass (&catstats, Ref); 25 strcpy (CATDIR, TWO_MASS_DIR); 26 getptolemy (&catstats, Ref); 27 /* get2mass (&catstats, Ref); */ 26 28 } 27 29 28 /* get stars from the HST GSC catalogfor the given region */30 /* get stars from the DVO CATDIR for the given region */ 29 31 if (!strcmp (REFCAT, "PTOLEMY")) { 30 32 getptolemy (&catstats, Ref); -
trunk/Ohana/src/mosastro/src/greference.c
r3401 r5133 23 23 } 24 24 25 /* get stars from the USNO catalog for the given region */25 /* get stars from the USNO A catalog for the given region */ 26 26 if (!strcmp (REFCAT, "USNO")) { 27 27 stars = getusno (&catstats, &Nstars); … … 33 33 } 34 34 35 /* get stars from the HST GSC catalog for the given region*/35 /* get stars from 2MASS for the given region -- add PHOTCODE check? */ 36 36 if (!strcmp (REFCAT, "2MASS")) { 37 stars = get2mass (&catstats, &Nstars); 37 strcpy (CATDIR, TWO_MASS_DIR); 38 stars = getptolemy (&catstats, &Nstars); 39 /* stars = get2mass (&catstats, &Nstars); */ 38 40 } 39 41 40 /* get stars from the HST GSC catalogfor the given region */42 /* get stars from the DVO CATDIR for the given region */ 41 43 if (!strcmp (REFCAT, "PTOLEMY")) { 42 44 stars = getptolemy (&catstats, &Nstars);
Note:
See TracChangeset
for help on using the changeset viewer.
