-
Notifications
You must be signed in to change notification settings - Fork 0
/
plot_nexrad_level2_bld.ksh
76 lines (63 loc) · 2.4 KB
/
plot_nexrad_level2_bld.ksh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/bin/ksh
# SCCS ID: $HeadURL$
# SCCS ID: @(#)$Id$
#
#==-FNMOC/N38DI KSH SCRIPT DEFINITION-==========================================
#
# NAME:
# :::::::::::::::::::::::::::::::::::::::::::::::
# nexrad_image_process.py
# :::::::::::::::::::::::::::::::::::::::::::::::
#
# PROGRAM OVERVIEW:
# Finally, an IDL program takes the ASCII output and produces a graphical display
# -- The output is saved as both JPG and Animated GIF
#
#--------------------------------------------------------------------------------------------------
# PARAMETER TABLE:
#--------------------------------------------------------------------------------------------------
#
# I/O NAME TYPE FUNCTION
#--------------------------------------------------------------------------------------------------
#_________________________________________________________________________________________________
#=================================================================================================
#
#=================================================================================================
#-
#-
#
# Programmer: Mr. Paul McCrone 23 September 2016
# NOTE:
# While Mr. McCrone wrote the PYTHON code, the -C- code and IDL Code
# were originally written by Dr. Paul Harasti of Naval Research Lab.
# (McCrone made the
# modifications to the IDL code.)
#
# Modification : BELOW
#========================================================================================
# Version 1.0 , Dated 2016-Sep-23
# Initial Build.
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#
#========================================================================================
#------------------------------------------------------
# This is the script that builds the IDL Runtime
# program version of plot_nexrad_level2.pro
#
#-----------------------------------------------------
#
PROCESSOR=`uname -p`
echo $PROCESSOR
#export IDL_DIR=/opt/idl/idl81
#export IDL_DIR=/u/alpha/
export IDL_DIR=/opt/global/idl/idl84
#export IDL_INIT=${IDL_DIR}/bin/idl_setup.ksh
export IDL_INIT=${IDL_DIR}/bin/idl_init.ksh
#. $IDL_INIT
. ${IDL_DIR}/bin/idl_setup.ksh
idl << EOF
.compile plot_nexrad_level2.pro
resolve_all
save,/routines,filename='plot_nexrad_level2.sav'
exit
EOF