Changeset 10946 for trunk/pswarp/src/pswarp.c
- Timestamp:
- Jan 5, 2007, 2:58:54 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/pswarp/src/pswarp.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pswarp/src/pswarp.c
r10832 r10946 19 19 20 20 // load identify the data sources 21 if (!ps astroParseCamera (config)) {21 if (!pswarpParseCamera (config)) { 22 22 psErrorStackPrint(stderr, "error setting up the camera\n"); 23 23 exit (1); … … 25 25 26 26 // load the skycell layout information 27 pswarpDefine (); 27 if (!pswarpDefine (config)) { 28 psErrorStackPrint(stderr, "error loading output definition\n"); 29 exit (1); 30 } 28 31 29 // warp loop 30 pswarpProcess (); 32 // load and warp 33 if (!pswarpDataLoad (config)) { 34 psErrorStackPrint(stderr, "error reading input data\n"); 35 exit (1); 36 } 31 37 32 38 // write out result image 33 pswarpDataSave (); 39 if (!pswarpDataSave (config)) { 40 psErrorStackPrint(stderr, "error writing output data\n"); 41 exit (1); 42 } 34 43 35 44 psLogMsg ("pswarp", 3, "complete pswarp run: %f sec\n", psTimerMark ("complete")); 36 pswarpCleanup (config , refs);45 pswarpCleanup (config); 37 46 exit (EXIT_SUCCESS); 38 47 }
Note:
See TracChangeset
for help on using the changeset viewer.
