merge unidata_15.1.1 to unidata_16.1.4

Former-commit-id: 0dc3df68aa76348b27e8ce208cb72d91467184c0
This commit is contained in:
mjames-upc 2016-03-25 13:09:32 -05:00
commit e2d9ba9a4c
1708 changed files with 336676 additions and 11566 deletions

2
.gitignore vendored
View file

@ -10,4 +10,4 @@ bin-test/
*.pyc
*.o
*.orig
*.log

3
.gitmodules vendored Normal file
View file

@ -0,0 +1,3 @@
[submodule "gsd"]
path = gsd
url = https://michael.james@vlab.ncep.noaa.gov/git/awips2-gsd

131
README.md Normal file
View file

@ -0,0 +1,131 @@
# Install AWIPS II
These scripts should be run as *root*:
## CAVE Client
Download and run `installCAVE.sh`
wget https://raw.githubusercontent.com/Unidata/awips2/unidata_15.1.1/installCAVE.sh
chmod 755 ./installCAVE.sh
./installCAVE.sh
## EDEX Server
Download and run `installEDEX.sh`:
wget https://raw.githubusercontent.com/Unidata/awips2/unidata_15.1.1/installEDEX.sh
chmod 755 ./installEDEX.sh
./installEDEX.sh
## What do these scripts do?
1. Downloads [http://www.unidata.ucar.edu/software/awips2/doc/awips2.repo](http://www.unidata.ucar.edu/software/awips2/doc/awips2.repo) to `/etc/yum.repos.d/awips2.repo`
2. Runs `yum clean all`
3. Runs `yum groupinstall awips2-server` and/or `yum groupinstall awips2-cave`
## System Requirements
EDEX operations systems supported:
* CentOS 5 and 6
* Red Hat 5 and 6
* Fedora Core 12 to 14
Not supported for EDEX:
* Debian, Ubuntu, SUSE, Solaris, OS X, Fedora 15+, CentOS/RHEL 7, Windows
It will probably work on Scientific Linux.
selinux should be **disabled** [(read more about selinux at redhat.com)](https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Security-Enhanced_Linux/sect-Security-Enhanced_Linux-Enabling_and_Disabling_SELinux-Disabling_SELinux.html)
## CentOS/RHEL 6 Server Config
#### Download awips2.repo yum file
wget -O /etc/yum.repos.d/awips2.repo http://www.unidata.ucar.edu/software/awips2/doc/awips2.repo
#### create user `awips` and group `fxalpha`
groupadd fxalpha
useradd -G fxalpha awips
#### create /awips2 and set owner to awips:fxalpha
mkdir -p /awips2/data_store
chown -R awips:fxalpha /awips2
#### edit /etc/security/limits.conf
Qpid is known to crash on some systems which have not defined a higher security limit for user processes and files. To be sure that Qpid can handle the high number of messages from edexBridge, add the following two lines to `/etc/security/limits.conf`
printf "awips soft nproc 65536\nawips soft nofile 65536\n" >> /etc/security/limits.conf
Or copy manually:
awips soft nproc 65536
awips soft nofile 65536
#### /etc/sysconfig/iptables
To serve data from an EDEX server, iptables must allow TCP connections on ports **5672**, **9581** and **9582**. The following lines added to `/etc/sysconfig/iptables`, followed by the command `service iptables restart`, will configure iptables for EDEX.
-A INPUT -p tcp -m tcp --dport 5672 -j ACCEPT
-A INPUT -p tcp -m tcp --dport 9581 -j ACCEPT
-A INPUT -p tcp -m tcp --dport 9582 -j ACCEPT
## Install with Yum
#### yum groupinstall awips2-server
The EDEX Data Server packages will take roughly 20-30 minutes to install, so you may want to let this run and come back.
yum groupinstall awips2-server -y 2>&1 | tee -a edex_install.log
#### Start EDEX
edex start
If you see an error from the above command, check your EDEX configuration with the command
edex setup
(this is done once during installation, but it's a good idea to check again)
Confirm that all EDEX services are running:
[root@edex ~]# edex
[edex status]
postgres :: running :: pid 7317
pypies :: running :: pid 7345
qpid :: running :: pid 7378
EDEXingest :: running :: pid 8271
EDEXgrib :: running :: pid 8317
EDEXrequest :: running :: pid 8218
ldmadmin :: running :: pid 1337
edex (status|start|stop|setup|log|purge)
#### Watch Logs
edex log
[edex] EDEX Log Viewer
:: No log specified - Defaulting to ingest log
:: Viewing /awips2/edex/logs/edex-ingest-20140413.log. Press CTRL+C to exit
INFO 2014-04-13 20:48:25,413 [genericThreadPool-59] Ingest: EDEX: Ingest - obs:: /awips2/data_store/text/13/20/SPXX61_KWBC_132048_25234695.20140413Apr processed in: 0.1600 (sec) Latency: 0.3280 (sec)
INFO 2014-04-13 20:48:25,415 [genericThreadPool-91] Ingest: EDEX: Ingest - taf:: /awips2/data_store/text/13/20/FTXX60_KWBC_132048_25234702.20140413Apr processed in: 0.0060 (sec) Latency: 0.3300 (sec)
INFO 2014-04-13 20:48:25,445 [genericThreadPool-62] Ingest: EDEX: Ingest - sfcobs:: /awips2/data_store/text/13/21/SXUS20_KWNB_132100_25234700.20140413Apr processed in: 0.1850 (sec) Latency: 0.3600 (sec)
* edex log grib - Grib Products
* edex log radar - Radar Products
* edex log satellite - Satellite Products
* edex log text - Text Products
* edex log ldm - LDM log
#### Confirm EDEX Hostname
Check the file `/awips2/edex/bin/setup.env` to confirm that the EDEX hostname is resolvable both from inside and outside your machine.

View file

@ -27,7 +27,7 @@ import time
from xml.dom.minidom import parseString
#import stomp
from ufpy import stomp
from awips import stomp
def encodeElevation(elev):
if elev >= 0:

View file

@ -28,7 +28,7 @@ import time
from xml.dom.minidom import parseString
#import stomp
from ufpy import stomp
from awips import stomp
exit_cond = None

View file

@ -15,7 +15,7 @@ export PREFERRED_AFOS_FIRST_LETTER="KCPTXM"
### end of localization variables ###
# setup environment for HPE
export DATA_ARCHIVE_ROOT=/tmp/sbn
export DATA_ARCHIVE_ROOT=/awips2/data_store
# setup db connections
export DB_ADDR=localhost
@ -23,21 +23,19 @@ export DB_PORT=5432
# setup connection to qpid
export BROKER_ADDR=localhost
export BROKER_PORT=5672
export BROKER_HTTP=8180
# setup hdf5 connection if pypies is enabled
export PYPIES_SERVER=http://localhost:9582
export PYPIES_SERVER=http://${BROKER_ADDR}:9582
# moved here from environment.xml
# these values are returned to clients that contact the localization service
export HTTP_PORT=9581
export HTTP_SERVER_PATH=/services
export HTTP_SERVER=http://localhost:${HTTP_PORT}${HTTP_SERVER_PATH}
export JMS_SERVER=tcp://${BROKER_ADDR}:${BROKER_PORT}
export HTTP_SERVER=http://${BROKER_ADDR}:${HTTP_PORT}${HTTP_SERVER_PATH}
export JMS_SERVER=tcp://${BROKER_ADDR}:5672
export JMS_VIRTUALHOST=edex
export JMS_CONNECTIONS_URL=http://${BROKER_ADDR}:${BROKER_HTTP}/api/latest/connection/${JMS_VIRTUALHOST}
export RADAR_SERVER=tcp://localhost:8813
export JMS_CONNECTIONS_URL=http://${BROKER_ADDR}:8180/api/latest/connection/${JMS_VIRTUALHOST}
export RADAR_SERVER=tcp://${BROKER_ADDR}:8813
# set the AWIPS II shared directory
export SHARE_DIR=/awips2/edex/data/share

7
build/deploy.edex.awips2/esb/bin/start.sh Normal file → Executable file
View file

@ -72,13 +72,6 @@ source ${dir}/setup.env
#source /awips2/edex/bin/yajsw/bin/setenv.sh
### AWIPS 1 support ###
if [ -f /etc/rc.config.d/AWIPS ]; then
. /etc/rc.config.d/AWIPS
fi
export SHLIB_PATH=$PROJECT/sharedlib
### End AWIPS 1 support ###
export HOSTNAME=`hostname`
export SHORT_HOSTNAME=`hostname -s`

View file

@ -19,7 +19,7 @@
# further licensing information.
##
export INIT_MEM=512 # in Meg
export MAX_MEM=1300 # in Meg
export MAX_MEM=4096 # in Meg
export MAX_PERM_SIZE=128m
export EDEX_JMX_PORT=1616
export EDEX_DEBUG_PORT=5005

View file

@ -20,7 +20,7 @@
##
export INIT_MEM=512 # in Meg
export MAX_MEM=1280 # in Meg
export MAX_MEM=2560 # in Meg
export EDEX_DEBUG_PORT=5006
export EDEX_JMX_PORT=1617

View file

@ -18,10 +18,10 @@
# See the AWIPS II Master Rights File ("Master Rights File.pdf") for
# further licensing information.
##
export INIT_MEM=128 # in Meg
export MAX_MEM=544 # in Meg
export INIT_MEM=1024 # in Meg
export MAX_MEM=4096 # in Meg
export METADATA_POOL_MAX=10
export METADATA_POOL_MAX=16
export EDEX_DEBUG_PORT=5007
export EDEX_JMX_PORT=1618
export MGMT_PORT=9603

View file

@ -19,8 +19,11 @@
# further licensing information.
##
export INIT_MEM=128 # in Meg
export MAX_MEM=2144 # in Meg
if [ "$EDEX_ARCH" == "64-bit" ]; then
export MAX_MEM=4096 # in Meg
else
export MAX_MEM=1376 # in Meg
fi
export SERIALIZE_POOL_MAX_SIZE=24
export SERIALIZE_STREAM_INIT_SIZE_MB=2
export SERIALIZE_STREAM_MAX_SIZE_MB=8
@ -28,5 +31,4 @@ export SERIALIZE_STREAM_MAX_SIZE_MB=8
export EDEX_DEBUG_PORT=5005
export EDEX_JMX_PORT=1616
export LOG_CONF=logback-request.xml
export MGMT_PORT=9601

View file

@ -1,5 +1,5 @@
<project default="main" basedir=".">
<property name="localization.sites" value="" />
<property name="localization.sites" value="OAX" />
<property name="deploy.python" value="true" />
<!--
The python packages to deploy - provided that
@ -18,17 +18,10 @@
<property name="groovy.path" value="" />
<property name="architecture" value="x86_64" />
<condition property="requiredPropertiesSet">
<and>
<isset property="workspace_loc" />
</and>
</condition>
<available property="groovyPathSet"
file="${groovy.path}/groovy" type="file" />
<target name="main">
<antcall target="usage" />
<antcall target="deploy-using-specific-groovy" />
<antcall target="deploy-using-environment-groovy" />
</target>

View file

@ -1,20 +1,20 @@
#!/bin/sh
##
# This software was developed and / or modified by Raytheon Company,
# pursuant to Contract DG133W-05-CQ-1067 with the US Government.
#
# U.S. EXPORT CONTROLLED TECHNICAL DATA
# pursuant to Contract DG133W-05-CQ-1067 with the US Government.
#
# U.S. EXPORT CONTROLLED TECHNICAL DATA
# This software product contains export-restricted data whose
# export/transfer/disclosure is restricted by U.S. law. Dissemination
# to non-U.S. persons whether in the United States or abroad requires
# an export license or other authorization.
#
# Contractor Name: Raytheon Company
# Contractor Address: 6825 Pine Street, Suite 340
# Mail Stop B8
# Omaha, NE 68106
# 402.291.0100
#
# Contractor Name: Raytheon Company
# Contractor Address: 6825 Pine Street, Suite 340
# Mail Stop B8
# Omaha, NE 68106
# 402.291.0100
#
# See the AWIPS II Master Rights File ("Master Rights File.pdf") for
# further licensing information.
##

View file

@ -1,6 +1,6 @@
<project default="usage" basedir=".">
<property name="eclipse.dir"
value="/opt/uframe-eclipse" />
value="/awips2/eclipse" />
<property name="build.os"
value="linux" />
<property name="build.ws"
@ -11,7 +11,7 @@
value="awips.product" />
<!-- Copy the zip file that is produced to this location. -->
<property name="destination.dir"
value="" />
value="/awips2/jenkins/build/dump/" />
<target name="usage">
<echo

Binary file not shown.

View file

@ -13,7 +13,7 @@
<!-- TODO: Verify These Properties References An Actual Directory. -->
<property name="eclipse.dir"
value="/opt/uframe-eclipse" />
value="/awips2/eclipse" />
<property name="build.version"
value="1.0.0" />
<property name="workspace.dir" value="${basedir}/../" />

View file

@ -1,7 +1,7 @@
<project default="main" basedir=".">
<!-- TODO: Verify These Properties References An Actual Directory. -->
<property name="eclipse.dir" value="/opt/uframe-eclipse" />
<property name="eclipse.dir" value="/awips2/eclipse" />
<property name="build.version" value="1.0.0" />
<property name="build.os" value="linux" />
<property name="build.ws" value="gtk" />
@ -238,9 +238,6 @@
<antcall target="p2.build.repo">
<param name="feature" value="com.raytheon.uf.viz.registry.feature" />
</antcall>
<antcall target="p2.build.repo">
<param name="feature" value="com.raytheon.uf.viz.datadelivery.feature" />
</antcall>
<antcall target="p2.build.repo">
<param name="feature" value="com.raytheon.uf.viz.npp.feature" />
</antcall>
@ -281,7 +278,9 @@
<antcall target="p2.build.repo">
<param name="feature" value="com.raytheon.uf.viz.d2d.ui.awips.feature" />
</antcall>
<antcall target="p2.build.repo">
<param name="feature" value="gov.noaa.gsd.viz.ensemble.feature" />
</antcall>
<antcall target="cleanup.features" />
</target>

View file

@ -15,3 +15,4 @@ designation.
linux.x86 - these files will only be installed on a 32-bit Linux Operating System.
linux.x86_64 - these files will only be installed on a 64-bit Linux Operating System.
win32.amd64 - these files will only be installed on a 64-bit Windows Operating System.
macosx.x86 - these files will only be installed on a 32-bit Apple OS X Operating System.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 363 B

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 427 B

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 B

After

Width:  |  Height:  |  Size: 382 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 229 B

After

Width:  |  Height:  |  Size: 502 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 320 B

After

Width:  |  Height:  |  Size: 477 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 277 B

After

Width:  |  Height:  |  Size: 294 B

View file

@ -39,28 +39,6 @@
extensionFilter=".xml">
</path>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:CAVE?after=group1">
<menu
label="Archive"
id="archive">
<command
commandId="com.raytheon.uf.viz.archive.casecreationui"
id="archivetest"
label="Archive Case Creation..."
style="push">
</command>
<command
commandId="com.raytheon.uf.viz.archive.retentionui"
id="archivetest"
label="Archive Retention..."
style="push">
</command>
</menu>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.commands">
<command

View file

@ -4,7 +4,7 @@
of adding sites to subscribe to in the feed -->
<siteConfigInformation>
<!-- hosts must be added, these will show up in the login dialog -->
<server hostname="dx1-oma.oma.us.ray.com" prettyName="Omaha Cluster"></server>
<server hostname="edex-cloud.unidata.ucar.edu" prettyName="Unidata EDEX Cloud Server"></server>
<!-- <server hostname="dx3-oma.oma.us.ray.com" prettyName="Omaha Secondary Cluster"></server>-->
<config site="OAX">
<subscribedSites>OAX</subscribedSites>

View file

@ -19,8 +19,16 @@
further_licensing_information.
-->
<menuTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<contribute xsi:type="subMenu" menuText="CCFP"
id="ncepHydro.awc.ccfp">
<contribute xsi:type="subinclude" fileName="menus/ncepHydro/awc/ccfp.xml"/>
<contribute xsi:type="bundleItem" file="bundles/Ccfp.xml"
menuText="AWC 4 Hour CCFP" id="CCFP4HOUR">
<substitute key="validDuration" value="14400" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/Ccfp.xml"
menuText="AWC 6 Hour CCFP" id="CCFP6HOUR">
<substitute key="validDuration" value="21600" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/Ccfp.xml"
menuText="AWC 8 Hour CCFP" id="CCFP8HOUR">
<substitute key="validDuration" value="28800" />
</contribute>
</menuTemplate>

View file

@ -21,7 +21,7 @@
<menuTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<contribute xsi:type="subinclude" fileName="menus/ncepHydro/cpc/cpcMenus.xml"/>
<contribute xsi:type="subMenu" menuText="Outlook Grids"
<contribute xsi:type="subMenu" menuText="CPC Outlook Grids"
id="ncepHydro.cpc.outlookGrids">
<contribute xsi:type="subinclude" fileName="menus/ncepHydro/cpc/outlookGrids.xml"/>
</contribute>

View file

@ -19,7 +19,7 @@
further_licensing_information.
-->
<menuTemplate>
<contribute xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="subMenu" menuText="Hazard Charts" id="ncepHydro.cpc.hazardCharts">
<contribute xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="subMenu" menuText="CPC Hazard Charts" id="ncepHydro.cpc.hazardCharts">
<contribute xsi:type="titleItem" titleText="------ 3-7 Day Hazards Outlook ------" id="threeTo7DayHazardsOutlook"/>
<contribute xsi:type="bundleItem" useReferenceTime="true" file="bundles/Redbook.xml" menuText="3-7 day Precipitation Fcst" timeQuery="true" id="threeTo7DayPrecipFcst">
<substitute value="PEIY97" key="wmo"/>

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<menuTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<contribute xsi:type="subMenu" menuText="Precipitation"
<contribute xsi:type="subMenu" menuText="HPC Precip Products"
id="ncepHydro.hpc.precipitation">
<contribute xsi:type="bundleItem" file="bundles/Redbook.xml"
menuText="Instantaneous Precip" id="instantaneousPrecip">
@ -154,7 +154,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="Temps &amp;&amp; Weather"
<contribute xsi:type="subMenu" menuText="HPC Temp &amp;&amp; Wx Products"
id="ncepHydro.hpc.tempsAndWeather">
<contribute xsi:type="bundleItem" file="bundles/Redbook.xml"
menuText="1-5 Day Max Temp Anomaly" id="fiveDayMaxTempAnomaly">

View file

@ -19,18 +19,18 @@
further_licensing_information.
-->
<menuContributionFile>
<include installTo="menu:ncepHydro?after=SPC"
<include installTo="menu:ncepHydro?before=SPC"
fileName="menus/ncepHydro/spc/baseSPC.xml"/>
<include installTo="menu:ncepHydro?after=TPC"
<include installTo="menu:ncepHydro?before=TPC"
fileName="menus/ncepHydro/tpc/baseTPC.xml"/>
<include installTo="menu:ncepHydro?after=NCO"
<include installTo="menu:ncepHydro?before=NCO"
fileName="menus/ncepHydro/nco/baseNCO.xml"/>
<include installTo="menu:ncepHydro?after=HPC"
<include installTo="menu:ncepHydro?before=HPC"
fileName="menus/ncepHydro/hpc/baseHPC.xml"/>
<include installTo="menu:ncepHydro?after=MPC"
<include installTo="menu:ncepHydro?before=OPC"
fileName="menus/ncepHydro/mpc/baseMPC.xml"/>
<include installTo="menu:ncepHydro?after=CPC"
<include installTo="menu:ncepHydro?before=CPC"
fileName="menus/ncepHydro/cpc/baseCPC.xml"/>
<include installTo="menu:ncepHydro?after=AWC"
<include installTo="menu:ncepHydro?before=AWC"
fileName="menus/ncepHydro/awc/baseAWC.xml"/>
</menuContributionFile>

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<menuTemplate>
<contribute xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="subMenu" menuText="Marine Guidance" id="ncepHydro.mpc.marineGuidance">
<contribute xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="subMenu" menuText="OPC Marine Guidance" id="ncepHydro.mpc.marineGuidance">
<contribute xsi:type="bundleItem" useReferenceTime="true" file="bundles/Redbook.xml" menuText="Tropical Sfc Analysis" timeQuery="true" id="tropicalSfcAnalysis">
<substitute value="PYNA98" key="wmo"/>
</contribute>

View file

@ -21,10 +21,10 @@
<menuTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<contribute xsi:type="bundleItem" file="bundles/ncepHydro/ConvectiveWatchPlot.xml"
menuText="Convective Watches" id="convectiveWatches">
menuText="SPC Convective Watches" id="convectiveWatches">
</contribute>
<contribute xsi:type="bundleItem" file="bundles/ncepHydro/SvrWxPlot.xml"
menuText="Svr Wx Plot" id="spcWxPlot">
menuText="SPC Svr Wx Plot" id="spcWxPlot">
</contribute>
<contribute xsi:type="subinclude" fileName="menus/ncepHydro/spc/hazardMenus.xml"/>

View file

@ -34,69 +34,37 @@
</reference>
</visibleWhen>
<separator
name="xxx"
name="SPC"
visible="true">
</separator>
<command id="SPC"
commandId="com.raytheon.viz.ui.actions.titleAction"
label="------ SPC ------">
</command>
<separator
name="xxx"
name="TPC"
visible="true">
</separator>
<command id="TPC"
commandId="com.raytheon.viz.ui.actions.titleAction"
label="------ TPC ------">
</command>
<separator
name="xxx"
name="NCO"
visible="true">
</separator>
<command id="NCO"
commandId="com.raytheon.viz.ui.actions.titleAction"
label="------ NCO ------">
</command>
</separator>
<separator
name="xxx"
name="HPC"
visible="true">
</separator>
<command id="HPC"
commandId="com.raytheon.viz.ui.actions.titleAction"
label="------ HPC ------">
</command>
<separator
name="xxx"
name="OPC"
visible="true">
</separator>
<command id="MPC"
commandId="com.raytheon.viz.ui.actions.titleAction"
label="------ MPC ------">
</command>
<separator
name="xxx"
name="CPC"
visible="true">
</separator>
<command id="CPC"
commandId="com.raytheon.viz.ui.actions.titleAction"
label="------ CPC ------">
</command>
<separator
name="xxx"
name="AWC"
visible="true">
</separator>
<command id="AWC"
commandId="com.raytheon.viz.ui.actions.titleAction"
label="------ AWC ------">
</command>
<separator
name="xxx"
<separator
name="HYDRO"
visible="true">
</separator>
<command id="HYDRO"
commandId="com.raytheon.viz.ui.actions.titleAction"
label="------ Hydro ------">
</command>
<separator name="QPE" visible="false"/>
<separator name="QPF" visible="false"/>
<separator name="HydroMenuEnd" visible="false"/>
@ -104,10 +72,6 @@
name="xyx"
visible="true">
</separator>
<command
commandId="com.raytheon.viz.ui.actions.titleAction"
label="------ Local Analyses/Statistical Guidance ------">
</command>
</menu>
</menuContribution>
</extension>

View file

@ -22,7 +22,7 @@
<plugin>
<extension point="org.eclipse.ui.menus">
<menuContribution locationURI="menu:org.eclipse.ui.main.menu?after=d2d.obsMenu">
<menu id="obs" label="Obs" mnemonic="O">
<menu id="obs" label="Surface" mnemonic="O">
<visibleWhen>
<reference
definitionId="com.raytheon.uf.viz.d2d.ui.inD2DActionSet">
@ -32,26 +32,32 @@
</separator>
<separator name="EndOfInitial" visible="true">
</separator>
<command commandId="com.raytheon.viz.ui.actions.titleAction"
label="------ METAR ------">
</command>
<separator name="METAR" visible="false">
</separator>
<separator name="EndOfMetar" visible="true">
</separator>
<command commandId="com.raytheon.viz.ui.actions.titleAction"
label="------ Synoptic ------">
</command>
<separator name="SYNOPTIC" visible="false">
</separator>
<separator name="EndOfSynoptic" visible="true">
</separator>
<command commandId="com.raytheon.viz.ui.actions.titleAction"
label="------ Local data ------">
</command>
<separator name="LocalData" visible="false">
<separator
name="WATCHWARN"
visible="false">
</separator>
<separator name="EndOfLocalData" visible="true">
<separator name="EndOfMos" visible="true">
</separator>
<command
commandId="com.raytheon.viz.ui.actions.titleAction"
label="------ Lightning ------">
</command>
<separator
name="USPLNPLACEHOLDER"
visible="false">
</separator>
<separator name="MOS" visible="false">
</separator>
<command commandId="com.raytheon.viz.ui.actions.titleAction"
label="------ Maritime ------" id="MARITIME">

View file

@ -19,6 +19,12 @@
further_licensing_information.
-->
<menuTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<contribute xsi:type="bundleItem" file="bundles/npp/soundingAvailability.xml"
menuText="NUCAPS Soundings" id="NUCAPSAvailability">
<substitute key="name" value="NUCAPS"/>
<substitute key="pluginName" value="nucaps"/>
<substitute key="soundingResourceData" value="com.raytheon.uf.viz.npp.nucaps.NucapsNSharpResourceData"/>
</contribute>
<contribute xsi:type="subMenu" id="UAplots" menuText="UA plots">
<contribute xsi:type="titleItem" titleText="------ NCEP ------" />
<contribute xsi:type="separator" id="NCEPEnd"

Binary file not shown.

After

Width:  |  Height:  |  Size: 265 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 477 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 380 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 417 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 409 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 377 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 470 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 415 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 312 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 480 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 312 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

File diff suppressed because it is too large Load diff

View file

@ -71,7 +71,7 @@ public class ChangeD2DLayoutAction extends AbstractHandler {
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
String sideViews = event.getParameter("sideViews");
if (sideViews != null) {
//if (sideViews != null) {
int numViews = Integer.parseInt(sideViews);
IWorkbenchWindow window = PlatformUI.getWorkbench()
.getActiveWorkbenchWindow();
@ -91,7 +91,7 @@ public class ChangeD2DLayoutAction extends AbstractHandler {
}
}
}
//}
// get current map editor, if non existent create one.
IDisplayPaneContainer part = EditorUtil.getActiveVizContainer();

View file

@ -31,6 +31,7 @@ import com.raytheon.uf.common.localization.LocalizationFile;
import com.raytheon.uf.common.localization.LocalizationUtil;
import com.raytheon.uf.common.status.IUFStatusHandler;
import com.raytheon.uf.common.status.UFStatus;
import com.raytheon.uf.viz.core.exception.VizException;
import com.raytheon.uf.viz.core.procedures.Procedure;
import com.raytheon.uf.viz.d2d.ui.dialogs.procedures.ProcedureDlg;
import com.raytheon.viz.ui.VizWorkbenchManager;
@ -56,6 +57,9 @@ import com.raytheon.viz.ui.dialogs.localization.VizOpenLocalizationFileListDlg;
* Jun 02, 2015 #4401 bkowal Updated to use {@link VizOpenLocalizationFileListDlg}.
* Jun 30, 2015 #4401 bkowal Specify the localization type when constructing a
* {@link VizOpenLocalizationFileListDlg}.
* Apr 19, 2015 mjames Call loadProcedureToScreen instead of ProcedureDlg.displayDialog
* when procedure file selected, no longer using procedure element
* loader... too cumbersome for users.
* </pre>
*
* @author chammack
@ -94,10 +98,12 @@ public class OpenAWIPSProcedure extends AbstractHandler {
if (p != null) {
log.info("Loading display file: "
+ f.getAbsolutePath());
ProcedureDlg.displayDialog(LocalizationUtil
.extractName(selectedFile.getName()), p,
VizWorkbenchManager.getInstance()
.getCurrentWindow().getShell());
try {
LoadPerspectiveHandler.loadProcedureToScreen( p, false);
} catch (VizException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
dialog = null;

View file

@ -20,6 +20,10 @@
package com.raytheon.uf.viz.d2d.ui.map.actions;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
@ -30,19 +34,20 @@ import com.raytheon.uf.common.status.UFStatus;
import com.raytheon.uf.common.status.UFStatus.Priority;
import com.raytheon.uf.viz.core.IDisplayPane;
import com.raytheon.uf.viz.core.IDisplayPaneContainer;
import com.raytheon.uf.viz.core.drawables.IDescriptor;
import com.raytheon.uf.viz.core.drawables.ResourcePair;
import com.raytheon.uf.viz.core.exception.VizException;
import com.raytheon.uf.viz.core.globals.VizGlobalsManager;
import com.raytheon.uf.viz.core.maps.actions.NewMapEditor;
import com.raytheon.uf.viz.core.maps.display.VizMapEditor;
import com.raytheon.uf.viz.core.status.StatusConstants;
import com.raytheon.uf.viz.d2d.ui.Activator;
import com.raytheon.uf.viz.core.rsc.AbstractVizResource;
import com.raytheon.uf.viz.core.rsc.ResourceList;
import com.raytheon.viz.ui.EditorUtil;
import com.raytheon.viz.ui.HistoryList;
import com.raytheon.viz.ui.editor.AbstractEditor;
import com.raytheon.viz.ui.editor.IMultiPaneEditor;
/**
* Action to reset a map to its initial state
* Action to reset a map to its initial state. What this *should*
* do is remove all non-map resources....
*
* <pre>
*
@ -56,6 +61,7 @@ import com.raytheon.viz.ui.editor.IMultiPaneEditor;
* Jul 10, 2008 chammack Properly clear the resource list on the old
* descriptor to facilitate better cleanup
* Oct 21, 2008 #1450 randerso Fixed to support multipane editors
* May 24, 2015 mjames@ucar Moved UnloadAllProductsAction here to replace map reload
*
* </pre>
*
@ -68,22 +74,30 @@ public class ClearAction extends AbstractHandler {
@Override
public Object execute(ExecutionEvent arg0) throws ExecutionException {
IEditorPart part = EditorUtil.getActiveEditor();
if (part == null) {
new NewMapEditor().execute(null);
return null;
}
try {
if (part instanceof IDisplayPaneContainer) {
HistoryList.getInstance().refreshLatestBundle();
clear(part);
HistoryList.getInstance().addBundle();
} else {
clear(part);
IDisplayPaneContainer cont = EditorUtil.getActiveVizContainer();
IDisplayPane[] panes = cont.getDisplayPanes();
for (IDisplayPane displayPane : panes) {
IDescriptor desc = displayPane.getDescriptor();
ResourceList rl = desc.getResourceList();
Iterator<ResourcePair> iterator = rl.iterator();
List<AbstractVizResource<?, ?>> rscsToRemove = new ArrayList<AbstractVizResource<?, ?>>();
while (iterator.hasNext()) {
ResourcePair rp = iterator.next();
if (!rp.getProperties().isMapLayer()
&& !rp.getProperties().isSystemResource()) {
rscsToRemove.add(rp.getResource());
}
}
for (AbstractVizResource<?, ?> rsc : rscsToRemove) {
rl.removeRsc(rsc);
}
} catch (VizException e) {
throw new ExecutionException("Error during clear", e);
}
cont.refresh();
return null;
}

View file

@ -65,9 +65,9 @@ public class D2D5Pane implements IPerspectiveFactory {
private static final String BASE_VIEW_ID_PREFIX = SideView.ID
+ UiUtil.SECONDARY_ID_SEPARATOR + "sideView";
private static final float THREE_PANE_WIDTH = 0.4f;
private static final float FIVE_PANE_WIDTH = 0.1f;
private static final float FIVE_PANE_WIDTH = 0.2f;
private static final float ZERO_PANE_WIDTH = 0.0f;
/*
* (non-Javadoc)
@ -93,31 +93,32 @@ public class D2D5Pane implements IPerspectiveFactory {
}
}
int numViews = ChangeD2DLayoutAction.getViewCount() == 2 ? 2
: baseViewsToAdd.size();
int numViews = ChangeD2DLayoutAction.getViewCount() > 0 ? 0
: 4;
String lastAdded = null;
Collections.sort(baseViewsToAdd);
for (int i = 0; i < baseViewsToAdd.size(); ++i) {
String baseView = baseViewsToAdd.get(i);
if (baseViewsToAdd.contains(baseView)) {
if (lastAdded == null) {
layout.addStandaloneView(
baseView,
false,
IPageLayout.LEFT,
ChangeD2DLayoutAction.getViewCount() == 2 ? THREE_PANE_WIDTH
: FIVE_PANE_WIDTH, editorArea);
} else {
layout.addStandaloneView(baseView, false,
IPageLayout.BOTTOM, (i >= numViews) ? 1.0f
: 1.0f / (numViews - i + 1), lastAdded);
}
lastAdded = baseView;
addedViews.add(lastAdded);
}
if (numViews > 0) {
for (int i = 0; i < baseViewsToAdd.size(); ++i) {
String baseView = baseViewsToAdd.get(i);
if (baseViewsToAdd.contains(baseView)) {
if (lastAdded == null) {
layout.addStandaloneView(
baseView,
false,
IPageLayout.LEFT,
FIVE_PANE_WIDTH, editorArea);
} else {
layout.addStandaloneView(baseView, false,
IPageLayout.BOTTOM, (i >= numViews) ? 1.0f
: 1.0f / (numViews - i + 1), lastAdded);
}
lastAdded = baseView;
addedViews.add(lastAdded);
}
}
}
addedViews.addAll(baseViewsToAdd);

View file

@ -58,6 +58,7 @@ import com.raytheon.viz.ui.dialogs.CaveSWTDialog;
* Oct 28, 2014 3767 bsteffen Automatically change filename if selected
* format does not support all options.
* Dec 4, 2014 DR16713 jgerth Support for date/time selection
* Jan 18, 2016 ---- mjames@ucar datetimeButton selected by default
*
* </pre>
*
@ -141,8 +142,7 @@ public class ImageExportDialog extends CaveSWTDialog {
datetimeButton = new Button(group, SWT.CHECK);
datetimeButton.setLayoutData(gridData);
datetimeButton.setText("Include date and time in file name");
datetimeButton
.setSelection(options.getDateTimeSelection() == DateTimeSelection.DATETIME);
datetimeButton.setSelection(true);
datetimeButton
.setToolTipText("Append the date and time to the file name when Animate is not selected.");
}

View file

@ -80,6 +80,7 @@ import com.raytheon.viz.ui.editor.AbstractEditor;
* Jul 26, 2006 chammack Initial Creation.
* Jan 20, 2014 2312 bsteffen Move to image export plugin, animation.
* Dec 4, 2014 DR16713 jgerth Support for date and time in file name
* Jan 18, 2016 ---- mjames@ucar Append yyyy.MM.dd.HH.mm.ss to image filename
*
* </pre>
*
@ -213,21 +214,22 @@ public class ExportImageHandler extends AbstractImageCaptureHandler {
for (Map.Entry<DataTime, BufferedImage> entry : dtbiHash.entrySet()) {
i++;
BufferedImage bi = entry.getValue();
String timeStamp = new SimpleDateFormat("yyyy.MM.dd.HH.mm.ss").format(new Date());
if (options.getDateTimeSelection() == DateTimeSelection.DATETIME) {
DataTime key = entry.getKey();
Date validTime = key.getValidTimeAsDate();
if (validTime != null && !isFakeTime(key)) {
path = basePath + "-" + sdf.format(validTime) + "." + suffix;
path = basePath + "-" + sdf.format(validTime) + "-" + timeStamp + "." + suffix;
if (path.equals(ppath)) {
path = basePath + "-" + sdf.format(validTime) + "-" + twoDigit.format(i).toString() + "." + suffix;
path = basePath + "-" + sdf.format(validTime) + "-" + twoDigit.format(i).toString() + "-" + timeStamp + "." + suffix;
}
} else {
path = basePath + "-" + twoDigit.format(i).toString() + "." + suffix;
path = basePath + "-" + twoDigit.format(i).toString() + "-" + timeStamp + "." + suffix;
}
} else if (dtbiHash.size() > 1) {
path = basePath + "-" + twoDigit.format(i).toString() + "." + suffix;
path = basePath + "-" + twoDigit.format(i).toString() + "-" + timeStamp + "." + suffix;
} else {
path = basePath + "." + suffix;
path = basePath + "-" + timeStamp + "." + suffix;
}
ppath = path;
stream = new FileImageOutputStream(new File(path));

View file

@ -39,6 +39,8 @@ import com.raytheon.uf.viz.core.datastructure.LoopProperties;
* Mar 10, 2014 2867 bsteffen Better frame range validation.
* Oct 28, 2014 3767 bsteffen Change default name to screenCapture.png
* Dec 4, 2014 DR16713 jgerth Support for date/time selection
* Jan 18, 2016 ---- mjames@ucar Save images to /awips2/export/<username> rather than
* /awips2/eclipse (and avoid guessing that /home/awips exists)
*
* </pre>
*
@ -85,7 +87,7 @@ public class ImageExportOptions {
}
private File fileLocation = new File("screenCapture.png");
private File fileLocation = new File("/awips2/export/" + System.getProperty("user.name") + "/screenCapture.png");
private ImageFormat imageFormat = ImageFormat.SEQUENCE;

View file

@ -19,10 +19,5 @@
further_licensing_information.
-->
<menuTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<contribute xsi:type="bundleItem" file="bundles/npp/soundingAvailability.xml"
menuText="NUCAPS Sounding Availability" id="NUCAPSAvailability">
<substitute key="name" value="NUCAPS"/>
<substitute key="pluginName" value="nucaps"/>
<substitute key="soundingResourceData" value="com.raytheon.uf.viz.npp.nucaps.NucapsNSharpResourceData"/>
</contribute>
</menuTemplate>

View file

@ -19,6 +19,12 @@
further_licensing_information.
-->
<menuTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<contribute xsi:type="bundleItem" file="bundles/npp/soundingAvailability.xml"
menuText="NUCAPS Soundings" id="NUCAPSAvailability">
<substitute key="name" value="NUCAPS"/>
<substitute key="pluginName" value="nucaps"/>
<substitute key="soundingResourceData" value="com.raytheon.uf.viz.npp.nucaps.NucapsNSharpResourceData"/>
</contribute>
<contribute xsi:type="subMenu" id="NPPProducts" menuText="NPP Products">
<contribute xsi:type="separator" id="Imagery" visible="false"/>
<contribute xsi:type="titleItem" id="SoundingsTitle" titleText="------ Soundings ------"/>

View file

@ -40,12 +40,12 @@ Developed on the Raytheon Visualization Environment (viz)
<solaris/>
<win useIco="false">
<bmp
winSmallHigh="/com.raytheon.viz.ui.personalities.awips/alertViz_icon16x16_32bit.bmp"
winSmallLow="/com.raytheon.viz.ui.personalities.awips/alertViz_icon16x16_8bit.bmp"
winMediumHigh="/com.raytheon.viz.ui.personalities.awips/alertViz_icon32x32_32bit.bmp"
winMediumLow="/com.raytheon.viz.ui.personalities.awips/alertViz_icon32x32_8bit.bmp"
winLargeHigh="/com.raytheon.viz.ui.personalities.awips/alertViz_icon48x48_32bit.bmp"
winLargeLow="/com.raytheon.viz.ui.personalities.awips/alertViz_icon48x48_8bit.bmp"/>
winSmallHigh="/com.raytheon.viz.ui.personalities.awips/awips2_tray16x16.bmp"
winSmallLow="/com.raytheon.viz.ui.personalities.awips/awips2_tray16x16.bmp"
winMediumHigh="/com.raytheon.viz.ui.personalities.awips/awips2_tray32x32.bmp"
winMediumLow="/com.raytheon.viz.ui.personalities.awips/awips2_tray32x32.bmp"
winLargeHigh="/com.raytheon.viz.ui.personalities.awips/awips2_tray48x48.bmp"
winLargeLow="/com.raytheon.viz.ui.personalities.awips/awips2_tray48x48.bmp"/>
</win>
</launcher>

View file

@ -149,7 +149,7 @@ public class ThinClientConnectivityDialog extends ConnectivityPreferenceDialog {
private String proxyAddress;
public ThinClientConnectivityDialog(boolean checkAlertViz) {
super(checkAlertViz, "Thin Client Connectivity Preferences");
super(checkAlertViz, "AWIPS II Connectivity Preferences");
IPreferenceStore store = Activator.getDefault().getPreferenceStore();
useProxy = store
.getBoolean(ThinClientPreferenceConstants.P_USE_PROXIES);
@ -162,95 +162,7 @@ public class ThinClientConnectivityDialog extends ConnectivityPreferenceDialog {
@Override
protected void createTextBoxes(Composite textBoxComp) {
super.createTextBoxes(textBoxComp);
Label label = new Label(textBoxComp, SWT.RIGHT);
label.setText("Use Proxy Server:");
GridData gd = new GridData(SWT.RIGHT, SWT.CENTER, false, true);
gd.horizontalIndent = 20;
label.setLayoutData(gd);
Composite proxyComp = new Composite(textBoxComp, SWT.NONE);
GridLayout gl = new GridLayout(2, false);
gl.marginHeight = 0;
gl.marginWidth = 0;
proxyComp.setLayout(gl);
gd = new GridData(SWT.FILL, SWT.CENTER, true, false);
proxyComp.setLayoutData(gd);
useProxyCheck = new Button(proxyComp, SWT.CHECK | SWT.LEFT);
useProxyCheck.setSelection(useProxy);
useProxyCheck.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
updateProxyEnabled();
}
});
IPreferenceStore thinPrefs = Activator.getDefault()
.getPreferenceStore();
String[] proxyOptions = ServerRemembrance.getServerOptions(thinPrefs,
ThinClientPreferenceConstants.P_PROXY_SERVER_OPTIONS);
proxySrv = new TextOrCombo(proxyComp, SWT.BORDER, proxyOptions);
gd = new GridData(SWT.FILL, SWT.CENTER, true, true);
proxySrv.widget.setLayoutData(gd);
proxySrv.setText(proxyAddress == null ? "" : proxyAddress);
proxySrv.widget.setBackground(getTextColor(servicesGood && pypiesGood));
proxySrv.addSelectionListener(new SelectionListener() {
@Override
public void widgetSelected(SelectionEvent e) {
// user clicked an option
validate();
}
@Override
public void widgetDefaultSelected(SelectionEvent e) {
// user hit Enter
performOk();
}
});
new Label(textBoxComp, SWT.NONE);
Composite jmsComp = new Composite(textBoxComp, SWT.NONE);
gl = new GridLayout(2, false);
gl.marginHeight = 0;
gl.marginWidth = 0;
jmsComp.setLayout(gl);
disableJmsCheck = new Button(jmsComp, SWT.CHECK | SWT.LEFT);
disableJmsCheck.setSelection(disableJms);
disableJmsCheck.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
disableJms = disableJmsCheck.getSelection();
validate();
}
});
disableJmsCheck.setText("Disable JMS");
jmsErrorLabel = new Label(jmsComp, SWT.LEFT);
jmsErrorLabel.setText("Error connecting to JMS");
jmsErrorLabel.setForeground(display.getSystemColor(SWT.COLOR_RED));
jmsErrorLabel.setVisible(true);
new Label(textBoxComp, SWT.NONE);
alwaysPrompt = LocalizationManager
.getInstance()
.getLocalizationStore()
.getBoolean(
LocalizationConstants.P_LOCALIZATION_PROMPT_ON_STARTUP);
alwaysPromptCheck = new Button(textBoxComp, SWT.CHECK | SWT.LEFT);
alwaysPromptCheck.setText("Prompt for settings on startup");
alwaysPromptCheck.setSelection(alwaysPrompt);
alwaysPromptCheck.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
alwaysPrompt = alwaysPromptCheck.getSelection();
}
});
updateProxyEnabled();
}
@Override
@ -378,22 +290,6 @@ public class ThinClientConnectivityDialog extends ConnectivityPreferenceDialog {
pypiesCallback);
}
private void updateProxyEnabled() {
useProxy = useProxyCheck.getSelection();
proxySrv.widget.setEnabled(useProxy);
super.setLocalizationEnabled(!useProxy);
if (useProxy) {
if (localizationSrv != null && !localizationSrv.widget.isDisposed()) {
localizationSrv.widget.setBackground(getTextColor(true));
}
} else {
if (proxySrv != null && !proxySrv.widget.isDisposed()) {
proxySrv.widget.setBackground(getTextColor(true));
}
}
validate();
}
/**
* Validates that a connection to JMS works.
*

View file

@ -8,46 +8,35 @@
</constraints>
</source>
-->
<source type="grid" displayString="NAM" validTimeInterval="540">
<source type="grid" displayString="NAM-12km" validTimeInterval="540">
<constraints>
<mapping key="pluginName">
<constraint constraintValue="grid"/>
</mapping>
<mapping key="info.datasetId">
<constraint constraintValue="ETA"/>
<constraint constraintValue="NAM12"/>
</mapping>
</constraints>
</source>
<source type="grid" displayString="GFS" validTimeInterval="540">
<source type="grid" displayString="GFS-40km" validTimeInterval="540">
<constraints>
<mapping key="pluginName">
<constraint constraintValue="grid"/>
</mapping>
<mapping key="info.datasetId">
<constraint constraintValue="GFS212"/>
<constraint constraintValue="GFS40"/>
</mapping>
</constraints>
</source>
<source type="grid" displayString="RAP" validTimeInterval="90">
<source type="grid" displayString="RAP-13km" validTimeInterval="90">
<constraints>
<mapping key="pluginName">
<constraint constraintValue="grid"/>
</mapping>
<mapping key="info.datasetId">
<constraint constraintValue="RUC130"/>
</mapping>
</constraints>
</source>
<source type="grid" displayString="Laps" validTimeInterval="90">
<constraints>
<mapping key="pluginName">
<constraint constraintValue="grid"/>
</mapping>
<mapping key="info.datasetId">
<constraint constraintValue="LAPS"/>
<constraint constraintValue="RAP13"/>
</mapping>
</constraints>
</source>
@ -59,6 +48,7 @@
</mapping>
</constraints>
</source>
<source type="nucaps" displayString="NUCAPS" validTimeInterval="90">
<constraints>
<mapping key="pluginName">
@ -66,4 +56,4 @@
</mapping>
</constraints>
</source>
</soundingSources>
</soundingSources>

View file

@ -1,18 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="menu:CAVE?after=group1">
<command
commandId="com.raytheon.uf.viz.useradmin.useradminui"
label="AWIPS User Administration..."
style="push">
</command>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.commands">
<command

View file

@ -80,6 +80,7 @@ RKJK,KUNSAN AB,53.8
KARX,LA CROSSE,408.9
LPLA,LAJES AB,1036.2
KLCH,LAKE CHARLES,24.0
KLGX,GRAYS HARBOR,48.0
KESX,LAS VEGAS,1503.5
KDFX,LAUGHLIN AFB,359.7
KILX,LINCOLN,207.4

View file

@ -1,18 +1,18 @@
##
# This software was developed and / or modified by Raytheon Company,
# pursuant to Contract DG133W-05-CQ-1067 with the US Government.
#
# U.S. EXPORT CONTROLLED TECHNICAL DATA
# pursuant to Contract DG133W-05-CQ-1067 with the US Government.
#
# U.S. EXPORT CONTROLLED TECHNICAL DATA
# This software product contains export-restricted data whose
# export/transfer/disclosure is restricted by U.S. law. Dissemination
# to non-U.S. persons whether in the United States or abroad requires
# an export license or other authorization.
#
# Contractor Name: Raytheon Company
# Contractor Address: 6825 Pine Street, Suite 340
# Mail Stop B8
# Omaha, NE 68106
# 402.291.0100
# Contractor Name: Raytheon Company
# Contractor Address: 6825 Pine Street, Suite 340
# Mail Stop B8
# Omaha, NE 68106
# 402.291.0100
#
# See the AWIPS II Master Rights File ("Master Rights File.pdf") for
# further licensing information.

View file

@ -33,7 +33,7 @@
#
import logging
from ufpy import AlertVizHandler
from awips import AlertVizHandler
PLUGIN_NAME = 'com.raytheon.viz.aviation'
CLIMATE_CATEGORY = "CLIMATE"

View file

@ -44,22 +44,15 @@
<contribute xsi:type="bundleItem" file="bundles/tools/DistanceScale.xml"
menuText="Distance Scale" id="distanceScaleTool" timeQuery="false" />
<contribute xsi:type="bundleItem" file="bundles/tools/EstimatedActualVelocity.xml"
menuText="Estimated Actual Velocity" id="estimatedActualVelocityTool" timeQuery="false" />
<contribute xsi:type="bundleItem" file="bundles/tools/FeatureFollowingZoom.xml"
menuText="Feature Following Zoom" id="featureFollowingZoomTool" timeQuery="false" />
<contribute xsi:type="command"
commandId="com.raytheon.viz.ui.viz.radarapps.fsi.startFSI"
menuText="4-D Storm Investigator (FSI)" />
commandId="com.raytheon.viz.awipstools.timeofarrival"
menuText="Time of Arrival / Lead Time" />
<contribute xsi:type="bundleItem" file="bundles/tools/Home.xml"
menuText="Home" id="homeTool" timeQuery="false" />
<contribute xsi:type="command"
commandId="com.raytheon.viz.awipstools.lapstools"
menuText="LAPS tools..." id="lapsTools" />
menuText="Home" id="homeTool" timeQuery="false" />
<!-- TODO move into points plugin somehow -->
<contribute xsi:type="bundleItem" file="bundles/tools/Points.xml"
@ -69,9 +62,6 @@
commandId="com.raytheon.viz.awipstools.puthomecursor"
menuText="Put home cursor..." />
<contribute xsi:type="command"
commandId="com.raytheon.viz.radar.ui.RadarDisplayControls"
menuText="Radar Display Controls..." />
<contribute xsi:type="bundleItem" file="bundles/tools/RangeRings.xml"
menuText="Range Rings" id="rangeRingsTool" timeQuery="false" />
@ -84,17 +74,29 @@
commandId="com.raytheon.viz.texteditor.opentexteditor"
menuText="Text Window..." />
<contribute xsi:type="command"
commandId="com.raytheon.viz.awipstools.timeofarrival"
menuText="Time Of Arrival / Lead Time" />
<contribute xsi:type="command"
commandId="com.raytheon.viz.awipstools.unitscalculator"
menuText="Units Calculator..." />
<contribute xsi:type="separator" id="RadarTools" />
<contribute xsi:type="titleItem" titleText="------ Radar Tools ------"
id="RadarTools" />
<contribute xsi:type="bundleItem" file="bundles/tools/EstimatedActualVelocity.xml"
menuText="Estimated Actual Velocity" id="estimatedActualVelocityTool" timeQuery="false" />
<contribute xsi:type="command"
commandId="com.raytheon.viz.ui.viz.radarapps.fsi.startFSI"
menuText="4-D Storm Investigator (FSI)" />
<contribute xsi:type="bundleItem" file="bundles/tools/VRShear.xml"
menuText="VR - Shear" id="vrShearTool" timeQuery="false" />
<contribute xsi:type="command"
commandId="com.raytheon.viz.radar.ui.RadarDisplayControls"
menuText="Radar Display Controls..." />
<!-- example arbitrary command below, commandAction parameter is required,
the others default to false if undefined. If captureOutput is true then after
the launched command closes a dialog box will show the contents printed to

View file

@ -70,10 +70,6 @@
<command
id="com.raytheon.viz.awipstools.home"
name="Home">
</command>
<command
id="com.raytheon.viz.awipstools.lapstools"
name="LAPS tools">
</command>
<command
id="com.raytheon.viz.awipstools.unitscalculator"
@ -207,37 +203,4 @@
commandId="com.raytheon.viz.awipstools.arbitrary">
</handler>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="toolbar:d2d-2?after=tools.toolbar">
<command
commandId="com.raytheon.uf.viz.ui.loadbundle"
icon="icons/points.gif"
label="Points">
<visibleWhen>
<reference
definitionId="com.raytheon.uf.viz.d2d.ui.inD2DActionSet">
</reference>
</visibleWhen>
<parameter
name="bundleFile"
value="bundles/tools/Points.xml">
</parameter>
</command>
<command
commandId="com.raytheon.uf.viz.ui.loadbundle"
icon="icons/Baseline.gif"
label="Baselines">
<visibleWhen>
<reference
definitionId="com.raytheon.uf.viz.d2d.ui.inD2DActionSet">
</reference>
</visibleWhen>
<parameter
name="bundleFile"
value="bundles/tools/Baselines.xml" />
</command>
</menuContribution>
</extension>
</plugin>

View file

@ -184,15 +184,19 @@
<includes
id="com.raytheon.uf.viz.aviation.advisory.feature"
version="0.0.0"/>
<!--
<includes
id="com.raytheon.uf.viz.datadelivery.feature"
version="0.0.0"/>
-->
<includes
id="edu.wisc.ssec.cimss.viz.convectprob.feature"
version="0.0.0"/>
<includes
id="gov.noaa.gsd.viz.ensemble.feature"
version="0.0.0"/>
<includes
id="com.raytheon.uf.viz.d2d.damagepath.feature"
version="0.0.0"/>
@ -207,8 +211,8 @@
<includes
id="com.raytheon.uf.viz.alertview.feature"
version="0.0.0"/>
version="0.0.0"/>
<requires>
<import feature="com.raytheon.uf.viz.application.feature" version="1.0.0.qualifier"/>
</requires>

View file

@ -30,7 +30,7 @@
import time, string
import logging
from ufpy import TimeUtil
from awips import TimeUtil
offset = 0
timeStr = ""

View file

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<bundle>
<displayList>
<displays xsi:type="d2DMapRenderableDisplay" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<descriptor xsi:type="mapDescriptor">
<resource>
<loadProperties loadWithoutData="true">
</loadProperties>
<properties isSystemResource="false"
isBlinking="false" isMapLayer="false" isHoverOn="false"
isVisible="true" />
<resourceData xsi:type="lightningResourceData"
isUpdatingOnMetadataOnly="false" isRequeryNecessaryOnTimeMatch="true"
handlingPositiveStrikes="true" handlingNegativeStrikes="true">
<binOffset posOffset="0" negOffset="900" virtualOffset="0"/>
<metadataMap>
<mapping key="pluginName">
<constraint constraintValue="binlightning" constraintType="EQUALS" />
</mapping>
<mapping key="source">
<constraint constraintValue="${source}" constraintType="EQUALS" />
</mapping>
</metadataMap>
</resourceData>
</resource>
</descriptor>
</displays>
</displayList>
</bundle>

View file

@ -0,0 +1,71 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<bundle>
<displayList>
<displays xsi:type="d2DMapRenderableDisplay"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<descriptor xsi:type="mapDescriptor">
<resource>
<loadProperties loadWithoutData="true"/>
<properties isSystemResource="false" isBlinking="false"
isMapLayer="false" isHoverOn="false"
isVisible="true" />
<resourceData xsi:type="lightningResourceData"
isUpdatingOnMetadataOnly="false" isRequeryNecessaryOnTimeMatch="true"
handlingPositiveStrikes="false" handlingNegativeStrikes="true">
<binOffset posOffset="0" negOffset="900" virtualOffset="0" />
<metadataMap>
<mapping key="pluginName">
<constraint constraintValue="binlightning"
constraintType="EQUALS" />
</mapping>
<mapping key="source">
<constraint constraintValue="${source}" constraintType="EQUALS" />
</mapping>
</metadataMap>
</resourceData>
</resource>
<resource>
<loadProperties loadWithoutData="true">
</loadProperties>
<properties isSystemResource="false" isBlinking="false"
isMapLayer="false" isHoverOn="false"
isVisible="true" />
<resourceData xsi:type="lightningResourceData"
isUpdatingOnMetadataOnly="false" isRequeryNecessaryOnTimeMatch="true"
handlingPositiveStrikes="true" handlingNegativeStrikes="false">
<binOffset posOffset="0" negOffset="900" virtualOffset="0" />
<metadataMap>
<mapping key="pluginName">
<constraint constraintValue="binlightning"
constraintType="EQUALS" />
</mapping>
<mapping key="source">
<constraint constraintValue="${source}" constraintType="EQUALS" />
</mapping>
</metadataMap>
</resourceData>
</resource>
</descriptor>
</displays>
</displayList>
</bundle>

View file

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<bundle>
<displayList>
<displays xsi:type="d2DMapRenderableDisplay" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<descriptor xsi:type="mapDescriptor">
<resource>
<loadProperties loadWithoutData="true">
</loadProperties>
<properties isSystemResource="false"
isBlinking="false" isMapLayer="false" isHoverOn="false"
isVisible="true" />
<resourceData xsi:type="lightningResourceData"
isUpdatingOnMetadataOnly="false" isRequeryNecessaryOnTimeMatch="true"
handlingPositiveStrikes="true" handlingNegativeStrikes="true">
<binOffset posOffset="0" negOffset="300" virtualOffset="0"/>
<metadataMap>
<mapping key="pluginName">
<constraint constraintValue="binlightning" constraintType="EQUALS" />
</mapping>
<mapping key="source">
<constraint constraintValue="${source}" constraintType="EQUALS" />
</mapping>
</metadataMap>
</resourceData>
</resource>
</descriptor>
</displays>
</displayList>
</bundle>

View file

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<bundle>
<displayList>
<displays xsi:type="d2DMapRenderableDisplay" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<descriptor xsi:type="mapDescriptor">
<resource>
<loadProperties loadWithoutData="true">
</loadProperties>
<properties isSystemResource="false"
isBlinking="false" isMapLayer="false" isHoverOn="false"
isVisible="true" />
<resourceData xsi:type="lightningResourceData"
isUpdatingOnMetadataOnly="false" isRequeryNecessaryOnTimeMatch="true"
handlingPositiveStrikes="true" handlingNegativeStrikes="true">
<binOffset posOffset="0" negOffset="3600" virtualOffset="0"/>
<metadataMap>
<mapping key="pluginName">
<constraint constraintValue="binlightning" constraintType="EQUALS" />
</mapping>
<mapping key="source">
<constraint constraintValue="${source}" constraintType="EQUALS" />
</mapping>
</metadataMap>
</resourceData>
</resource>
</descriptor>
</displays>
</displayList>
</bundle>

View file

@ -0,0 +1,185 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<bundle>
<displayList>
<displays xsi:type="d2DMapRenderableDisplay"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<descriptor xsi:type="mapDescriptor">
<resource>
<loadProperties loadWithoutData="true">
<capabilities>
<capability xsi:type="colorableCapability"
colorAsString="#b0e2f9" />
</capabilities>
<resourceType>PLAN_VIEW</resourceType>
</loadProperties>
<properties isSystemResource="false" isBlinking="false"
isMapLayer="false" isHoverOn="false"
isVisible="true" />
<resourceData xsi:type="lightningResourceData"
isUpdatingOnMetadataOnly="false" isRequeryNecessaryOnTimeMatch="true"
handlingPositiveStrikes="true" handlingNegativeStrikes="true">
<binOffset posOffset="0" negOffset="60" virtualOffset="-300" />
<metadataMap>
<mapping key="pluginName">
<constraint constraintValue="binlightning"
constraintType="EQUALS" />
</mapping>
<mapping key="source">
<constraint constraintValue="${source}" constraintType="EQUALS" />
</mapping>
</metadataMap>
</resourceData>
</resource>
<resource>
<loadProperties loadWithoutData="true">
<capabilities>
<capability xsi:type="colorableCapability"
colorAsString="#7da1df" />
</capabilities>
<resourceType>PLAN_VIEW</resourceType>
</loadProperties>
<properties isSystemResource="false" isBlinking="false"
isMapLayer="false" isHoverOn="false"
isVisible="true" />
<resourceData xsi:type="lightningResourceData"
isUpdatingOnMetadataOnly="false" isRequeryNecessaryOnTimeMatch="true"
handlingPositiveStrikes="true" handlingNegativeStrikes="true">
<binOffset posOffset="0" negOffset="60" virtualOffset="-600" />
<metadataMap>
<mapping key="pluginName">
<constraint constraintValue="binlightning"
constraintType="EQUALS" />
</mapping>
<mapping key="source">
<constraint constraintValue="${source}" constraintType="EQUALS" />
</mapping>
</metadataMap>
</resourceData>
</resource>
<resource>
<loadProperties loadWithoutData="true">
<capabilities>
<capability xsi:type="colorableCapability"
colorAsString="#0365c8" />
</capabilities>
<resourceType>PLAN_VIEW</resourceType>
</loadProperties>
<properties isSystemResource="false" isBlinking="false"
isMapLayer="false" isHoverOn="false"
isVisible="true" />
<resourceData xsi:type="lightningResourceData"
isUpdatingOnMetadataOnly="false" isRequeryNecessaryOnTimeMatch="true"
handlingPositiveStrikes="true" handlingNegativeStrikes="true">
<binOffset posOffset="0" negOffset="60" virtualOffset="-1200" />
<metadataMap>
<mapping key="pluginName">
<constraint constraintValue="binlightning"
constraintType="EQUALS" />
</mapping>
<mapping key="source">
<constraint constraintValue="${source}" constraintType="EQUALS" />
</mapping>
</metadataMap>
</resourceData>
</resource>
<resource>
<loadProperties loadWithoutData="true">
<capabilities>
<capability xsi:type="colorableCapability"
colorAsString="#0635a7" />
</capabilities>
<resourceType>PLAN_VIEW</resourceType>
</loadProperties>
<properties isSystemResource="false" isBlinking="false"
isMapLayer="false" isHoverOn="false"
isVisible="true" />
<resourceData xsi:type="lightningResourceData"
isUpdatingOnMetadataOnly="false" isRequeryNecessaryOnTimeMatch="true"
handlingPositiveStrikes="true" handlingNegativeStrikes="true">
<binOffset posOffset="0" negOffset="60" virtualOffset="-2400" />
<metadataMap>
<mapping key="pluginName">
<constraint constraintValue="binlightning"
constraintType="EQUALS" />
</mapping>
<mapping key="source">
<constraint constraintValue="${source}" constraintType="EQUALS" />
</mapping>
</metadataMap>
</resourceData>
</resource>
<resource>
<loadProperties loadWithoutData="true">
<capabilities>
<capability xsi:type="colorableCapability"
colorAsString="#0c2780" />
</capabilities>
<resourceType>PLAN_VIEW</resourceType>
</loadProperties>
<properties isSystemResource="false" isBlinking="false"
isMapLayer="false" isHoverOn="false"
isVisible="true" />
<resourceData xsi:type="lightningResourceData"
isUpdatingOnMetadataOnly="false" isRequeryNecessaryOnTimeMatch="true"
handlingPositiveStrikes="true" handlingNegativeStrikes="true">
<binOffset posOffset="0" negOffset="60" virtualOffset="-4800" />
<metadataMap>
<mapping key="pluginName">
<constraint constraintValue="binlightning"
constraintType="EQUALS" />
</mapping>
<mapping key="source">
<constraint constraintValue="${source}" constraintType="EQUALS" />
</mapping>
</metadataMap>
</resourceData>
</resource>
<resource>
<loadProperties loadWithoutData="true">
<capabilities>
<capability xsi:type="colorableCapability"
colorAsString="#191180" />
</capabilities>
<resourceType>PLAN_VIEW</resourceType>
</loadProperties>
<properties isSystemResource="false" isBlinking="false"
isMapLayer="false" isHoverOn="false"
isVisible="true" />
<resourceData xsi:type="lightningResourceData"
isUpdatingOnMetadataOnly="false" isRequeryNecessaryOnTimeMatch="true"
handlingPositiveStrikes="true" handlingNegativeStrikes="true">
<binOffset posOffset="0" negOffset="60" virtualOffset="-9600" />
<metadataMap>
<mapping key="pluginName">
<constraint constraintValue="binlightning"
constraintType="EQUALS" />
</mapping>
<mapping key="source">
<constraint constraintValue="${source}" constraintType="EQUALS" />
</mapping>
</metadataMap>
</resourceData>
</resource>
</descriptor>
</displays>
</displayList>
</bundle>

View file

@ -19,6 +19,8 @@
further_licensing_information.
-->
<menuContributionFile>
<include installTo="menu:obs?after=USPLNPLACEHOLDER"
fileName="menus/lightning/usplnMenuItems.xml"/>
<include installTo="menu:obs?after=LIGHTNINGPLACEHOLDER"
fileName="menus/lightning/lightningMenuItems.xml"
subMenu="Lightning"

View file

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<menuTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<contribute xsi:type="bundleItem" file="bundles/USPLNPlot60Min.xml"
menuText="USPLN 1hr plot" id="1HrUSPLNFlashPlot">
<substitute key="source" value="USPLN"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/USPLNPlot15Min.xml"
menuText="USPLN 15min plot" id="15MinUSPLNFlashPlot">
<substitute key="source" value="USPLN"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/USPLNPlot15MinPN.xml"
menuText="USPLN 15min Pos/Neg plot" id="15MinPNLightningFlashPlot">
<substitute key="source" value="USPLN"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/USPLNPlot5Min.xml"
menuText="USPLN 5min plot" id="5MinUSPLNFlashPlot">
<substitute key="source" value="USPLN"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/USPLNSeq60min.xml"
menuText="USPLN 1hr Lgtng Seq Plot" id="60HrUSPLNFlashSeq">
<substitute key="source" value="USPLN"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/LightningSeq.xml"
menuText="USPLN 1min Lgtng Seq Plot" id="1MinUSPLNFlashSeq">
<substitute key="source" value="USPLN"/>
</contribute>
</menuTemplate>

View file

@ -74,6 +74,7 @@
40.0060 -82.7150 273.469 TCMH
30.7217 -97.3828 268.638 KGRK
30.1253 -93.2159 265.279 KLCH
47.1158 -124.1069 265.279 KLGX
41.7311 -93.7229 261.262 KDMX
21.1328 -157.1803 259.538 PHMO
40.3208 -98.4419 255.055 KUEX

View file

@ -0,0 +1,286 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<menuTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<contribute xsi:type="subMenu" menuText="MOS" id="MOSMenu">
<contribute xsi:type="titleItem" titleText="------ GFSLAMP ------"
id="GFSLAMPLine" />
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Station Plot" id="GFSLampStationPlot">
<substitute key="model" value="LAMP"/>
<substitute key="plotModel" value="bufrmos/gfslamp_stdDesign.svg"/>
<substitute key="title" value="GFSLAMP Station Plot"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Ceil/Vis Station Plot" id="GFSLampCeilVisPlot" >
<substitute key="model" value="LAMP"/>
<substitute key="plotModel" value="bufrmos/gfslamp_CIGV.svg"/>
<substitute key="title" value="GFSLAMP Ceil/Vis"/>
</contribute>
<contribute xsi:type="titleItem" titleText="------ MOS ------"
id="MOSLine" />
<contribute xsi:type="subMenu" menuText="Eta" id="EtaMOSMenu">
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Station Plot" id="EtaMOSStationPlot" >
<substitute key="model" value="ETA"/>
<substitute key="plotModel" value="bufrmos/stdDesign.svg"/>
<substitute key="title" value="ETA Station Plot"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="MaxT/MinT" id="EtaMOSMaxTMinTPlot" >
<substitute key="model" value="ETA"/>
<substitute key="plotModel" value="bufrmos/maxmin.svg"/>
<substitute key="title" value="ETA MaxT/MinT"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Ceil/Vis" id="EtaMOSCeilVisPlot">
<substitute key="model" value="ETA"/>
<substitute key="plotModel" value="bufrmos/CIGV.svg"/>
<substitute key="title" value="ETA Ceil/Vis"/>
</contribute>
<contribute xsi:type="subMenu" menuText="Probabilities" id="EtaMOSProbMenu">
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="POP 12Hr" id="EtaMOSPop12HrPlot">
<substitute key="model" value="ETA"/>
<substitute key="plotModel" value="bufrmos/pqpf12hr.svg"/>
<substitute key="title" value="ETA POP 12Hr"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="POP 6Hr" id="EtaMOSPop6HrPlot">
<substitute key="model" value="ETA"/>
<substitute key="plotModel" value="bufrmos/pqpf6hr.svg"/>
<substitute key="title" value="ETA POP 6Hr"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Tstorm 12Hr" id="EtaMOSTs12HrPlot">
<substitute key="model" value="ETA"/>
<substitute key="plotModel" value="bufrmos/tstorm12hr.svg"/>
<substitute key="title" value="ETA Tstorm 12hr"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Tstorm 6Hr" id="EtaMOSTs6HrPlot">
<substitute key="model" value="ETA"/>
<substitute key="plotModel" value="bufrmos/tstorm6hr.svg"/>
<substitute key="title" value="ETA Tstorm 6hr"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Svr Tstorm 12Hr" id="EtaMOSSts12HrPlot">
<substitute key="model" value="ETA"/>
<substitute key="plotModel" value="bufrmos/severe12hr.svg"/>
<substitute key="title" value="ETA Svr Tstorm 12hr"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Svr Tstorm 6Hr" id="EtaMOSSts6HrPlot">
<substitute key="model" value="ETA"/>
<substitute key="plotModel" value="bufrmos/severe6hr.svg"/>
<substitute key="title" value="ETA Svr Tstorm 6hr"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Cond Rain" id="EtaMOSCondRainPlot">
<substitute key="model" value="ETA"/>
<substitute key="plotModel" value="bufrmos/precipRain.svg"/>
<substitute key="title" value="ETA Cond Rain"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Cond Freezing Precip" id="EtaMOSCondFPPlot">
<substitute key="model" value="ETA"/>
<substitute key="plotModel" value="bufrmos/freezing.svg"/>
<substitute key="title" value="ETA Cond Freezing"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Cond Snow" id="EtaMOSCondSnowPlot">
<substitute key="model" value="ETA"/>
<substitute key="plotModel" value="bufrmos/precipSnow.svg"/>
<substitute key="title" value="ETA Cond Snow"/>
</contribute>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="QPF 12Hr" id="EtaMOSQPF12HrPlot">
<substitute key="model" value="ETA"/>
<substitute key="plotModel" value="bufrmos/qpf12hr.svg"/>
<substitute key="title" value="ETA QPF 12Hr"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="QPF 6Hr" id="EtaMOSQPF6HrPlot">
<substitute key="model" value="ETA"/>
<substitute key="plotModel" value="bufrmos/qpf6hr.svg"/>
<substitute key="title" value="ETA QPF 6Hr"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="SnowFall 24hr" id="EtaMOSSnowFall24HrPlot">
<substitute key="model" value="ETA"/>
<substitute key="plotModel" value="bufrmos/snowfall24.svg"/>
<substitute key="title" value="ETA SnowFall 24hr"/>
</contribute>
</contribute>
<contribute xsi:type="subMenu" menuText="GFS" id="GFSMOSMenu">
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Station Plot" id="GFSMOSStationPlot">
<substitute key="model" value="GFS"/>
<substitute key="plotModel" value="bufrmos/stdDesign.svg"/>
<substitute key="title" value="GFS Station Plot"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="MaxT/MinT" id="GFSMOSMaxTMinTPlot" >
<substitute key="model" value="GFS"/>
<substitute key="plotModel" value="bufrmos/maxmin.svg"/>
<substitute key="title" value="GFS MaxT/MinT"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Ceil/Vis" id="GFSMOSCeilVisPlot">
<substitute key="model" value="GFS"/>
<substitute key="plotModel" value="bufrmos/CIGV.svg"/>
<substitute key="title" value="GFS Ceil/Vis"/>
</contribute>
<contribute xsi:type="subMenu" menuText="Probabilities" id="GFSMOSProbMenu">
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="POP 12Hr" id="GFSMOSPop12HrPlot">
<substitute key="model" value="GFS"/>
<substitute key="plotModel" value="bufrmos/pqpf12hr.svg"/>
<substitute key="title" value="GFS POP12Hr"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="POP 6Hr" id="GFSMOSPop6HrPlot">
<substitute key="model" value="GFS"/>
<substitute key="plotModel" value="bufrmos/pqpf6hr.svg"/>
<substitute key="title" value="GFS POP6Hr"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Tstorm 12Hr" id="GFSMOSTs12HrPlot">
<substitute key="model" value="GFS"/>
<substitute key="plotModel" value="bufrmos/tstorm12hr.svg"/>
<substitute key="title" value="GFS Tstorm 12hr"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Tstorm 6Hr" id="GFSMOSTs6HrPlot">
<substitute key="model" value="GFS"/>
<substitute key="plotModel" value="bufrmos/tstorm6hr.svg"/>
<substitute key="title" value="GFS Tstorm 6hr"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Svr Tstorm 12Hr" id="GFSMOSSts12HrPlot">
<substitute key="model" value="GFS"/>
<substitute key="plotModel" value="bufrmos/severe12hr.svg"/>
<substitute key="title" value="GFS Svr Tstorm 12hr"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Svr Tstorm 6Hr" id="GFSMOSSts6HrPlot">
<substitute key="model" value="GFS"/>
<substitute key="plotModel" value="bufrmos/severe6hr.svg"/>
<substitute key="title" value="GFS Svr Tstorm 6hr"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Cond Rain" id="GFSMOSCondRainPlot">
<substitute key="model" value="GFS"/>
<substitute key="plotModel" value="bufrmos/precipRain.svg"/>
<substitute key="title" value="GFS Cond Rain"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Cond Freezing Precip" id="GFSMOSCondFPPlot">
<substitute key="model" value="GFS"/>
<substitute key="plotModel" value="bufrmos/freezing.svg"/>
<substitute key="title" value="GFS Cond Freezing"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Cond Snow" id="GFSMOSCondSnowPlot">
<substitute key="model" value="GFS"/>
<substitute key="plotModel" value="bufrmos/precipSnow.svg"/>
<substitute key="title" value="GFS Cond Snow"/>
</contribute>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="QPF 12Hr" id="GFSMOSQPF12HrPlot" >
<substitute key="model" value="GFS"/>
<substitute key="plotModel" value="bufrmos/qpf12hr.svg"/>
<substitute key="title" value="GFS QPF 12Hr"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="QPF 6Hr" id="GFSMOSQPF6HrPlot" >
<substitute key="model" value="GFS"/>
<substitute key="plotModel" value="bufrmos/qpf6hr.svg"/>
<substitute key="title" value="GFS QPF 6Hr"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="SnowFall 24hr" id="GFSMOSSnowFall24HrPlot" >
<substitute key="model" value="GFS"/>
<substitute key="plotModel" value="bufrmos/snowfall24.svg"/>
<substitute key="title" value="GFS SnowFall 24hr"/>
</contribute>
</contribute>
<contribute xsi:type="subMenu" menuText="GFS Extended" id="GFSEMOSMenu">
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Station Plot" id="GFSEMOSStationPlot">
<substitute key="model" value="MRF"/>
<substitute key="plotModel" value="bufrmos/gfsex_stdDesign.svg"/>
<substitute key="title" value="GFS Extended Station Plot" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="MaxT/MinT" id="GFSEMOSMaxTMinTPlot">
<substitute key="model" value="MRF"/>
<substitute key="plotModel" value="bufrmos/gfsex_maxmin.svg"/>
<substitute key="title" value="GFS Extended MaxT/MinT" />
</contribute>
<contribute xsi:type="subMenu" menuText="Probabilities" id="GFSEMOSProbMenu">
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="POP 12Hr" id="GFSEMOSPop12HrPlot">
<substitute key="model" value="MRF"/>
<substitute key="plotModel" value="bufrmos/pop12hr.svg"/>
<substitute key="title" value="GFS Extended POP12Hr" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Tstorm 12Hr" id="GFSEEMOSTs12HrPlot">
<substitute key="model" value="MRF"/>
<substitute key="plotModel" value="bufrmos/tstorm12hr.svg"/>
<substitute key="title" value="GFS Extended Tstorm 12Hr" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Cond Rain" id="GFSEMOSCondRainPlot">
<substitute key="model" value="MRF"/>
<substitute key="plotModel" value="bufrmos/precipRain.svg"/>
<substitute key="title" value="GFS Extended Cond Rain" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Cond Freezing Precip" id="GFSEMOSCondFPPlot">
<substitute key="model" value="MRF"/>
<substitute key="plotModel" value="bufrmos/freezing.svg"/>
<substitute key="title" value="GFS Extended Cond Freezing"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Cond Snow" id="GFSEMOSCondSnowPlot">
<substitute key="model" value="MRF"/>
<substitute key="plotModel" value="bufrmos/precipSnow.svg"/>
<substitute key="title" value="GFS Extended Cond Snow" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="Cond Mix" id="GFSEMOSCondMixPlot">
<substitute key="model" value="MRF"/>
<substitute key="plotModel" value="bufrmos/precipMix.svg"/>
<substitute key="title" value="GFS Extended Cond Mix" />
</contribute>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/BufrMosPlot.xml"
menuText="QPF 12Hr" id="GFSEMOSQPF12HrPlot">
<substitute key="model" value="MRF"/>
<substitute key="plotModel" value="bufrmos/qpf12hr.svg"/>
<substitute key="title" value="GFS Extended QPF 12Hr" />
</contribute>
</contribute>
</contribute>
</menuTemplate>

View file

@ -51,13 +51,12 @@
<solaris/>
<win useIco="false">
<bmp
winSmallHigh="/com.raytheon.viz.ui.personalities.awips/cave_16x16_32bit.bmp"
winSmallLow="/com.raytheon.viz.ui.personalities.awips/cave_16x16_8bit.bmp"
winMediumHigh="/com.raytheon.viz.ui.personalities.awips/cave_32x32_32bit.bmp"
winMediumLow="/com.raytheon.viz.ui.personalities.awips/cave_32x32_8bit.bmp"
winLargeHigh="/com.raytheon.viz.ui.personalities.awips/cave_48x48_32bit.bmp"
winLargeLow="/com.raytheon.viz.ui.personalities.awips/cave_48x48_8bit.bmp"
winExtraLargeHigh="/com.raytheon.viz.ui.personalities.awips/cave_256x256_32bit.bmp"/>
winSmallHigh="/com.raytheon.viz.ui.personalities.awips/awips2_tray16x16.bmp"
winSmallLow="/com.raytheon.viz.ui.personalities.awips/awips2_tray16x16.bmp"
winMediumHigh="/com.raytheon.viz.ui.personalities.awips/awips2_tray32x32.bmp"
winMediumLow="/com.raytheon.viz.ui.personalities.awips/awips2_tray32x32.bmp"
winLargeHigh="/com.raytheon.viz.ui.personalities.awips/awips2_tray48x48.bmp"
winLargeLow="/com.raytheon.viz.ui.personalities.awips/awips2_tray48x48.bmp"/>
</win>
</launcher>

View file

@ -14,8 +14,8 @@
</configIni>
<launcherArgs>
<programArgs>-data @user.home/caveData -user @user.home/caveData -clean -consoleLog -alertviz</programArgs>
<vmArgs>-Xmx1536M
<programArgs>-data @user.home/caveData -user @user.home/caveData -clean -consoleLog -component thinclient -alertviz</programArgs>
<vmArgs>-Xmx3536M
-XX:+UseG1GC
-Dosgi.instance.area.readOnly=true
-Dorg.eclipse.update.reconcile=false -XX:MaxPermSize=256m

View file

@ -0,0 +1,40 @@
<bundle>
<displayList>
<displays xsi:type="d2DMapRenderableDisplay" density="1.0" magnification="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<descriptor xsi:type="mapDescriptor">
<resource>
<loadProperties loadWithoutData="true">
<capabilities>
<capability xsi:type="colorMapCapability">
<colorMapParameters colorMapName="${colormap}"/>
</capability>
<capability xsi:type="imagingCapability" interpolationState="false" brightness="1.0" contrast="1.0" alpha="1.0"/>
</capabilities>
<resourceType>PLAN_VIEW</resourceType>
<perspectiveProperty xsi:type="d2dLoadProperties" overlayMatchTolerance="1"/>
</loadProperties>
<properties isSystemResource="false" isBlinking="false" isMapLayer="false" isHoverOn="false" isVisible="true">
</properties>
<resourceData xsi:type="satResourceData" isUpdatingOnMetadataOnly="false" isRequeryNecessaryOnTimeMatch="true">
<metadataMap>
<mapping key="pluginName">
<constraint constraintValue="satellite" constraintType="EQUALS"/>
</mapping>
<mapping key="physicalElement">
<constraint constraintValue="${element}" constraintType="EQUALS"/>
</mapping>
<mapping key="sectorID">
<constraint constraintValue="NEXRCOMP" constraintType="EQUALS"/>
</mapping>
<mapping key="creatingEntity">
<constraint constraintValue="NEXRCOMP" constraintType="EQUALS"/>
</mapping>
</metadataMap>
</resourceData>
</resource>
<timeMatcher xsi:type="d2DTimeMatcher" deltaFilter="0" forecastFilter="0"/>
</descriptor>
</displays>
</displayList>
</bundle>

View file

@ -22,6 +22,7 @@
<contribute xsi:type="separator" id="${icao}applicationsSeparator"/>
<contribute xsi:type="titleItem" titleText="------ Applications ------"
id="${icao}Applications" />
<!--
<contribute xsi:type="command"
commandId="com.raytheon.uf.viz.radarapps.alertreq.alertRequest"
menuText="Alert Request..." id="${icao}AlertRequest" />
@ -37,16 +38,18 @@
<contribute xsi:type="command"
commandId="com.raytheon.uf.viz.radarapps.rps.rpsListEditor" menuText="RPS List Editor..."
id="${icao}RPSListEditor" />
<contribute xsi:type="subMenu" menuText="Radar Tools">
-->
<contribute xsi:type="command" commandId="com.raytheon.viz.awipstools.estimatedactualvelocity" menuText="Estimated Actual Velocity"
id="${icao}EstimatedActualVelocity" />
<contribute xsi:type="command"
commandId="com.raytheon.viz.ui.viz.radarapps.fsi.startFSI" menuText="4-D Storm Investigator (FSI)"
id="${icao}4DStormInvestigatorFSI" />
<!--
<contribute xsi:type="command"
commandId="com.raytheon.viz.radar.ui.RadarDisplayControls" menuText="Radar Display Controls..."
id="${icao}ApplicationsRadarDisplayControls" />
-->
<contribute xsi:type="command" commandId="com.raytheon.viz.awipstools.vrshear" menuText="VR - Shear"
id="${icao}VRShear" />
</contribute>
</menuTemplate>

View file

@ -7,128 +7,130 @@
________________________Omaha,_NE_68106 ________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for further_licensing_information. -->
<menuTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarCodedMessage.xml"
menuText="10km Radar Coded Msg" id="10kmRadarCodedMsg">
<contribute xsi:type="subMenu" menuText="NEXRAD Stations"
id="RadarMenuDialRadarsSubMenu">
<contribute xsi:type="subinclude" fileName="menus/radar/dialRadars.xml" />
</contribute>
<contribute xsi:type="subinclude" fileName="menus/radar/airportRadars.xml" />
<contribute xsi:type="subMenu" menuText="TDWR Stations"
id="RadarMenuTwdrRadarsSubMenu">
<contribute xsi:type="subinclude" fileName="menus/radar/tdwrRadars.xml" />
</contribute>
<contribute xsi:type="titleItem" titleText="------ FNEXRAD Composites ------"
id="RadarMosaic" />
<!-- Unidata Composite -->
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarComposite.xml"
menuText="DHR - Digital Hybrid Reflectivity" id="DHR">
<substitute key="element" value="DHR"/>
<substitute key="colormap" value="Radar/Hi-Res Ref (SGF)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarComposite.xml"
menuText="DVL - Digital VIL" id="DVL">
<substitute key="element" value="DVL"/>
<substitute key="colormap" value="Radar/OSF/Digital VIL"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarComposite.xml"
menuText="EET - Enhanced Echo Tops" id="EET">
<substitute key="element" value="EET"/>
<substitute key="colormap" value="Radar/Enhanced Echo Tops"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarComposite.xml"
menuText="HHC - Hybrid Hydrometeor Classification" id="HHC">
<substitute key="element" value="HHC"/>
<substitute key="colormap" value="Radar/HHC NEXRCOMP"/>
</contribute>
<contribute xsi:type="titleItem" titleText="------ Mosaic ------"
id="RadarMosaic" />
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="0.5 Reflectivity" id="Radar05Reflectivity">
<substitute key="product" value="94,19,20" />
menuText="N0Q - Base Reflectivity" id="Radar05Reflectivity">
<substitute key="product" value="94" />
<substitute key="elevation" value="0.5" />
<substitute key="name" value="0.5 Reflectivity" />
<substitute key="name" value="N0Q - Base Reflectivity" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="0.5 Differential Refl" id="Radar05ZDR">
menuText="N0X - Differential Refl" id="Radar05ZDR">
<substitute key="product" value="159,158" />
<substitute key="elevation" value="0.5" />
<substitute key="name" value="0.5 Diff Reflectivity" />
<substitute key="name" value="N0X - Diff Reflectivity" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="0.5 Specific Diff Phase" id="Radar05KDP">
menuText="N0K - Specific Diff Phase" id="Radar05KDP">
<substitute key="product" value="163,162" />
<substitute key="elevation" value="0.5" />
<substitute key="name" value="0.5 Specific Diff Phase" />
<substitute key="name" value="N0K - Specific Diff Phase" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="0.5 Correlation Coeff" id="Radar05CC">
menuText="N0C - Correlation Coefficient" id="Radar05CC">
<substitute key="product" value="161,160" />
<substitute key="elevation" value="0.5" />
<substitute key="name" value="0.5 Correlation Coefficient" />
<substitute key="name" value="N0C - Correlation Coefficient" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="Hybrid Scan Refl" id="RadarHybridScanRefl">
menuText="DHR - Digital Hybrid Reflectivity" id="RadarHybridScanRefl">
<substitute key="product" value="32,33" />
<substitute key="elevation" value="0.0" />
<substitute key="name" value="Hybrid Scan Refl" />
<substitute key="name" value="DHR - Digital Hybrid Reflectivity" />
</contribute>
<!--
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="Composite Refl" id="RadarCompositeRefl">
<substitute key="product" value="37" />
<substitute key="elevation" value="0.0" />
<substitute key="name" value="Composite Refl" />
</contribute>
<contribute xsi:type="bundleItem"
file="bundles/DefaultRadarMosaicVILCompRefl.xml" menuText="VIL/Comp Ref"
id="RadarVILCompRef">
</contribute>
-->
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="Vert integrated Liquid" id="RadarVertIntegratedLiquid">
<substitute key="product" value="57" />
menuText="DVL - Vert Integrated Liquid" id="RadarVertIntegratedLiquid">
<substitute key="product" value="134" />
<substitute key="elevation" value="0.0" />
<substitute key="name" value="Vert integrated Liquid" />
<substitute key="name" value="DVL - Vert Integrated Liquid" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="Storm Total Precip" id="RadarStormTotalPrecip">
<substitute key="product" value="80" />
menuText="DSP - Storm Total Precip" id="RadarStormTotalPrecip">
<substitute key="product" value="138" />
<substitute key="elevation" value="0.0" />
<substitute key="name" value="Storm Total Precip" />
<substitute key="name" value="DSP - Storm Total Precip" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="One Hour Precip" id="RadarOneHourPrecip">
<substitute key="product" value="78" />
menuText="OHA - One Hour Precip" id="RadarOneHourPrecip">
<substitute key="product" value="169" />
<substitute key="elevation" value="0.0" />
<substitute key="name" value="One Hour Precip" />
<substitute key="name" value="OHA - One Hour Precip" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="Three Hour Precip" id="RadarThreeHourPrecip">
menuText="N3P - Three Hour Precip" id="RadarThreeHourPrecip">
<substitute key="product" value="79" />
<substitute key="elevation" value="0.0" />
<substitute key="name" value="Three Hour Precip" />
<substitute key="name" value="N3P - Three Hour Precip" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="User Selectable Precip" id="RadarUserSelectablePrecip">
<substitute key="product" value="31" />
menuText="EET - Enhanced Echo Tops" id="RadarEchoTops">
<substitute key="product" value="135" />
<substitute key="elevation" value="0.0" />
<substitute key="name" value="User Selectable Precip" />
<substitute key="name" value="EET - Enhanced Echo Tops" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="Layer 1 Max Refl" id="RadarLayer1MaxRefl">
<substitute key="product" value="65" />
<substitute key="elevation" value="0.0" />
<substitute key="name" value="Layer 1 Max Refl" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="Layer 2 Max Refl" id="RadarLayer2MaxRefl">
<substitute key="product" value="66" />
<substitute key="elevation" value="0.0" />
<substitute key="name" value="Layer 2 Max Refl" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="Layer 3 Max Refl" id="RadarLayer3MaxRefl">
<substitute key="product" value="67" />
<substitute key="elevation" value="0.0" />
<substitute key="name" value="Layer 3 Max Refl" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="Echo Tops" id="RadarEchoTops">
<substitute key="product" value="41" />
<substitute key="elevation" value="0.0" />
<substitute key="name" value="Echo Tops" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="Hybrid Hydro Class" id="RadarHybridHydroClass">
menuText="HHC - Hybrid Hydro Class" id="RadarHybridHydroClass">
<substitute key="product" value="177" />
<substitute key="elevation" value="0.0" />
<substitute key="name" value="Hybrid Hydro Class" />
<substitute key="name" value="HHC - Hybrid Hydro Class" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="Dual Pol Storm Total" id="RadarDualPolStormTotal">
menuText="DTA - Dual Pol Storm Total" id="RadarDualPolStormTotal">
<substitute key="product" value="172" />
<substitute key="elevation" value="0.0" />
<substitute key="name" value="Dual Pol Storm Total" />
<substitute key="name" value="DTA - Dual Pol Storm Total" />
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultRadarMosaic.xml"
menuText="Dual Pol 1hr Accum" id="RadarDualPol1hrAccum">
menuText="DAA - Dual Pol 1hr Accum" id="RadarDualPol1hrAccum">
<substitute key="product" value="170" />
<substitute key="elevation" value="0.0" />
<substitute key="name" value="Dual Pol 1hr Accum" />
<substitute key="name" value="DAA - Dual Pol 1hr Accum" />
</contribute>
<contribute xsi:type="separator" id="belowRadarMosaics" />
<contribute xsi:type="subMenu" menuText="Dial Radars"
id="RadarMenuDialRadarsSubMenu">
<contribute xsi:type="subinclude" fileName="menus/radar/dialRadars.xml" />
</contribute>
<contribute xsi:type="subinclude" fileName="menus/radar/baseRadarApplications.xml" />
</menuTemplate>

View file

@ -119,10 +119,14 @@
<substitute key="name" value="Dual Pol 1hr Accum"/>
</contribute>
<contribute xsi:type="separator" id="RadarDialRadarsSeparator" />
<contribute xsi:type="subMenu" menuText="Dial Radars"
<contribute xsi:type="subMenu" menuText="NEXRAD Stations"
id="RadarMenuDialRadarsSubMenu">
<contribute xsi:type="subinclude" fileName="menus/radar/dialRadars.xml" />
</contribute>
<contribute xsi:type="subMenu" menuText="TDWR Stations"
id="RadarMenuDialRadarsSubMenu">
<contribute xsi:type="subinclude" fileName="menus/radar/tdwrRadars.xml" />
</contribute>
<contribute xsi:type="separator" id="RadarApplicationsSeparator" />
<contribute xsi:type="subinclude" fileName="menus/radar/baseRadarApplications.xml" />
</menuTemplate>

View file

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<menuTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<contribute xsi:type="separator" id="baseTdwrRadarSeparator" />
</menuTemplate>

View file

@ -27,7 +27,7 @@
constraintType="EQUALS" />
</mapping>
<mapping key="sectorID">
<constraint constraintValue="${sector0},${sector1},${sector2},${sector3}"
<constraint constraintValue="${sector0},${sector1}"
constraintType="IN" />
</mapping>
<mapping key="creatingEntity">
@ -36,84 +36,7 @@
</mapping>
</metadataMap>
<!-- low res blended satellite -->
<resource>
<loadProperties loadWithoutData="false" />
<properties isSystemResource="false" isBlinking="false"
isMapLayer="false" isHoverOn="false" isVisible="true">
<pdProps maxDisplayWidth="100000000" minDisplayWidth="10000000" />
</properties>
<resourceData xsi:type="satBlendedResourceData" timeMatchMode="${timeMatchMode;EVERY_IMAGE}">
<resource>
<loadProperties loadWithoutData="false" />
<properties isSystemResource="false" isBlinking="false"
isMapLayer="false" isHoverOn="false" isVisible="true">
</properties>
<resourceData xsi:type="satResourceData"
isUpdatingOnMetadataOnly="false"
isRequeryNecessaryOnTimeMatch="true">
<binOffset posOffset="900" negOffset="900" virtualOffset="0"/>
<metadataMap>
<mapping key="pluginName">
<constraint constraintValue="satellite"
constraintType="EQUALS" />
</mapping>
<mapping key="physicalElement">
<constraint constraintValue="${element}"
constraintType="EQUALS" />
</mapping>
<mapping key="sectorID">
<constraint constraintValue="${sector3}"
constraintType="EQUALS" />
</mapping>
<mapping key="creatingEntity">
<constraint constraintValue="${entity}"
constraintType="LIKE" />
</mapping>
</metadataMap>
</resourceData>
</resource>
</resourceData>
</resource>
<!-- medium res blended satellite -->
<resource>
<loadProperties loadWithoutData="false" />
<properties isSystemResource="false" isBlinking="false"
isMapLayer="false" isHoverOn="false" isVisible="true">
<pdProps maxDisplayWidth="10000000" minDisplayWidth="6000000" />
</properties>
<resourceData xsi:type="satBlendedResourceData" timeMatchMode="${timeMatchMode;EVERY_IMAGE}">
<resource>
<loadProperties loadWithoutData="false" />
<properties isSystemResource="false" isBlinking="false"
isMapLayer="false" isHoverOn="false" isVisible="true">
</properties>
<resourceData xsi:type="satResourceData"
isUpdatingOnMetadataOnly="false"
isRequeryNecessaryOnTimeMatch="true">
<binOffset posOffset="900" negOffset="900" virtualOffset="0"/>
<metadataMap>
<mapping key="pluginName">
<constraint constraintValue="satellite"
constraintType="EQUALS" />
</mapping>
<mapping key="physicalElement">
<constraint constraintValue="${element}"
constraintType="EQUALS" />
</mapping>
<mapping key="sectorID">
<constraint constraintValue="${sector2}"
constraintType="EQUALS" />
</mapping>
<mapping key="creatingEntity">
<constraint constraintValue="${entity}"
constraintType="LIKE" />
</mapping>
</metadataMap>
</resourceData>
</resource>
</resourceData>
</resource>
<!-- high res blended satellite -->
<resource>
<loadProperties loadWithoutData="false" />

View file

@ -25,7 +25,7 @@
<constraint constraintValue="${element}" constraintType="EQUALS"/>
</mapping>
<mapping key="sectorID">
<constraint constraintValue="${sector}" constraintType="EQUALS"/>
<constraint constraintValue="${sector}" constraintType="LIKE"/>
</mapping>
<mapping key="creatingEntity">
<constraint constraintValue="${entity}" constraintType="LIKE"/>

View file

@ -0,0 +1,68 @@
<bundle>
<displayList>
<displays xsi:type="d2DMapRenderableDisplay" density="1.0" magnification="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<descriptor xsi:type="mapDescriptor">
<resource>
<loadProperties loadWithoutData="false">
<resourceType>PLAN_VIEW</resourceType>
<capabilities>
<capability xsi:type="outlineCapability" outlineWidth="1" outlineOn="true" lineStyle="SOLID"/>
<capability xsi:type="colorMapCapability">
<colorMapParameters colorMapName="topo">
<persisted/>
</colorMapParameters>
</capability>
<capability xsi:type="colorableCapability" colorAsString="green"/>
<capability xsi:type="imagingCapability" contrast="1.0" brightness="1.0" interpolationState="false" alpha="0.8"/>
</capabilities>
</loadProperties>
<properties isVisible="true" isHoverOn="false" isMapLayer="false" isBlinking="false" isSystemResource="false" renderingOrderId="MAP_IMAGE">
<pdProps minDisplayWidth="0" maxDisplayWidth="100000000"/>
</properties>
<resourceData xsi:type="topoResourceData">
<topoFile>defaultTopo.h5</topoFile>
<mapName>Topography</mapName>
</resourceData>
</resource>
<resource>
<loadProperties loadWithoutData="true">
<capabilities>
<capability xsi:type="colorMapCapability">
<colorMapParameters colorMapName="Sat/VIS/ZA (Vis Default)">
<persisted>
<colorMapMin>0.0</colorMapMin>
<colorMapMax>255.0</colorMapMax>
</persisted>
</colorMapParameters>
</capability>
<capability xsi:type="colorableCapability" colorAsString="white"/>
<capability xsi:type="imagingCapability" contrast="1.0" brightness="1.0" interpolationState="false" alpha="0.85"/>
</capabilities>
<resourceType>PLAN_VIEW</resourceType>
<perspectiveProperty xsi:type="d2dLoadProperties" overlayMatchTolerance="1"/>
</loadProperties>
<properties isSystemResource="false" isBlinking="false" isMapLayer="false" isHoverOn="false" isVisible="true">
</properties>
<resourceData xsi:type="satResourceData" isUpdatingOnMetadataOnly="false" isRequeryNecessaryOnTimeMatch="true">
<metadataMap>
<mapping key="pluginName">
<constraint constraintValue="satellite" constraintType="EQUALS"/>
</mapping>
<mapping key="physicalElement">
<constraint constraintValue="${element}" constraintType="EQUALS"/>
</mapping>
<mapping key="sectorID">
<constraint constraintValue="${sector}" constraintType="LIKE"/>
</mapping>
<mapping key="creatingEntity">
<constraint constraintValue="${entity}" constraintType="LIKE"/>
</mapping>
</metadataMap>
</resourceData>
</resource>
<timeMatcher xsi:type="d2DTimeMatcher" deltaFilter="0" forecastFilter="0"/>
</descriptor>
</displays>
</displayList>
</bundle>

View file

@ -22,11 +22,9 @@
<contribute xsi:type="subinclude" fileName="menus/satellite/baseSatellite.xml">
<substitute key="sector0" value="West CONUS"/>
<substitute key="sector1" value="East CONUS"/>
<substitute key="sector2" value="Supernational"/>
<substitute key="sector3" value="Northern Hemisphere Composite"/>
<substitute key="entity" value="GOES%"/>
<substitute key="blendedTimeMatchMode" value="ALL_IMAGES"/>
</contribute>
<contribute xsi:type="separator" id="baseCompositeSeparator"/>
<contribute xsi:type="subinclude" fileName="menus/satellite/basePOESImagery.xml" />
<contribute xsi:type="subinclude" fileName="menus/satellite/basePOESImagery.xml" />
</menuTemplate>

View file

@ -207,26 +207,24 @@
<substitute key="between" value="90100--105000" />
</contribute>
</contribute>
<contribute xsi:type="subMenu" menuText="Scatterometer Winds">
<!--
<contribute xsi:type="bundleItem" file="bundles/Scatterometer_quikscat.xml"
menuText="QuikSCAT 12.5 km" id="QuikSCAT">
<substitute key="legend" value="QUIKSCAT"/>
<substitute key="svg" value="quikScatPlotDesign.svg"/>
<substitute key="plugin" value="bufrquikscat"/>
<substitute key="posOffset" value="0"/>
<substitute key="negOffset" value="5400"/>
</contribute>
-->
<contribute xsi:type="bundleItem" file="bundles/Scatterometer.xml"
menuText="ASCAT Winds 25 km" id="ASCATWinds">
<substitute key="legend" value="ASCAT"/>
<substitute key="svg" value="ascatPlotDesign.svg"/>
<substitute key="plugin" value="bufrascat"/>
<substitute key="posOffset" value="2650"/>
<substitute key="negOffset" value="2650"/>
</contribute>
</contribute>
<!--
<contribute xsi:type="bundleItem" file="bundles/Scatterometer_quikscat.xml"
menuText="QuikSCAT 12.5 km" id="QuikSCAT">
<substitute key="legend" value="QUIKSCAT"/>
<substitute key="svg" value="quikScatPlotDesign.svg"/>
<substitute key="plugin" value="bufrquikscat"/>
<substitute key="posOffset" value="0"/>
<substitute key="negOffset" value="5400"/>
</contribute>
-->
<contribute xsi:type="bundleItem" file="bundles/Scatterometer.xml"
menuText="ASCAT Winds 25 km" id="ASCATWinds">
<substitute key="legend" value="ASCAT"/>
<substitute key="svg" value="ascatPlotDesign.svg"/>
<substitute key="plugin" value="bufrascat"/>
<substitute key="posOffset" value="2650"/>
<substitute key="negOffset" value="2650"/>
</contribute>
<contribute xsi:type="subMenu" menuText="SSM/I Point Data">
<contribute xsi:type="titleItem"
titleText="------ SSM/I Data ------" id="SSMIDataLine"/>

View file

@ -20,11 +20,9 @@
-->
<menuTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<contribute xsi:type="separator" id="MySeparatorId"/>
<contribute xsi:type="titleItem"
titleText="------ 4 Sat Composite ------" id="NHLine"/>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="IR Window" id="irWindow">
<substitute key="element" value="Imager 11 micron IR"/>
<substitute key="element" value="Imager 13 micron (IR)"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"

View file

@ -1,74 +1,81 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<menuTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<contribute xsi:type="satBundleItem" file="bundles/DefaultCompositeSatellite.xml"
menuText="IR Window" id="irWindow">
<substitute key="timeMatchMode" value="${blendedTimeMatchMode;ALL_IMAGES}"/>
<substitute key="element" value="Imager 11 micron IR"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="satBundleItem" file="bundles/DefaultCompositeSatellite.xml"
menuText="Water Vapor" id="waterVapor">
<substitute key="timeMatchMode" value="${blendedTimeMatchMode;ALL_IMAGES}"/>
<substitute key="element" value="Imager 6.7-6.5 micron IR (WV)"/>
<substitute key="colormap" value="Sat/WV/Gray Scale Water Vapor"/>
</contribute>
<contribute xsi:type="satBundleItem" file="bundles/DefaultCompositeSatellite.xml"
menuText="Visible" id="visible">
<substitute key="timeMatchMode" value="${blendedTimeMatchMode;ALL_IMAGES}"/>
<substitute key="element" value="Imager Visible"/>
<substitute key="colormap" value="Sat/VIS/ZA (Vis Default)"/>
</contribute>
<contribute xsi:type="satBundleItem" file="bundles/DefaultCONUSSatellite.xml"
menuText="3.9u" id="3.9u">
<substitute key="element" value="Imager 3.9 micron IR"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="satBundleItem" file="bundles/DefaultCONUSSatellite.xml"
menuText="13u" id="13u">
<substitute key="element" value="Imager 13 micron (IR)"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="satBundleItem" file="bundles/DerivedCONUSSatellite.xml"
menuText="11u-3.9u" id="11-3.9u">
<substitute key="element" value="satDif11u3_9uIR"/>
<substitute key="colormap" value="Sat/VIS/CA (Low Light Vis)"/>
</contribute>
<contribute xsi:type="satBundleItem" file="bundles/DerivedCONUSSatellite.xml"
menuText="11u-13u" id="11u-13u">
<substitute key="timeMatchMode" value="${blendedTimeMatchMode;ALL_IMAGES}"/>
<substitute key="element" value="satDif11u13uIR"/>
<substitute key="colormap" value="Grid/gridded data"/>
</contribute>
<contribute xsi:type="satBundleItem" file="bundles/DerivedCompositeSatellite.xml"
menuText="WV/IR" id="WV/IR">
<substitute key="timeMatchMode" value="${blendedTimeMatchMode;ALL_IMAGES}"/>
<substitute key="element" value="satDivWVIR"/>
<substitute key="colormap" value="Sat/IR/IR WV"/>
</contribute>
<contribute xsi:type="satBundleItem" file="bundles/DefaultSatelliteFourPanel.xml"
menuText="4 panel (GOES M-Q)" id="4_panel_(GOES_M-Q)">
<substitute key="element0" value="Imager 11 micron IR"/>
<substitute key="element1" value="Imager 13 micron (IR)"/>
<substitute key="element2" value="Imager Visible"/>
<substitute key="element3" value="Imager 6.7-6.5 micron IR (WV)"/>
<contribute xsi:type="subMenu" menuText="Regional Imagery">
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="Puerto Rico IR" id="irWindow">
<substitute key="element" value="Imager 11 micron IR"/>
<substitute key="sector" value="Puerto Rico Regional"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="Puerto Rico Visible" id="visible">
<substitute key="element" value="Imager Visible"/>
<substitute key="sector" value="Puerto Rico Regional"/>
<substitute key="colormap" value="Sat/VIS/ZA (Vis Default)"/>
</contribute>
<contribute xsi:type="separator" id="MySeparatorId"/>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="Hawaii IR" id="irWindow">
<substitute key="element" value="Imager 11 micron IR"/>
<substitute key="sector" value="Hawaii Regional"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="Hawaii Visible" id="visible">
<substitute key="element" value="Imager Visible"/>
<substitute key="sector" value="Hawaii Regional"/>
<substitute key="colormap" value="Sat/VIS/ZA (Vis Default)"/>
</contribute>
<contribute xsi:type="separator" id="MySeparatorId"/>
<contribute xsi:type="satBundleItem" file="bundles/DefaultSatellite.xml"
menuText="Arctic IR" id="Arctic-3.9">
<substitute key="element" value="Imager 3.5-4.0 micro IR (Fog)"/>
<substitute key="entity" value="COMP" />
<substitute key="sector" value="Arctic" />
<substitute key="colormap" value="Sat/IR/Fog"/>
</contribute>
<contribute xsi:type="satBundleItem" file="bundles/DefaultSatellite.xml"
menuText="Arctic Visible" id="Arctic-Vis">
<substitute key="element" value="Imager Visible"/>
<substitute key="entity" value="COMP" />
<substitute key="sector" value="Arctic" />
<substitute key="colormap" value="Sat/VIS/ZA (Vis Default)"/>
</contribute>
<contribute xsi:type="satBundleItem" file="bundles/DefaultSatellite.xml"
menuText="Arctic WV" id="Arctic-WV">
<substitute key="element" value="Imager 6.7-6.5 micron IR (WV)"/>
<substitute key="entity" value="COMP" />
<substitute key="sector" value="Arctic" />
<substitute key="colormap" value="Sat/WV/Gray Scale Water Vapor"/>
</contribute>
<contribute xsi:type="separator" id="MySeparatorId"/>
<contribute xsi:type="satBundleItem" file="bundles/DefaultSatellite.xml"
menuText="Antarctica IR" id="Arctic-IR1">
<substitute key="element" value="Imager 3.5-4.0 micro IR (Fog)"/>
<substitute key="entity" value="COMP" />
<substitute key="sector" value="Antarctic" />
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="satBundleItem" file="bundles/DefaultSatellite.xml"
menuText="Antarctica Visible" id="Arctic-Vis">
<substitute key="element" value="Imager Visible"/>
<substitute key="entity" value="COMP" />
<substitute key="sector" value="Antarctic" />
<substitute key="colormap" value="Sat/VIS/ZA (Vis Default)"/>
</contribute>
<contribute xsi:type="satBundleItem" file="bundles/DefaultSatellite.xml"
menuText="Antarctica WV" id="Arctic-WV">
<substitute key="element" value="Imager 6.7-6.5 micron IR (WV)"/>
<substitute key="entity" value="COMP" />
<substitute key="sector" value="Antarctica" />
<substitute key="colormap" value="Sat/WV/Gray Scale Water Vapor"/>
</contribute>
</contribute>
</menuTemplate>
</menuTemplate>

View file

@ -1,171 +1,51 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<menuTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<contribute xsi:type="separator" id="MySeparatorId"/>
<contribute xsi:type="subMenu" menuText="Sounder Imagery">
<contribute xsi:type="titleItem"
titleText="------ GE and GW CONUS Sounder Imagery ------" id="SounderLine"/>
<contribute xsi:type="bundleItem" file="bundles/DefaultCONUSSatellite.xml"
menuText="IR Window" id="irWindow">
<substitute key="element" value="Sounder 11.03 micron imagery"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultCONUSSatellite.xml"
menuText="Water Vapor (6.5u)" id="waterVapor6.5u">
<substitute key="element" value="Sounder 6.51 micron imagery"/>
<substitute key="colormap" value="Sat/WV/Gray Scale Water Vapor"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultCONUSSatellite.xml"
menuText="Water Vapor (7.0u)" id="waterVapor7.0u">
<substitute key="element" value="Sounder 7.02 micron imagery"/>
<substitute key="colormap" value="Sat/WV/Gray Scale Water Vapor"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultCONUSSatellite.xml"
menuText="Water Vapor (7.4u)" id="waterVapor7.4u">
<substitute key="element" value="Sounder 7.43 micron imagery"/>
<substitute key="colormap" value="Sat/WV/Gray Scale Water Vapor"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultCONUSSatellite.xml"
menuText="Visible" id="visible">
<substitute key="element" value="Sounder Visible imagery"/>
<substitute key="colormap" value="Sat/VIS/ZA (Vis Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultCONUSSatellite.xml"
menuText="4.0u" id="4.0u">
<substitute key="element" value="Sounder 3.98 micron imagery"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultCONUSSatellite.xml"
menuText="4.5u" id="4.5u">
<substitute key="element" value="Sounder 4.45 micron imagery"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultCONUSSatellite.xml"
menuText="14.1u" id="14.1u">
<substitute key="element" value="Sounder 14.06 micron imagery"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="separator" id="MySeparatorId"/>
<contribute xsi:type="titleItem"
titleText="------ OCONUS Sounder Imagery------" id="OconusSndrLine"/>
<contribute xsi:type="subMenu" menuText="N. Atlantic and Gulf of Mexico">
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="IR Window" id="irWindow">
<substitute key="element" value="Imager 11 micron IR"/>
<substitute key="sector" value="Puerto Rico Regional"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="Water Vapor (6.5u)" id="waterVapor6.5u">
<substitute key="element" value="Sounder 6.51 micron imagery"/>
<substitute key="sector" value="Puerto Rico National"/>
<substitute key="colormap" value="Sat/WV/Gray Scale Water Vapor"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="Water Vapor (7.0u)" id="waterVapor7.0u">
<substitute key="element" value="Sounder 7.02 micron imagery"/>
<substitute key="sector" value="Puerto Rico National"/>
<substitute key="colormap" value="Sat/WV/Gray Scale Water Vapor"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="Water Vapor (7.4u)" id="waterVapor7.4u">
<substitute key="element" value="Sounder 7.43 micron imagery"/>
<substitute key="sector" value="Puerto Rico National"/>
<substitute key="colormap" value="Sat/WV/Gray Scale Water Vapor"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="Visible" id="visible">
<substitute key="element" value="Imager Visible"/>
<substitute key="sector" value="Puerto Rico Regional"/>
<substitute key="colormap" value="Sat/VIS/ZA (Vis Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="4.0u" id="4.0u">
<substitute key="element" value="Sounder 3.98 micron imagery"/>
<substitute key="sector" value="Puerto Rico National"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="4.5u" id="4.5u">
<substitute key="element" value="Sounder 4.45 micron imagery"/>
<substitute key="sector" value="Puerto Rico National"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="14.1u" id="14.1u">
<substitute key="element" value="Sounder 14.06 micron imagery"/>
<substitute key="sector" value="Puerto Rico National"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
</contribute>
<contribute xsi:type="subMenu" menuText="N. Pacific">
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="IR Window" id="irWindow">
<substitute key="element" value="Imager 11 micron IR"/>
<substitute key="sector" value="Hawaii Regional"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="Water Vapor (6.5u)" id="waterVapor6.5u">
<substitute key="element" value="Sounder 6.51 micron imagery"/>
<substitute key="sector" value="Hawaii National"/>
<substitute key="colormap" value="Sat/WV/Gray Scale Water Vapor"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="Water Vapor (7.0u)" id="waterVapor7.0u">
<substitute key="element" value="Sounder 7.02 micron imagery"/>
<substitute key="sector" value="Hawaii National"/>
<substitute key="colormap" value="Sat/WV/Gray Scale Water Vapor"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="Water Vapor (7.4u)" id="waterVapor7.4u">
<substitute key="element" value="Sounder 7.43 micron imagery"/>
<substitute key="sector" value="Hawaii National"/>
<substitute key="colormap" value="Sat/WV/Gray Scale Water Vapor"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="Visible" id="visible">
<substitute key="element" value="Imager Visible"/>
<substitute key="sector" value="Hawaii Regional"/>
<substitute key="colormap" value="Sat/VIS/ZA (Vis Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="4.0u" id="4.0u">
<substitute key="element" value="Sounder 3.98 micron imagery"/>
<substitute key="sector" value="Hawaii National"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="4.5u" id="4.5u">
<substitute key="element" value="Sounder 4.45 micron imagery"/>
<substitute key="sector" value="Hawaii National"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="14.1u" id="14.1u">
<substitute key="element" value="Sounder 14.06 micron imagery"/>
<substitute key="sector" value="Hawaii National"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
</contribute>
<contribute xsi:type="subMenu" menuText="Sounder Imagery">
<contribute xsi:type="titleItem" titleText="------ Uniwisc Sounder Imagery ------" id="SounderLine"/>
<contribute xsi:type="satBundleItem" file="bundles/DefaultSatellite.xml"
menuText="Ozone" id="GOES-Sounder-Ozone">
<substitute key="element" value="Sounder Based Total Column Ozone"/>
<substitute key="entity" value="SOUNDER" />
<substitute key="sector" value="GOES-Sounder" />
<substitute key="colormap" value="Sat/Ozone/Ozone"/>
</contribute>
<contribute xsi:type="satBundleItem" file="bundles/DefaultSatellite.xml"
menuText="Derived Lifted Index" id="GOES-Sounder-LI">
<substitute key="element" value="Sounder Based Derived Lifted Index (LI)"/>
<substitute key="entity" value="SOUNDER" />
<substitute key="sector" value="GOES-Sounder" />
<substitute key="colormap" value="Sat/Ozone/Ozone"/>
</contribute>
<contribute xsi:type="satBundleItem" file="bundles/DefaultSatellite.xml"
menuText="Precipitable Water" id="GOES-Sounder-PW">
<substitute key="element" value="Sounder Based Derived Precipitable Water (PW)"/>
<substitute key="entity" value="SOUNDER" />
<substitute key="sector" value="GOES-Sounder" />
<substitute key="colormap" value="Sat/Precip Water/Precip Water - Polar"/>
</contribute>
<contribute xsi:type="satBundleItem" file="bundles/DefaultSatellite.xml"
menuText="CAPE" id="GOES-Sounder-Cape">
<substitute key="element" value="CAPE"/>
<substitute key="entity" value="SOUNDER" />
<substitute key="sector" value="GOES-Sounder" />
<substitute key="colormap" value="Sat/IR/IR WV"/>
</contribute>
</contribute>
<contribute xsi:type="separator" id="MySeparatorId"/>
<contribute xsi:type="bundleItem" file="bundles/SoundingAvailability.xml"
menuText="GOES Sounding Availability" id="goesSoundingAvailability">
<substitute key="pluginName" value="goessounding"/>
<substitute key="plotSource" value="GOES Sounding Availability"/>
<substitute key="offset" value="1800"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/SoundingAvailability.xml"
menuText="POES Sounding Availability" id="poesSoundingAvailability">
<substitute key="pluginName" value="poessounding"/>
<substitute key="plotSource" value="POES Sounding Availability"/>
<substitute key="offset" value="1800"/>
</contribute>
</menuTemplate>

View file

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<menuTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<contribute xsi:type="separator" id="MySeparatorId"/>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="1km GOES East Visible (B/W)" id="visible">
<substitute key="element" value="Imager Visible"/>
<substitute key="sector" value="GOES-East"/>
<substitute key="entity" value="GOES13"/>
<substitute key="colormap" value="Sat/VIS/ZA (Vis Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/VisibleTopo.xml"
menuText="1km GOES East Visible (Topo)" id="visible">
<substitute key="element" value="Imager Visible"/>
<substitute key="sector" value="GOES-East"/>
<substitute key="entity" value="GOES13"/>
<substitute key="colormap" value="Sat/VIS/ZA (Vis Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="4km GOES East IR" id="irWindow">
<substitute key="element" value="Imager 11 micron IR"/>
<substitute key="sector" value="GOES-East"/>
<substitute key="entity" value="GOES13"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="4km GOES East WV" id="waterVapor">
<substitute key="element" value="Imager 6.7-6.5 micron IR (WV)"/>
<substitute key="sector" value="GOES-East"/>
<substitute key="entity" value="GOES13"/>
<substitute key="colormap" value="Sat/WV/Gray Scale Water Vapor"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="4km GOES West Visible" id="visible">
<substitute key="element" value="Imager Visible"/>
<substitute key="sector" value="GOES-West"/>
<substitute key="entity" value="GOES15"/>
<substitute key="colormap" value="Sat/VIS/ZA (Vis Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="4km GOES West IR" id="irWindow">
<substitute key="element" value="Imager 11 micron IR"/>
<substitute key="sector" value="GOES-West"/>
<substitute key="entity" value="GOES15"/>
<substitute key="colormap" value="Sat/IR/CIRA (IR Default)"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/DefaultSatellite.xml"
menuText="4km GOES West WV" id="waterVapor">
<substitute key="element" value="Imager 6.7-6.5 micron IR (WV)"/>
<substitute key="sector" value="GOES-West"/>
<substitute key="entity" value="GOES15"/>
<substitute key="colormap" value="Sat/WV/Gray Scale Water Vapor"/>
</contribute>
</menuTemplate>

View file

@ -1,28 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<menuContributionFile>
<include installTo="menu:satellite?before=GROUP1"
fileName="menus/satellite/baseUniwiscComposite.xml">
</include>
<include installTo="menu:satellite?after=GROUP1"
fileName="menus/satellite/baseComposite.xml">
fileName="menus/satellite/baseSatellite.xml">
</include>
<include installTo="menu:satellite?before=GROUP3"
<include installTo="menu:satellite?before=GROUP2"
fileName="menus/satellite/baseSounderImagery.xml">
<substitute key="sector0" value="West CONUS"/>
<substitute key="sector1" value="East CONUS"/>
@ -34,19 +18,6 @@
fileName="menus/satellite/baseDerivedProductsImagery.xml">
<substitute key="sector" value="Supernational"/>
</include>
<include subMenu="Derived Products Plots" installTo="menu:satellite?after=GROUP4"
fileName="menus/satellite/baseDerivedProductPlots.xml"/>
<include installTo="menu:satellite?after=GROUP5"
fileName="menus/satellite/baseNHemisphere.xml">
<substitute key="sector0" value="West CONUS"/>
<substitute key="sector1" value="East CONUS"/>
<substitute key="sector2" value="Supernational"/>
<substitute key="sector3" value="Northern Hemisphere Composite"/>
<substitute key="entity" value="GOES%"/>
</include>
<include installTo="menu:satellite?after=GROUP6"
fileName="menus/satellite/baseFourSatComposite.xml">
<substitute key="sector" value="NH Composite - Meteosat-GOES E-GOES W-GMS"/>
<substitute key="entity" value="Composite"/>
</include>
<include installTo="menu:satellite?before=GROUP3"
fileName="menus/satellite/baseDerivedProductPlots.xml"/>
</menuContributionFile>

View file

@ -62,4 +62,11 @@
name="com.raytheon.viz.satellite.units">
</units>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="menu:models?after=top">
</menuContribution>
</extension>
</plugin>

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