14.1.1-3 baseline

Former-commit-id: 5739b4f832 [formerly 94f24e0d8a [formerly cbfd1a2e3f6b0688eb8e95ef0eaec1450b4bfc03]]
Former-commit-id: 94f24e0d8a
Former-commit-id: 851f9df229
This commit is contained in:
Steve Harris 2013-10-28 10:46:02 -04:00
parent 553238dca4
commit a0ba2e1252
1667 changed files with 30751 additions and 74789 deletions

View file

@ -22,175 +22,180 @@
<!ENTITY substitute-targets SYSTEM "substitute.xml">
]>
<project name="RCMPackageBuilder" default="deploy" basedir=".">
<!--
This build script expects the following projects to exist at the same
level as this project's folder. com.raytheon.rcm.lib
com.raytheon.rcm.server com.raytheon.rcm.server.mq
com.raytheon.rcm.tools org.itadaki.bzip2 The projects must be
built before running this script.
-->
&substitute-targets;
<!--
This build script expects the following projects to exist at the same
level as this project's folder. com.raytheon.rcm.lib
com.raytheon.rcm.server com.raytheon.rcm.server.mq
com.raytheon.rcm.tools org.itadaki.bzip2 The projects must be
built before running this script.
-->
&substitute-targets;
<description>
Builds a deployment of the RCM for packaging
</description>
<description>
Builds a deployment of the RCM for packaging
</description>
<!-- set global properties for this build -->
<property environment="user" />
<!-- set global properties for this build -->
<property environment="user" />
<property name="src" location="src" />
<property name="build" location="build" />
<property name="deploy.dir" location="Deploy" />
<property name="src" location="src" />
<property name="build" location="build" />
<property name="deploy.dir" location="Deploy" />
<property name="props.dir" location="${basedir}/properties" />
<property file="${props.dir}/build-local.properties" />
<property name="props.dir" location="${basedir}/properties" />
<property file="${props.dir}/build-local.properties" />
<available file="${basedir}/tmp" property="tmp.ready" />
<available file="${basedir}/tmp" property="tmp.ready" />
<condition property="pde.not.ready">
<and>
<isset property="pde.build" />
<not>
<isset property="tmp.ready" />
</not>
</and>
</condition>
<condition property="cots.dir" value="${basedir}/.." else="${basedir}/../../cots">
<available file="${basedir}/../org.springframework" />
</condition>
<condition property="pde.not.ready">
<and>
<isset property="pde.build" />
<not>
<isset property="tmp.ready" />
</not>
</and>
</condition>
<condition property="cots.dir" value="${basedir}/.." else="${basedir}/../../cots">
<available file="${basedir}/../org.springframework" />
</condition>
<!-- Set default EDEX install location for copy filter -->
<property name="def.edex.install.dir" value="/awips" />
<condition property="edex.home" value="$EdexBaseDir" else="${def.edex.install.dir}">
<isset property="installer"/>
</condition>
<!-- Create clean deployment -->
<target name="deploy">
<echo message="----------------------------------------------------------------"/>
<echo message=" deploying RCM to ${deploy.dir}"/>
<echo message=" PDE Build = ${pde.build}"/>
<echo message="----------------------------------------------------------------"/>
<antcall target="un.deploy" />
<antcall target="re.deploy" />
<antcall target="config.deploy" />
</target>
<!-- Set default EDEX install location for copy filter -->
<property name="def.edex.install.dir" value="/awips" />
<condition property="edex.home" value="$EdexBaseDir" else="${def.edex.install.dir}">
<isset property="installer"/>
</condition>
<!-- Create clean deployment -->
<target name="deploy">
<echo message="----------------------------------------------------------------"/>
<echo message=" deploying RCM to ${deploy.dir}"/>
<echo message=" PDE Build = ${pde.build}"/>
<echo message="----------------------------------------------------------------"/>
<antcall target="un.deploy" />
<antcall target="re.deploy" />
<antcall target="config.deploy" />
</target>
<!--
Deploy on top of existing deployment. Old files not removed nor is the
configuration file changed.
-->
<target name="re.deploy">
<mkdir dir="${deploy.dir}" />
<mkdir dir="${deploy.dir}/bin" />
<mkdir dir="${deploy.dir}/lib" />
<mkdir dir="${deploy.dir}/data" />
<!-- copy with filter -->
<copy todir="${deploy.dir}" verbose="false">
<filterset refid="installer.filter.set" />
<fileset dir="bits">
<include name="bin/*" />
</fileset>
</copy>
<chmod perm="a-w,a+x">
<fileset dir="${deploy.dir}/bin">
<include name="*" />
</fileset>
</chmod>
<!--
Deploy on top of existing deployment. Old files not removed nor is the
configuration file changed.
-->
<target name="re.deploy">
<mkdir dir="${deploy.dir}" />
<mkdir dir="${deploy.dir}/bin" />
<mkdir dir="${deploy.dir}/lib" />
<mkdir dir="${deploy.dir}/data" />
<!-- copy with filter -->
<copy todir="${deploy.dir}" verbose="false">
<filterset refid="installer.filter.set" />
<fileset dir="bits">
<include name="bin/*" />
</fileset>
</copy>
<chmod perm="a-w,a+x">
<fileset dir="${deploy.dir}/bin">
<include name="*" />
</fileset>
</chmod>
<!--
Not all of these files should be made executable. Need to know all
executable names... or all non-executables...
-->
<copy todir="${deploy.dir}/bin" verbose="false">
<fileset dir="../com.raytheon.rcm.tools/src">
<include name="*.py" />
</fileset>
</copy>
<chmod perm="a+x">
<fileset dir="${deploy.dir}/bin">
<include name="*.py" />
<exclude name="stomp.py" />
</fileset>
</chmod>
<chmod perm="a-w">
<fileset dir="${deploy.dir}/bin">
<include name="*.py" />
</fileset>
</chmod>
<!--
Not all of these files should be made executable. Need to know all
executable names... or all non-executables...
-->
<copy todir="${deploy.dir}/bin" verbose="false">
<fileset dir="../com.raytheon.rcm.tools/src">
<include name="*.py" />
</fileset>
</copy>
<chmod perm="a+x">
<fileset dir="${deploy.dir}/bin">
<include name="*.py" />
<exclude name="stomp.py" />
</fileset>
</chmod>
<chmod perm="a-w">
<fileset dir="${deploy.dir}/bin">
<include name="*.py" />
</fileset>
</chmod>
<copy todir="${deploy.dir}/lib" flatten="true">
<fileset dir="${cots.dir}/org.apache.activemq" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.apache.qpid" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.slf4j" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.apache.commons.beanutils" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.apache.commons.codec" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.apache.commons.collections" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.apache.commons.lang" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.apache.commons.logging" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.apache.mina" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.apache.log4j" includes="**/*.jar" />
<fileset dir="${cots.dir}/javax.jms" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.springframework">
<include name="**/*spring*beans*.jar" />
<include name="**/*spring*context*.jar" />
</fileset>
<fileset dir="${cots.dir}/org.itadaki.bzip2" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.quartz" includes="**/*.jar" />
</copy>
<copy todir="${deploy.dir}/lib" flatten="true">
<fileset dir="${cots.dir}/org.apache.activemq" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.apache.qpid" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.slf4j" includes="**/*.jar">
<include name="**/jcl-over-slf4j*.jar" />
<include name="**/jul-to-slf4j*.jar" />
<include name="**/slf4j-api*.jar" />
</fileset>
<fileset dir="${cots.dir}/org.apache.commons.beanutils" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.apache.commons.codec" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.apache.commons.collections" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.apache.commons.lang" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.apache.commons.logging" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.apache.mina" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.apache.log4j" includes="**/*.jar" />
<fileset dir="${cots.dir}/javax.jms" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.springframework">
<include name="**/*spring*beans*.jar" />
<include name="**/*spring*context*.jar" />
</fileset>
<fileset dir="${cots.dir}/org.itadaki.bzip2" includes="**/*.jar" />
<fileset dir="${cots.dir}/org.quartz" includes="**/*.jar" />
<fileset dir="lib" includes="**/*.jar" />
</copy>
<delete dir="bin" />
<mkdir dir="bin" />
<antcall target="local.jar" />
<antcall target="pde.jar" />
<jar destfile="${deploy.dir}/lib/radarserver-mq.jar" basedir="bin" />
<delete dir="bin" />
</target>
<delete dir="bin" />
<mkdir dir="bin" />
<antcall target="local.jar" />
<antcall target="pde.jar" />
<jar destfile="${deploy.dir}/lib/radarserver-mq.jar" basedir="bin" />
<delete dir="bin" />
</target>
<target name="local.jar" if="pde.build">
<copy toDir="bin">
<fileset dir="tmp/plugins/com.raytheon.rcm.lib/@dot"
includes="**/*.class" />
<fileset dir="tmp/plugins/com.raytheon.rcm.lib/@dot"
includes="**/*.txt" />
<fileset dir="tmp/plugins/com.raytheon.rcm.server/@dot"
includes="**/*.class" />
<fileset dir="tmp/plugins/com.raytheon.rcm.server.mq/@dot"
includes="**/*.class" />
<target name="local.jar" if="pde.build">
<copy toDir="bin">
<fileset dir="tmp/plugins/com.raytheon.rcm.lib/@dot"
includes="**/*.class" />
<fileset dir="tmp/plugins/com.raytheon.rcm.lib/@dot"
includes="**/*.txt" />
<fileset dir="tmp/plugins/com.raytheon.rcm.server/@dot"
includes="**/*.class" />
<fileset dir="tmp/plugins/com.raytheon.rcm.server.mq/@dot"
includes="**/*.class" />
<fileset dir="tmp/plugins/com.raytheon.rcm.server.mq/@dot"
includes="**/*.txt" />
</copy>
</target>
</copy>
</target>
<target name="pde.jar" unless="pde.build">
<copy todir="bin">
<fileset dir="../com.raytheon.rcm.lib/bin" includes="**/*.class" />
<fileset dir="../com.raytheon.rcm.lib/bin" includes="**/*.txt" />
<fileset dir="../com.raytheon.rcm.server/bin" includes="**/*.class" />
<fileset dir="../com.raytheon.rcm.server.mq/bin" includes="**/*.class" />
<target name="pde.jar" unless="pde.build">
<copy todir="bin">
<fileset dir="../com.raytheon.rcm.lib/bin" includes="**/*.class" />
<fileset dir="../com.raytheon.rcm.lib/bin" includes="**/*.txt" />
<fileset dir="../com.raytheon.rcm.server/bin" includes="**/*.class" />
<fileset dir="../com.raytheon.rcm.server.mq/bin" includes="**/*.class" />
<fileset dir="../com.raytheon.rcm.server.mq/bin" includes="**/*.txt" />
</copy>
</target>
</copy>
</target>
<target name="config.deploy">
<copy todir="${deploy.dir}" verbose="false">
<filterset refid="installer.filter.set" />
<fileset dir="cfgbits">
<include name="**/*" />
<exclude name="**/config.xml"/>
</fileset>
</copy>
<!-- this is required because config.xml contains an '@' in a url -->
<copy todir="${deploy.dir}" verbose="false">
<filterset refid="config.xml.filter.set"/>
<fileset dir="cfgbits">
<include name="**/config.xml"/>
</fileset>
</copy>
</target>
<target name="config.deploy">
<copy todir="${deploy.dir}" verbose="false">
<filterset refid="installer.filter.set" />
<fileset dir="cfgbits">
<include name="**/*" />
<exclude name="**/config.xml"/>
</fileset>
</copy>
<!-- this is required because config.xml contains an '@' in a url -->
<copy todir="${deploy.dir}" verbose="false">
<filterset refid="config.xml.filter.set"/>
<fileset dir="cfgbits">
<include name="**/config.xml"/>
</fileset>
</copy>
</target>
<target name="un.deploy">
<delete dir="${deploy.dir}"></delete>
</target>
</project>
<target name="un.deploy">
<delete dir="${deploy.dir}"></delete>
</target>
</project>

View file

@ -80,6 +80,9 @@
<copy todir="${buildDirectory}/plugins">
<fileset dir="${buildDirectory}/../../" includes="org.slf4j*/**"/>
</copy>
<copy todir="${buildDirectory}/plugins">
<fileset dir="${buildDirectory}/../../" includes="ch.*/**"/>
</copy>
<copy todir="${buildDirectory}/plugins">
<fileset dir="${buildDirectory}/../../" includes="javax.jms*/**"/>
</copy>

Binary file not shown.

View file

@ -112,6 +112,10 @@
<copy todir="${buildDirectory}/plugins">
<fileset dir="${buildDirectory}/../../../" includes="ogc.*/**"/>
</copy>
<echo message="ch.*/**"/>
<copy todir="${buildDirectory}/plugins">
<fileset dir="${buildDirectory}/../../../" includes="ch.*/**"/>
</copy>
<antcall target="getBaseComponents" />
</target>

View file

@ -119,6 +119,12 @@
<fileset dir="${workspace.dir}"
includes="it.*/**" />
</copy>
<echo message="PLUGINS: ch.*/**" />
<copy todir="${basedir}/cave/p2/plugins">
<fileset dir="${workspace.dir}"
includes="ch.*/**" />
</copy>
<!-- END: Copy The Plugins -->
</target>

View file

@ -28,39 +28,24 @@
# Date Ticket# Engineer Description
# ------------ ---------- ----------- --------------------------
# 07/25/08 njensen Initial Creation.
# 09/05/13 #2329 randerso Added error handling
#
#
#
import sys, traceback, os, time, LogStream
import sys
from java.util import ArrayList
def getCombinations(comboName):
try:
outercombos = ArrayList()
md = __import__(comboName)
comList = md.Combinations
for i in comList:
combos = ArrayList()
innerList = i[0]
for zone in innerList:
combos.add(zone)
outercombos.add(combos)
return outercombos
except AttributeError as e:
filename = md.__file__
if filename.endswith("pyc") or filename.endswith("pyo"):
filename = filename[:-1]
with open(filename,'r') as fd:
filecontents = fd.read()
LogStream.logProblem("\nERROR loading combinations file: "+ comboName +
"\nmd.__file__: " + md.__file__ +
"\ndir(md): " + str(dir(md)) +
"\n" + md.__file__ + " last modified: " + time.strftime("%Y-%m-%d %H:%M:%S",time.gmtime(os.path.getmtime(md.__file__))) +
"\n" + filename + " last modified: " + time.strftime("%Y-%m-%d %H:%M:%S",time.gmtime(os.path.getmtime(filename))) +
"\nContents of " + filename + "\n" + filecontents)
raise e
outercombos = ArrayList()
cmd = "md = __import__(\"" + comboName + "\")"
exec cmd
comList = md.Combinations
for i in comList:
combos = ArrayList()
innerList = i[0]
for zone in innerList:
combos.add(zone)
outercombos.add(combos)
return outercombos

View file

@ -22,7 +22,6 @@ FINT=50;70;90
FLINE=0;24;23;22
HILO=0
HLSYM=0
CLRBAR=1
WIND=
TITLE=1/-1/~ 1000-470 MB RH, TEMP (BL yel,850 red), 700 Omega!0
COLORS=2

View file

@ -20,7 +20,6 @@ FINT=50;70;90
FLINE=0;24;23;22
HILO=0
HLSYM=0
CLRBAR=1
WIND=
TITLE=1/-1/~ 1000-440 MB RH, TEMP (BL yel,850 red), 700 Omega!0
COLORS=2

View file

@ -20,7 +20,7 @@ FINT = 50;70;90
FLINE = 0;24;23;22
HILO = 0
HLSYM = 0
CLRBAR=1
!CLRBAR= 1
WIND =
TITLE = 1/-2/~ 1000-440 MB RH, TEMP (BL yel,850 red), 700 Omega!0
COLORS = 2

View file

@ -11,7 +11,6 @@ FINT=5000;5050;5100;5150;5200
FLINE=0;18;17;16;15;14
HILO=
HLSYM=
CLRBAR=0
WIND=18/1/1
TITLE=5/-1/~ 1000-500 MB THICKNESS
COLORS=3

View file

@ -17,7 +17,6 @@ FINT=
FLINE=
HILO=
HLSYM=
CLRBAR=0
WIND=
TITLE=5/-1/~ 1000-500 MB THICKNESS!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=10;30;70;90
FLINE=18;8;0;22;23
HILO=0
HLSYM=0
CLRBAR=1
WIND=
TITLE=1/-2/~ @ MEAN LAYER RELATIVE HUMIDITY!0
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=
FLINE=
HILO=
HLSYM=
CLRBAR=0
WIND=
TITLE=1/-1/~ 1000-850 MB THKN!0
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=
FLINE=
HILO=
HLSYM=1;1//22;22/1.4;1.4/hw
CLRBAR=1
WIND=
TITLE=1/-1/~ PMSL, 1000-850mb THKN
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=08;12;16;20;24;28;32;36;40;44
FLINE=0;23-12
HILO=2;0/X/10-99!!
HLSYM=
CLRBAR=1/V/LL
WIND=0 !0 !0 !bk1/0.8/1
TITLE=1/-1/~ ^ @ HEIGHTS, AbsVORT AND WIND!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=-24;-18;-12;-6;0;18
FLINE=24;30;28;29;25;0;17
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ ^ @ HGHTS, TEMPERATURE AND WIND (KTS)!
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=20;35;50;65
FLINE=0;18;17;16;15
HILO=
HLSYM=
CLRBAR=1
WIND=bk0
TITLE=1/-2/~ 1000 MB STREAMLINES, WIND|~1000 MB STMLNS!0
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=70;90;110;130;150
FLINE=0;25;24;29;7;15
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ @ HEIGHTS, ISOTACHS AND WIND (KTS)!0
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=70;90;110;130;150
FLINE=0;25;24;29;7;15
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ @ HEIGHTS, ISOTACHS AND WIND (KTS)!0
COLORS=2

View file

@ -17,7 +17,7 @@ FINT = 70;90;110;130;150
FLINE = 0;25;24;29;7;15
HILO =
HLSYM =
CLRBAR = 1
!CLRBAR = 1
WIND = 18/1/1
TITLE = 5/-1/~ @ HEIGHTS, ISOTACHS AND WIND (KTS)!0
COLORS = 2

View file

@ -17,7 +17,6 @@ FINT=16;20;24;28;32;36;40;44
FLINE=0;23;22;21;20;19;18;17;16
HILO=2;6/X;N/10-99;10-99!0
HLSYM=
CLRBAR=1
WIND=
TITLE=5/-1/~ @ WINDS and VORTICITY!0
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=!70;90;110;130;150;170;190!3;5;7;9;11;13!
FLINE=!0;24;25;29;7;15;14;2!0;23;22;21;17;16;2!
HILO=0!0!0!0!1/H#;L#/3
HLSYM=0!0!0!0!1.5;1.5//22;22/2;2/hw
CLRBAR=0!0!1/V/LL!0
WIND=0
TITLE=1/-1/~ @ DIVERGENCE AND ISOTACHS!0
COLORS=2

View file

@ -17,7 +17,7 @@ FINT = !70;90;110;130;150;170;190!3;5;7;9;11;13!
FLINE = !0;24;25;29;7;15;14;2!0;23;22;21;17;16;2!
HILO = 0!0!0!0!1/H#;L#/3
HLSYM = 0!0!0!0!1.5;1.5//22;22/2;2/hw
CLRBAR = 0!0!1/V/LL!0
!CLRBAR = 0!0!1/V/LL!0
WIND = 0
TITLE = 1/-1/~ @ DIVERGENCE AND ISOTACHS!0
COLORS = 2

View file

@ -20,7 +20,6 @@ FINT=70;90;110;130;150
FLINE=0;25;24;29;7;15
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ @ HEIGHTS, ISOTACHS AND WIND (KTS)!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=70;90;110;130;150
FLINE=0;25;24;29;7;15
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ ^ @ HEIGHTS, ISOTACHS AND WIND (KTS)!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=!0.5;1.0;1.5;2.0
FLINE=!0;23;22;30;14
HILO=!!2;6/X;N/10-99;10-99 ! !
HLSYM=
CLRBAR=1
WIND=9/.8/2/112
TITLE=1/-1/~ 200mb HGHT, VORTICITY, PW AND 850 WIND (KTS)!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=70;90;110;130;150
FLINE=0;25;24;29;7;15
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ ^ @ HEIGHTS, ISOTACHS AND WIND (KTS)!0
COLORS=2

View file

@ -19,7 +19,6 @@ FINT=!70;90;110;130;150;170;190!3;5;7;9;11;13!
FLINE=!0;24;25;29;7;15;14;2!0;23;22;21;17;16;2!
HILO=0
HLSYM=0
CLRBAR=0!0!1/V/LL!0
WIND=9/1/2/112
TITLE=1/-1/~ @ HGHTS, ISOTACHS (KTS), AND DIVERGENCE!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=70;90;110;130;150
FLINE=0;25;24;29;7;15
HILO=
HLSYM=
CLRBAR=1
WIND=0 !18//1
TITLE=5/-2/~ @ ISOTACHS AND WIND (KTS)|~@ WIND!
COLORS=2

View file

@ -17,7 +17,7 @@ FINT = .01;.1;.25;.5;.75;1;1.25;1.5;1.75;2;2.25;2.5;2.75;3;3.25;3.5;3.75;4
FLINE = 0;21-30;14-20;5
HILO = 31;0/x#2////y
HLSYM = 1.5
CLRBAR = 1
!CLRBAR = 1
WIND = 0
TITLE = 1/-1/~ 24-HR OBS PRECIP (RFC, 40km avg) !0
COLORS = 2

View file

@ -17,7 +17,7 @@ FINT = .01;.10;.25;.5;1;1.5;2;2.5;3;3.5;4;4.5;5;6;8;10.0
FLINE = 0;11;18;8;6;25;21;22;7;30;4;24;20;17;15;14;31
HILO = 0
HLSYM = 0
CLRBAR = 1//CL/0;.5/.75;.01
!CLRBAR = 1//CL/0;.5/.75;.01
WIND =
TITLE = 1/-1/COOPERATIVE RAINFALL REPORTS FOR 24 hrs ENDING 12 UTC: ~
COLORS =

View file

@ -18,7 +18,6 @@ FINT=!70;90;110;130;150;170;190!2;4;6;8;10;12!
FLINE=!0;24;25;30;28;14;2!0;23;22;21;17;16;2!
HILO=0!0!0!0!1/H#;L#/3
HLSYM=0!0!0!0!1.5;1.5//22;22/2;2/hw
CLRBAR=0!0!1/V/LL!0
WIND=16/0.7//211/0.5
TITLE=1/-1/~ @ DIVERGENCE, ISOTACHS (KTS), and AGEOSTROPHIC WIND!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=!70;90;110;130;150;170;190!2;4;6;8;10;12!
FLINE=!0;24;25;30;28;14;2!0;23;22;21;17;16;2!
HILO=0!0!0!0!1/H#;L#/3
HLSYM=0!0!0!0!1.5;1.5//22;22/2;2/hw
CLRBAR=0!0!1/V/LL!0
WIND=16/0.7//211/0.5
TITLE=1/-1/~ @ DIV, ISOTACHS, and AGEOSTROPHIC WIND!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=16;20;24;28;32;36;40;44
FLINE=0;23;22;21;20;19;18;17;16
HILO=2;6/X;N/10-99;10-99!0
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ @ HEIGHTS AND ABS VORTICITY$!0
COLORS=2

View file

@ -20,7 +20,6 @@ FINT=70;90;110;130;150
FLINE=0;25;24;29;7;15
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ @ HEIGHTS, ISOTACHS AND WIND (KTS)!0
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=70;90;110;130;150
FLINE=0;25;24;29;7;15
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ @ HEIGHTS, ISOTACHS AND WIND (KTS)!0
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=70;90;110;130
FLINE=0;18;17;16;15
HILO=
HLSYM=
CLRBAR=1
WIND=bk0
TITLE=1/-2/~ 250 MB STREAMLINES, WIND|~250 MB STMLNS!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=!0.5;1.0;1.5;2.0
FLINE=!0;23;22;30;14
HILO=!!2;6/X;N/10-99;10-99 ! !
HLSYM=
CLRBAR=1
WIND=9/.8/2/112
TITLE=1/-1/~ 250mb HGHT, VORTICITY, PW AND 850 WIND (KTS)!0
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=4;6;8;10;12;14;16;18
FLINE=0;14;15;16;17;18;19;20;3
HILO=2;6/X;N/-99--4;4-99 ! 0
HLSYM=0
CLRBAR=1/V/LL!0
WIND=6/.8/2/112
TITLE=1/-1/~ @ WIND AND RELATIVE VORTICITY!0
COLORS=2

View file

@ -18,7 +18,7 @@ FINT = 4;6;8;10;12;14;16;18
FLINE = 0;14-20;3
HILO = 2;6/X;N/-99--4;4-99 ! 0
HLSYM = 0
CLRBAR = 1/V/LL!0
!CLRBAR = 1/V/LL!0
WIND = 6/.8/2/112
TITLE = 1/-1/~ @ WIND AND RELATIVE VORTICITY!0
COLORS = 2

View file

@ -18,7 +18,6 @@ FINT=2;4;6;8;10
FLINE=0;23;22;28;15;2
HILO=0
HLSYM=0
CLRBAR=1
WIND=9/0.7/2/212
TITLE=1/-1/~ @ PRESSURE, WIND AND PRES ADV (omega)!0
COLORS=2

View file

@ -18,7 +18,7 @@ FINT = 332;348;364!1;2;3;4
FLINE = 0;23;22;14!0;0;24;30;13
HILO = 0!0!0!0!0!0!20/H#;L#/1020-1070;900-1012
HLSYM = 0!0!0!0!0!0!1.5;1.5//22;22/3;3/hw
CLRBAR= 0!1/V/LL!0!0
!CLRBAR= 0!1/V/LL!0!0
WIND = 9/0.9/2/112
TITLE = 1/-1/~ 300-200mb PV, 300mb WIND (KTS) ,PMSL, BL THTAE!0
COLORS = 2

View file

@ -18,7 +18,6 @@ FINT=
FLINE=
HILO=3/W;K
HLSYM=
CLRBAR=0
WIND=27/.1/2//.5
TITLE=1/-1/~ @ Q-VECTORS and THICKNESS !0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=!70;90;110;130;150;170;190!0
FLINE=!0;24;25;30;28;14;2!0;23;22;21;17;16;2!
HILO=!0!0!3/W;K!0
HLSYM=
CLRBAR=0
WIND=27/.2/2//.5
TITLE=1/-1/~ 300:700 Qn-VECTORS, THICKNESS AND 300mb ISOTACHS!0
COLORS=2

View file

@ -11,7 +11,6 @@ FINT=-4;-2;0;2;4
FLINE=0;18;17;16;15;14
HILO=1/H#;L#/3
HLSYM=1.5;1.5//22;22/2;2/hw
CLRBAR=1
WIND=18/1/1
TITLE=1/-1/~ @ DIVERGENCE
COLORS=3

View file

@ -18,7 +18,6 @@ FINT=!70;90;110;130;150;170;190!2;4;6;8;10;12!
FLINE=!0;24;25;30;28;14;2!0;23;22;21;17;16;2!
HILO=0!0!0!0!1/H#;L#/3
HLSYM=0!0!0!0!1.5;1.5//22;22/2;2/hw
CLRBAR=0!0!1/V/LL!0
WIND=2/0.8/1.2/211/0.5
TITLE=1/-1/~ @ DIVERGENCE, ISOTACHS (KTS), and AGEOSTROPHIC WIND!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=!70;90;110;130;150;170;190!3;5;7;9;11;13!
FLINE=!0;24;25;29;7;15;14;2!0;23;22;21;17;16;2!
HILO=0!0!0!0!1/H#;L#/3
HLSYM=0!0!0!0!1.5;1.5//22;22/2;2/hw
CLRBAR=0!0!1/V/LL!0
WIND=0
TITLE=1/-1/~ @ DIVERGENCE AND ISOTACHS!0
COLORS=2

View file

@ -20,7 +20,6 @@ FINT=16;20;24;28;32;36;40;44
FLINE=0;23;22;21;20;19;18;17;16
HILO=2;6/X;N/10-99;10-99!
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ @ HEIGHTS AND ABS VORTICITY$!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=-12;-9;-6;-3;3;6;9;12
FLINE=29;30;25;24;0;14;15;17;5
HILO=!2;6/X;N/10-99;10-99!
HLSYM=0
CLRBAR=1
WIND=18/1/1
TITLE=5/0/~ @ HEIGHT, VORTICITY, VORTICITY ADV|~ @ HGHT, VORT ADV!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=16;20;24;28;32;36;40;44
FLINE=0;23;22;21;20;19;18;17;16
HILO=2;6/X;N/10-99;10-99!0
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ $ @ HEIGHTS AND ABS VORTICITY!0
COLORS=2

View file

@ -20,7 +20,7 @@ FINT = 16;20;24;28;32;36;40;44
FLINE = 0;23-15
HILO = 2;6/X;N/10-99;10-99!
HLSYM =
CLRBAR = 1
!CLRBAR = 1
WIND = 18/1/1
TITLE = 5/-1/~ @ HEIGHTS AND ABS VORTICITY$!0
COLORS = 2

View file

@ -18,7 +18,6 @@ FINT=-60;-54;-48;-42;-36
FLINE=24;30;28;29;25;0
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ ^ @ HEIGHTS, TEMPERATURE AND WIND (KTS)!
COLORS=2

View file

@ -19,7 +19,6 @@ FINT=70;90;110;130;150
FLINE=0;25;24;29;7;15
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ @ HEIGHTS, ISOTACHS AND WIND (KTS)!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=70;90;110;130;150
FLINE=0;25;24;29;7;15
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ ^ @ HEIGHTS, ISOTACHS AND WIND (KTS)!0
COLORS=2

View file

@ -19,7 +19,6 @@ FINT=!0.5;1.0;1.5;2.0
FLINE=!0;23;22;30;14
HILO=!!2;6/X;N/10-99;10-99 ! !
HLSYM=
CLRBAR=1
WIND=9/.8/2/112
TITLE=1/-1/~ 300mb HGHT, VORTICITY, PW AND 850 WIND (KTS)!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=2;4;6;8;10
FLINE=0;23;22;28;15;2
HILO=0
HLSYM=0
CLRBAR=1
WIND=9/0.7/2/212
TITLE=1/-1/~ @ PRESSURE, WIND AND PRES ADV (omega)!0
COLORS=2

View file

@ -11,7 +11,6 @@ FINT=2;4;6;8;10
FLINE=0;23;22;28;15;2
HILO=0
HLSYM=0
CLRBAR=1
WIND=9/0.7/2/212
TITLE=1/-1/~ @ PRESSURE, WIND, PRES, ADV!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=2;4;6;8;10
FLINE=0;23;22;28;15;2
HILO=0
HLSYM=0
CLRBAR=1
WIND=9/0.7/2/212
TITLE=1/-1/~ @ PRESSURE, WIND AND PRES ADV (omega)!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=2;4;6;8;10
FLINE=0;23;22;28;15;2
HILO=0
HLSYM=0
CLRBAR=1
WIND=9/0.7/2/212
TITLE=1/-1/~ @ PRESSURE, WIND AND PRES ADV (omega)!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=2;4;6;8;10
FLINE=0;23;22;28;15;2
HILO=0
HLSYM=0
CLRBAR=1
WIND=9/0.7/2/212
TITLE=1/-1/~ @ PRESSURE, WIND AND PRES ADV (omega)!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=2;4;6;8;10
FLINE=0;23;22;28;15;2
HILO=0
HLSYM=0
CLRBAR=1
WIND=9/0.7/2/212
TITLE=1/-1/~ @ PRESSURE, WIND AND PRES ADV (omega)!0
COLORS=2

View file

@ -18,7 +18,7 @@ FINT = 332;348;364!1;2;3;4
FLINE = 0;23;22;14!0;0;24;30;13
HILO = 0!0!0!0!0!0!20/H#;L#/1020-1070;900-1012
HLSYM = 0!0!0!0!0!0!1.5;1.5//22;22/3;3/hw
CLRBAR= 0!1/V/LL!0!0
!CLRBAR= 0!1/V/LL!0!0
WIND = 9/0.9/2/112
TITLE = 1/-1/~ 400-200mb PV, 300mb WIND (KTS), PMSL, BL THTAE!0
COLORS = 2

View file

@ -20,7 +20,6 @@ FINT=332;348;364!1;2;3;4
FLINE=0;23;22;14!0;0;24;30;13
HILO=0!0!0!0!0!0!20/H#;L#/1020-1070;900-1008
HLSYM=0!0!0!0!0!0!1.5;1.5//22;22/3;3/hw
CLRBAR=0!1/V/LL!0!0
WIND=9/0.9/2/112
TITLE=1/-1/~ 400-250mb PV,300mb WIND (KTS),PMSL,BL THTAE!0
COLORS=2

View file

@ -18,7 +18,7 @@ FINT = 332;348;364!1;2;3;4
FLINE = 0;23;22;14!0;0;24;30;13
HILO = 0!0!0!0!0!0!20/H#;L#/1020-1070;900-1012
HLSYM = 0!0!0!0!0!0!1.5;1.5//22;22/3;3/hw
CLRBAR= 0!1/V/LL!0!0
!CLRBAR= 0!1/V/LL!0!0
WIND = 9/0.9/2/112
TITLE = 1/-1/~ 400-250mb PV, 300mb WIND (KTS), PMSL, BL THTAE!0
COLORS = 2

View file

@ -17,7 +17,7 @@ FINT =
FLINE =
HILO =
HLSYM =
CLRBAR= 1
!CLRBAR= 1
WIND =
TITLE = 5/-1/~ @ HEIGHTS AND 500-300mb RH$!0
COLORS = 2

View file

@ -18,7 +18,7 @@ FINT = 332;348;364!1;2;3;4
FLINE = 0;23;22;14!0;0;24;30;13
HILO = 0!0!0!0!0!0!20/H#;L#/1020-1070;900-1012
HLSYM = 0!0!0!0!0!0!1.5;1.5//22;22/3;3/hw
CLRBAR= 0!1/V/LL!0!0
!CLRBAR= 0!1/V/LL!0!0
WIND = 9/0.9/2/112
TITLE = 1/-1/~ 500-250mb PV, 300mb WIND (KTS), PMSL, BL THTAE!0
COLORS = 2

View file

@ -18,7 +18,7 @@ FINT = 332;348;364!1;2;3;4
FLINE = 0;23;22;14!0;0;24;30;13
HILO = 0!0!0!0!0!0!20/H#;L#/1020-1070;900-1012
HLSYM = 0!0!0!0!0!0!1.5;1.5//22;22/3;3/hw
CLRBAR= 0!1/V/LL!0!0
!CLRBAR= 0!1/V/LL!0!0
WIND = 9/0.9/2/112
TITLE = 1/-1/~ 500-300mb PV, 400mb WIND (KTS), PMSL, BL THTAE!0
COLORS = 2

View file

@ -17,7 +17,6 @@ FINT=16;20;24;28;32;36;40;44
FLINE=0;23;22;21;20;19;18;17;16
HILO=2;6/X;N/10-99;10-99!0
HLSYM=
CLRBAR=1
WIND=
TITLE=5/-1/~ @ ABS VORTICITY$!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=
FLINE=
HILO=2;6/X;N/10-99;10-99!0
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ @ ABS VORTICITY$!0
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=16;20;24;28;32;36;40;44
FLINE=0;23;22;21;20;19;18;17;16
HILO=2;6/X;N/10-99;10-99!0
HLSYM=
CLRBAR=1
WIND=
TITLE=5/-1/~ @ WINDS and VORTICITY!0
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=
FLINE=
HILO=
HLSYM=
CLRBAR=0
WIND=
TITLE=5/-1/~ @ HEIGHTS!0
COLORS=2

View file

@ -20,7 +20,6 @@ FINT=16;20;24;28;32;36;40;44
FLINE=0;23;22;21;20;19;18;17;16
HILO=2;6/X;N/10-99;10-99!0
HLSYM=
CLRBAR=1
SKIP=2
WIND=18/1/1
TITLE=5/-1/~ @ HEIGHT AND ABS VORTICITY!0

View file

@ -18,7 +18,7 @@ FINT = -12;-9;-6;-3;3;6;9;12
FLINE = 29;30;25;24;0;14;15;17;5
HILO = !2;6/X;N/10-99;10-99!
HLSYM = 0
CLRBAR= 1
!CLRBAR= 1
WIND = 18/1/1
TITLE = 5/0/~ @ HEIGHT, VORTICITY AND VORTICITY ADV|~ @ HGHT AND VORT ADV!0
COLORS = 2

View file

@ -18,7 +18,7 @@ FINT = -12;-9;-6;-3;3;6;9;12
FLINE = 29;30;25;24;0;14;15;17;5
HILO = !2;6/X;N/10-99;10-99!
HLSYM = 0
CLRBAR = 1
!CLRBAR = 1
WIND = 18/1/1
TITLE = 5/0/~ @ HEIGHT, VORTICITY AND VORTICITY ADV|~ @ HGHT AND VORT ADV!0
COLORS = 2

View file

@ -18,7 +18,6 @@ FINT=16;20;24;28;32;36;40;44
FLINE=0;23;22;21;20;19;18;17;16
HILO=2;6/X;N/10-99;10-99!0
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ $ @ HEIGHTS AND ABS VORTICITY!0
COLORS=2

View file

@ -20,7 +20,6 @@ FINT=
FLINE=
HILO=2;6/X;N/10-99;10-99!0
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ @ HEIGHT AND ABS VORTICITY$!0
COLORS=2

View file

@ -20,7 +20,7 @@ FINT = 16;20;24;28;32;36;40;44
FLINE = 0;23-15
HILO = 2;6/X;N/10-99;10-99!0
HLSYM =
CLRBAR = 1
!CLRBAR = 1
WIND = 18/1/1
TITLE = 5/-1/~ @ HEIGHT AND ABS VORTICITY!0
COLORS = 2

View file

@ -17,7 +17,6 @@ FINT=16;20;24;28;32;36;40;44
FLINE=0;23;22;21;20;19;18;17;16
HILO=2;6/X;N/10-99;10-99!0
HLSYM=
CLRBAR=1
WIND=0 ! ! !18/1/1
TITLE=1/-1/~ @ HEIGHTS, ABS VORTICITY AND WIND!0
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=
FLINE=
HILO=
HLSYM=
CLRBAR=0
WIND=
TITLE=5/-1/~ @ HEIGHTS!0
COLORS=2

View file

@ -19,7 +19,6 @@ FINT=504;510;516;522;528;534;540;546;552;558;564;570;576;582;588;594
FLINE=30;29;28;27;26;25;24;23;22;21;20;19;18;17;16;15;14
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=1/-1/~ 500mb HEIGHTS !0
COLORS=2

View file

@ -19,7 +19,7 @@ FINT = 504;510;516;522;528;534;540;546;552;558;564;570;576;582;588;594
FLINE = 30-14
HILO =
HLSYM =
CLRBAR = 1
!CLRBAR = 1
WIND = 18/1/1
TITLE = 1/-1/~ 500mb HEIGHTS !0
COLORS = 2

View file

@ -20,7 +20,7 @@ FINT = 16;20;24;28;32;36;40;44
FLINE = 0;23-15
HILO = 2;6/X;N/10-99;10-99! !
HLSYM =
CLRBAR= 1
!CLRBAR= 1
WIND = 18/1/1
TITLE = 5/0/~ @ HEIGHTS AND GEO ABS VORTICITY!0
COLORS = 2

View file

@ -20,7 +20,7 @@ FINT = 16;20;24;28;32;36;40;44
FLINE = 0;23-15
HILO = 2;6/X;N/10-99;10-99! !
HLSYM =
CLRBAR = 1
!CLRBAR = 1
WIND = 18/1/1
TITLE = 5/0/~ @ HEIGHTS AND GEO ABS VORTICITY!0
COLORS = 2

View file

@ -18,7 +18,6 @@ FINT=70;90
FLINE=0;23;22
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ @ HEIGHTS, REL HUMIDITY AND OMEGA!
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=-36;-30;-24;-18;-12
FLINE=24;30;28;29;25;0
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ ^ @ HEIGHTS, TEMPERATURE AND WIND (KTS)!
COLORS=2

View file

@ -11,7 +11,6 @@ FINT=-36;-30;-24;-18;-12
FLINE=24;30;28;29;25;0
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ ^ @ HEIGHT, TEMPERATURE AND WIND (KTS)
COLORS=3

View file

@ -17,7 +17,6 @@ FINT=70;90;110;130;150
FLINE=0;25;24;29;7;15
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ @ HEIGHTS, ISOTACHS AND WIND (KTS)!0
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=
FLINE=
HILO=
HLSYM=
CLRBAR=0
WIND=
TITLE=5/-1/~ @ MEAN HEIGHT AT 500 mb!0
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=50;70;90;110
FLINE=0;18;17;16;15
HILO=
HLSYM=
CLRBAR=1
WIND=bk0
TITLE=1/-2/~ 500 MB STREAMLINES, WIND|~500 MB STMLNS!0
COLORS=2

View file

@ -11,7 +11,6 @@ FINT=-36;-30;-24;-18;-12
FLINE=24;30;28;29;25;0
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ ^ @ TEMPERATURE
COLORS=3

View file

@ -11,7 +11,6 @@ FINT=3000;3050;3100;3150;3200
FLINE=0;18;17;16;15;14
HILO=2;6/X;N/10-99;10-99
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ @ WIND BARB
COLORS=3

View file

@ -18,7 +18,6 @@ FINT=4;6;8;10;12;14;16;18
FLINE=0;14;15;16;17;18;19;20;3
HILO=2;6/X;N/-99--4;4-99 ! 0
HLSYM=0
CLRBAR=1/V/LL!0
WIND=6/.8/2/112
TITLE=1/-1/~ @ WIND (KTS) AND RELATIVE VORTICITY$!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=
FLINE=
HILO=
HLSYM=
CLRBAR=0
WIND=
TITLE=5/-3/~ @ ETA HEIGHTS!6/0/~ NGM HEIGHTS!3/-2/~ GFS HEIGHTS
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=70;90;110;130;150
FLINE=0;25;24;29;7;15
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ @ HEIGHTS, ISOTACHS AND WIND (KTS)!0
COLORS=2

View file

@ -11,7 +11,6 @@ FINT=16;20;24;28;32;36;40;44
FLINE=0;23;22;21;20;19;18;17;16
HILO=2;6/X;N/10-99;10-99
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ @ HEIGHT AND ABS VORTICITY
COLORS=3

View file

@ -17,7 +17,6 @@ FINT=70;90
FLINE=0;23;22
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/0/~ @ HEIGHTS, REL HUMIDITY AND OMEGA!
COLORS=2

View file

@ -17,7 +17,7 @@ FINT = 70;90
FLINE = 0;23;22
HILO =
HLSYM =
CLRBAR = 1
!CLRBAR = 1
WIND = 18/1/1
TITLE = 5/0/~ @ HEIGHTS, REL HUMIDITY AND OMEGA!
COLORS = 2

View file

@ -17,7 +17,6 @@ FINT=16;20;24;28;32;36;40;44
FLINE=0;23;22;21;20;19;18;17;16
HILO=2;6/X;N/10-99;10-99!0
HLSYM=
CLRBAR=1
WIND=
TITLE=5/-1/~ @ WINDS and VORTICITY!0
COLORS=2

View file

@ -17,7 +17,6 @@ FINT=
FLINE=
HILO=
HLSYM=
CLRBAR=0
WIND=
TITLE=5/-1/~ @ HEIGHTS!0
COLORS=2

View file

@ -18,7 +18,6 @@ FINT=70;90
FLINE=0;23;22
HILO=
HLSYM=
CLRBAR=1
WIND=18/1/1
TITLE=5/-1/~ @ HGHTS, REL HUMIDITY!0
COLORS=2

Some files were not shown because too many files have changed in this diff Show more