Skip to content

Commit 8fea242

Browse files
committed
trying to fix the merge conflicts
1 parent 3ef93e7 commit 8fea242

2 files changed

Lines changed: 79 additions & 0 deletions

File tree

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
; $ID: ILLEX_VIEWER_CRONWRAPPER.PRO, 2022-08-08-11, USER-KJWH $
2+
PRO ILLEX_VIEWER_CRONWRAPPER
3+
4+
;+
5+
; NAME:
6+
; ILLEX_VIEWER_CRONWRAPPER
7+
;
8+
; PURPOSE:
9+
; Program to be called by the cronjob
10+
;
11+
; PROJECT:
12+
; ILLEX_VIEWER
13+
;
14+
; CALLING SEQUENCE:
15+
; ILLEX_VIEWER_CRONWRAPPER
16+
;
17+
; REQUIRED INPUTS:
18+
; None
19+
;
20+
; OPTIONAL INPUTS:
21+
; TBD
22+
;
23+
; KEYWORD PARAMETERS:
24+
; TBD
25+
;
26+
; OUTPUTS:
27+
; Runs ILLEX_VIEWER_MAIN
28+
;
29+
; OPTIONAL OUTPUTS:
30+
; None
31+
;
32+
; COMMON BLOCKS:
33+
; None
34+
;
35+
; SIDE EFFECTS:
36+
; None
37+
;
38+
; RESTRICTIONS:
39+
; None
40+
;
41+
; EXAMPLE:
42+
;
43+
;
44+
; NOTES:
45+
; $Citations or any other useful notes$
46+
;
47+
; COPYRIGHT:
48+
; Copyright (C) 2022, Department of Commerce, National Oceanic and Atmospheric Administration, National Marine Fisheries Service,
49+
; Northeast Fisheries Science Center, Narragansett Laboratory.
50+
; This software may be used, copied, or redistributed as long as it is not sold and this copyright notice is reproduced on each copy made.
51+
; This routine is provided AS IS without any express or implied warranties whatsoever.
52+
;
53+
; AUTHOR:
54+
; This program was written on August 08, 2022 by Kimberly J. W. Hyde, Northeast Fisheries Science Center | NOAA Fisheries | U.S. Department of Commerce, 28 Tarzwell Dr, Narragansett, RI 02882
55+
;
56+
; MODIFICATION HISTORY:
57+
; Aug 08, 2022 - KJWH: Initial code written
58+
;-
59+
; ****************************************************************************************************
60+
ROUTINE_NAME = 'ILLEX_VIEWER_CRONWRAPPER'
61+
COMPILE_OPT IDL2
62+
SL = PATH_SEP()
63+
DT = DATE_PARSE(DATE_NOW())
64+
65+
LOGDIR = !S.ILLEX_VIEWER + 'IDL_OUTPUTS' + SL + 'LOGS' + SL & DIR_TEST, LOGDIR
66+
LOGFILE = LOGDIR + ROUTINE_NAME + '-' + DATE_NOW() + '.log'
67+
OPENW, LUN, LOGFILE, /APPEND, /GET_LUN, WIDTH=180 ; ===> Open log file
68+
PLUN, LUN, '******************************************************************************************************************'
69+
PLUN, LUN, 'Starting ' + ROUTINE_NAME + ' log file: ' + LOGFILE + ' on: ' + systime() + ' on ' + !S.COMPUTER, 0
70+
71+
PLUN, LUN, 'Running ILLEX_VIEWER_MAIN...'
72+
<<<<<<< HEAD
73+
ILLEX_VIEWER_MAIN, VERSION, /LOGFILE, /DOWNLOAD_FILES, /PROCESS_FILES, /ANIMATIONS, /MAKE_COMPOSITES, EVENTS=0, SUBAREA_EXTRACTS=0, JC_ANIMATION=0, GIT_PUSH=0, LOGLUN=LUN
74+
=======
75+
>>>>>>> 591b9901 (commit after moving files to the TrueNAS)
76+
77+
78+
END ; ***************** End of ILLEX_VIEWER_CRONWRAPPER *****************
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
khyde@guihyde.124603

0 commit comments

Comments
 (0)