Changeset 25299 for trunk/ippTools/src/regtool.c
- Timestamp:
- Sep 8, 2009, 5:32:55 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
ippTools/src/regtool.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/czw_branch/cleanup (added) merged: 25050-25051,25088,25143-25155,25157-25159,25161,25210-25212
- Property svn:mergeinfo changed
-
trunk/ippTools/src/regtool.c
r24866 r25299 331 331 PXOPT_LOOKUP_BOOL(faulted, config->args, "-faulted", false); 332 332 PXOPT_LOOKUP_BOOL(simple, config->args, "-simple", false); 333 PXOPT_LOOKUP_BOOL(ordered_by_date, config->args, "-ordered_by_date", false); 333 334 334 335 psString query = pxDataGet("regtool_processedimfile.sql"); … … 352 353 // don't list faulted rows 353 354 psStringAppend(&query, " %s", "AND rawImfile.fault = 0"); 355 } 356 357 // add the ORDER BY statement if desired 358 if (ordered_by_date) { 359 psStringAppend(&query, " ORDER BY dateobs"); 354 360 } 355 361 … … 923 929 PXOPT_COPY_F64(config->args, where, "-posang_max", "posang", "<"); 924 930 PXOPT_COPY_STR(config->args, where, "-object", "object", "=="); 925 PXOPT_COPY_F32(config->args, where, "-s un_angle_min", "sun_angle", ">=");926 PXOPT_COPY_F32(config->args, where, "-s un_angle_max", "sun_angle", "<");931 PXOPT_COPY_F32(config->args, where, "-solang_min", "solang", ">="); 932 PXOPT_COPY_F32(config->args, where, "-solang_max", "solang", "<"); 927 933 928 934 PXOPT_LOOKUP_U64(limit, config->args, "-limit", false, false);
Note:
See TracChangeset
for help on using the changeset viewer.
