Changeset 8674
- Timestamp:
- Aug 29, 2006, 12:02:19 PM (20 years ago)
- Location:
- trunk/psastro/src
- Files:
-
- 4 edited
-
psastroLoadReferences.c (modified) (1 diff)
-
psastroMosaicGetRefstars.c (modified) (1 diff)
-
psastroMosaicSetMatch.c (modified) (1 diff)
-
psastroWCS.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psastro/src/psastroLoadReferences.c
r7575 r8674 115 115 psFree (table); 116 116 117 psTrace (__func__, 3, "loaded % d reference stars from (%10.6f,%10.6f) - (%10.6f,%10.6f)\n",117 psTrace (__func__, 3, "loaded %ld reference stars from (%10.6f,%10.6f) - (%10.6f,%10.6f)\n", 118 118 refs->n, RAmin, DECmin, RAmax, DECmax); 119 119 return refs; -
trunk/psastro/src/psastroMosaicGetRefstars.c
r7637 r8674 75 75 psFree (ref); 76 76 } 77 psTrace (__func__, 4, "Added % d refstars\n", refstars->n);77 psTrace (__func__, 4, "Added %ld refstars\n", refstars->n); 78 78 psMetadataAdd (readout->analysis, PS_LIST_TAIL, "PSASTRO.REFSTARS", PS_DATA_ARRAY, "astrometry matches", refstars); 79 79 -
trunk/psastro/src/psastroMosaicSetMatch.c
r7332 r8674 35 35 psArray *refstars = psMetadataLookupPtr (NULL, readout->analysis, "PSASTRO.REFSTARS"); 36 36 if (refstars == NULL) { continue; } 37 psTrace (__func__, 4, "Trying % d refstars\n", refstars->n);37 psTrace (__func__, 4, "Trying %ld refstars\n", refstars->n); 38 38 39 39 // use small radius to match stars (assume starting astrometry is good) 40 40 // XXX should this take a (double radius)? 41 41 psArray *matches = pmAstromRadiusMatchChip (rawstars, refstars, recipe); 42 psTrace (__func__, 4, "Matched % d refstars\n", matches->n);42 psTrace (__func__, 4, "Matched %ld refstars\n", matches->n); 43 43 44 44 sprintf (name, "raw.%02d.dat", view->chip); -
trunk/psastro/src/psastroWCS.c
r7332 r8674 213 213 break; 214 214 default: 215 psLogMsg ("psastro", 2, "warning: unknown projection type % s\n", toSky->type);215 psLogMsg ("psastro", 2, "warning: unknown projection type %d\n", toSky->type); 216 216 return false; 217 217 }
Note:
See TracChangeset
for help on using the changeset viewer.
