Changeset 36481 for trunk/Ohana
- Timestamp:
- Feb 6, 2014, 12:20:57 PM (12 years ago)
- Location:
- trunk/Ohana/src
- Files:
-
- 11 edited
-
fixcat/src/gcatstats.c (modified) (1 diff)
-
gastro/src/gstars.c (modified) (1 diff)
-
gastro2/src/coordtest.c (modified) (1 diff)
-
gastro2/src/gstars2.c (modified) (1 diff)
-
getstar/src/GetFileMode.c (modified) (1 diff)
-
getstar/src/MatchImages.c (modified) (2 diffs)
-
markrock/src/gcatstats.c (modified) (1 diff)
-
photdbc/src/find_images.c (modified) (1 diff)
-
photdbc/src/join_stars.c (modified) (1 diff)
-
uniphot/src/find_image_sgroups.c (modified) (1 diff)
-
uniphot/src/update_dvo_uniphot.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/fixcat/src/gcatstats.c
r27435 r36481 52 52 catstats[0].coords.pc1_1 = catstats[0].coords.pc2_2 = 1.0; 53 53 catstats[0].coords.pc1_2 = catstats[0].coords.pc2_1 = 0.0; 54 strcpy (catstats[0].coords.ctype, " RA---TAN");54 strcpy (catstats[0].coords.ctype, "DEC--TAN"); 55 55 56 56 X1 = catstats[0].X; -
trunk/Ohana/src/gastro/src/gstars.c
r34088 r36481 79 79 if (!strcasecmp (ROUGH_ASTROMETRY, "config")) { 80 80 /* default values for coords */ 81 strcpy (coords[0].ctype, " RA---TAN");81 strcpy (coords[0].ctype, "DEC--TAN"); 82 82 coords[0].pc1_1 = CCD_PC1_1; coords[0].pc1_2 = CCD_PC1_2; 83 83 coords[0].pc2_1 = CCD_PC2_1; coords[0].pc2_2 = CCD_PC2_2; -
trunk/Ohana/src/gastro2/src/coordtest.c
r8300 r36481 85 85 fit_eval (); 86 86 87 strcpy (coords.ctype, " RA---PLY");87 strcpy (coords.ctype, "DEC--PLY"); 88 88 coords.crval1 = 0.0; 89 89 coords.crval2 = 0.0; -
trunk/Ohana/src/gastro2/src/gstars2.c
r34088 r36481 28 28 29 29 /* default values for coords */ 30 strcpy (Target[0].coords.ctype, " RA---TAN");30 strcpy (Target[0].coords.ctype, "DEC--TAN"); 31 31 Target[0].coords.pc1_1 = CCD_PC1_1; Target[0].coords.pc1_2 = CCD_PC1_2; 32 32 Target[0].coords.pc2_1 = CCD_PC2_1; Target[0].coords.pc2_2 = CCD_PC2_2; -
trunk/Ohana/src/getstar/src/GetFileMode.c
r34088 r36481 10 10 gfits_scan_alt (header, "SIMPLE", "%t", 1, &simple); 11 11 haveNaxis = gfits_scan (header, "NAXIS", "%d", 1, &Naxis); 12 haveCTYPE = gfits_scan (header, "CTYPE 1", "%s", 1, ctype);12 haveCTYPE = gfits_scan (header, "CTYPE2", "%s", 1, ctype); 13 13 14 14 gfits_scan_alt (header, "EXTEND", "%t", 1, &extend); -
trunk/Ohana/src/getstar/src/MatchImages.c
r34430 r36481 36 36 tcoords.pc1_2 = tcoords.pc2_1 = 0.0; 37 37 tcoords.Npolyterms = 1; 38 strcpy (tcoords.ctype, " RA---TAN");38 strcpy (tcoords.ctype, "DEC--TAN"); 39 39 /* register so image->sky conversions below have correct mosaic */ 40 40 } else { … … 44 44 tcoords.pc1_2 = tcoords.pc2_1 = 0.0; 45 45 tcoords.Npolyterms = 1; 46 strcpy (tcoords.ctype, " RA---TAN");46 strcpy (tcoords.ctype, "DEC--TAN"); 47 47 } 48 48 -
trunk/Ohana/src/markrock/src/gcatstats.c
r27435 r36481 40 40 catstats[0].coords.pc1_1 = catstats[0].coords.pc2_2 = 1.0; 41 41 catstats[0].coords.pc1_2 = catstats[0].coords.pc2_1 = 0.0; 42 strcpy (catstats[0].coords.ctype, " RA---TAN");42 strcpy (catstats[0].coords.ctype, "DEC--TAN"); 43 43 44 44 X1 = catstats[0].X; -
trunk/Ohana/src/photdbc/src/find_images.c
r30616 r36481 25 25 tcoords.pc1_1 = tcoords.pc2_2 = 1.0; 26 26 tcoords.pc1_2 = tcoords.pc2_1 = 0.0; 27 strcpy (tcoords.ctype, " RA---TAN");27 strcpy (tcoords.ctype, "DEC--TAN"); 28 28 29 29 timage = gfits_table_get_Image (&db[0].ftable, &Ntimage, &db[0].swapped); -
trunk/Ohana/src/photdbc/src/join_stars.c
r29938 r36481 57 57 tcoords.pc1_2 = tcoords.pc2_1 = 0.0; 58 58 tcoords.Npolyterms = 0; 59 strcpy (tcoords.ctype, " RA---TAN");59 strcpy (tcoords.ctype, "DEC--TAN"); 60 60 61 61 /* project & sort coordinates in local linear frame */ -
trunk/Ohana/src/uniphot/src/find_image_sgroups.c
r31160 r36481 22 22 coords.pc1_1 = coords.pc2_2 = 1.0; 23 23 coords.pc1_2 = coords.pc2_1 = 0.0; 24 strcpy (coords.ctype, " RA---TAN");24 strcpy (coords.ctype, "DEC--TAN"); 25 25 26 26 Ngroup = 0; -
trunk/Ohana/src/uniphot/src/update_dvo_uniphot.c
r34088 r36481 61 61 coords.pc1_1 = coords.pc2_2 = 1.0; 62 62 coords.pc1_2 = coords.pc2_1 = 0.0; 63 strcpy (coords.ctype, " RA---TAN");63 strcpy (coords.ctype, "DEC--TAN"); 64 64 65 65 for (i = 0; i < pglob.gl_pathc; i++) {
Note:
See TracChangeset
for help on using the changeset viewer.
