IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 27, 2015, 4:49:06 PM (11 years ago)
Author:
eugene
Message:

extensive work on relphot, relastro, uniphot, dvomerge aiming to the construction and calibration of PV3

Location:
trunk/Ohana
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana

  • trunk/Ohana/src/getstar/src/MatchImages.c

    • Property svn:mergeinfo deleted
    r38732 r38986  
    2929  tcoords.crval1 = image[0].coords.crval1;
    3030  tcoords.crval2 = image[0].coords.crval2;
     31
    3132  if (!strcmp (&image[0].coords.ctype[4], "-WRP")) {
    3233    myAssert (image[0].coords.mosaic, "should already have tested this");
  • trunk/Ohana/src/getstar/src/write_catalog.c

    r15539 r38986  
    55  /* write out the selected stars */
    66  // XXX need to set the catalog boundaries by hand? RA0-RA1, DEC0-DEC1
    7   dvo_catalog_save   (catalog, VERBOSE);
    8   dvo_catalog_unlock (catalog);
    9   dvo_catalog_free   (catalog);
     7  SetProtect (TRUE);
     8  if (!dvo_catalog_save (catalog, VERBOSE)) { fprintf (stderr, "ERROR: failed to save %s\n", catalog->filename); exit (1); }
     9  if (!dvo_catalog_unlock (catalog)) { fprintf (stderr, "ERROR: failed to unlock %s\n", catalog->filename); exit (1); }
     10  SetProtect (FALSE);
     11  dvo_catalog_free (catalog);
    1012  fprintf (stderr, "SUCCESS\n");
    1113  exit (0);
Note: See TracChangeset for help on using the changeset viewer.