IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 27768


Ignore:
Timestamp:
Apr 25, 2010, 10:38:34 AM (16 years ago)
Author:
eugene
Message:

creating setphot to apply zero points

Location:
branches/eam_branches/Ohana.20100407/src/uniphot/src
Files:
4 added
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/Ohana.20100407/src/uniphot/src/load_images.c

    r6238 r27768  
    1010  return (TRUE);
    1111}
     12
     13Image *load_images_setphot (FITS_DB *db, off_t *Nimage) {
     14
     15  Image *image;
     16
     17  if (VERBOSE) fprintf (stderr, "finding images\n");
     18
     19  /* read entire db table */
     20  if (!dvo_image_load (db, VERBOSE, FALSE)) Shutdown ("can't read image catalog %s", db[0].filename);
     21
     22  /* use a vtable to keep the images to be calibrated */
     23  image = gfits_table_get_Image (&db[0].ftable, Nimage, &db[0].swapped);
     24
     25  return (image);
     26}
Note: See TracChangeset for help on using the changeset viewer.