IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 5, 2010, 1:45:08 PM (16 years ago)
Author:
bills
Message:

in the lookup modes make the where filter be a LIKE comparision instead of ==

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/regtool.c

    r27176 r27210  
    343343    PXOPT_COPY_TIME(config->args, where, "-dateobs_begin", "dateobs",  ">=");
    344344    PXOPT_COPY_TIME(config->args, where, "-dateobs_end",   "dateobs",  "<=");
    345     PXOPT_COPY_STR(config->args, where,  "-filter",        "filter", "==");
     345    PXOPT_COPY_STR(config->args, where,  "-filter",        "filter", "LIKE");
    346346    PXOPT_COPY_STR(config->args, where,  "-exp_type",      "exp_type", "==");
    347347    PXOPT_COPY_STR(config->args, where,  "-obs_mode",      "obs_mode", "==");
     
    10481048    PXOPT_COPY_STR(config->args,   where,  "-filelevel", "filelevel", "==");
    10491049    PXOPT_COPY_STR(config->args,   where,  "-reduction", "reduction", "==");
    1050     PXOPT_COPY_STR(config->args,   where,  "-filter", "filter", "==");
     1050    PXOPT_COPY_STR(config->args,   where,  "-filter", "filter", "LIKE");
    10511051    PXOPT_COPY_F32(config->args,   where,  "-airmass_min", "airmass", ">=");
    10521052    PXOPT_COPY_F32(config->args,   where,  "-airmass_max", "airmass", "<");
Note: See TracChangeset for help on using the changeset viewer.