IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 7 and Version 8 of IPPstripe82


Ignore:
Timestamp:
May 5, 2009, 4:20:53 AM (17 years ago)
Author:
Sebastian Jester
Comment:

add note on -update option to addstar and relphot

Legend:

Unmodified
Added
Removed
Modified
  • IPPstripe82

    v7 v8  
    77= Questions =
    88
    9 * At what stage is the fake object insertion/dection run?
    10 * Is warptool, stacktool, difftool operation going to be automated?
     9 * At what stage is the fake object insertion/dection run?
     10 * Is warptool, stacktool, difftool operation going to be automated?
    1111
    1212= To-dos =
    1313
    14 * Look up the distortion correction for SDSS images and whether its WCS is good enough or not (ask Hubert Lampeitl?)
     14 * Look up the distortion correction for SDSS images and whether its WCS is good enough or not (ask Hubert Lampeitl?)
    1515
    1616= Useful for everything =
     
    662662 cd `ipp_datapath.pl path://S82PRODCATDIR`
    663663 addstar -D CATDIR . -resort
    664  relphot -D CATDIR . -averages
     664 relphot -D CATDIR . -averages -update
    665665}}}
    666666The resorted version is available for download at [http://www.mpia.de/homes/jester/IPPstripe82_catdir_20080815.tgz http://www.mpia.de/homes/jester/IPPstripe82_catdir_20080815.tgz] - a tarfile of about 250 MB that expands into a directory of about 500 MB. I have asked our computer people also to make available all the IPP outputs directly; however, those are 250 GB (no compression) so they need to figure out a way to host those. The input fpC*.fits images from SDSS are another ~50 GB. Here is the [[Image(htdocs:/images/README_IPPstripe82_20080815.txt)]].tgz
     667
     668=== Note on addstar, relphot and the -update option ===
     669
     670In fact, what happens with addstar is this:
     671
     672 * For large datasets, the `addstar` run by the IPP pipeline automatically adds stars to the dvo database, but does not reindex it. By hand, the effect is achieved by issuing
     673{{{
     674 addstar -D CATDIR . -update /file/to/new/data.cmf
     675 addstar -D CATDIR . -resort
     676}}}
     677 In `addstar`,  `-update` means "update the catalog, but do not resort". Or "don't update completely", in some sense
     678
     679 * For small datasets, you can do it in one step, by just saying
     680{{{
     681 addstar -D CATDIR . /file/to/new/data.cmf
     682}}}
     683 This updates and resorts in one go.
     684
     685 * For `relphot`, however, `-update` means "really commit this change to the database". So without the `-update`, relphot won't do anything. Or not as much as you want.
     686
     687Because of this slight inconsistency of meanings between identical options, one or both of the `-update`s might be renamed soon.