diff --git a/awips_install-v20.sh b/awips_install-v20.sh old mode 100644 new mode 100755 index 7ec691d521..f7a494b410 --- a/awips_install-v20.sh +++ b/awips_install-v20.sh @@ -3,14 +3,25 @@ # devorg: Unidata Program Center # author: Michael James, Tiffany Meyer # maintainer: -# Date Updated: 2/17/2023 -# use: ./awips_install-v20.sh (--cave|--help) +# Date Updated: 7/10/2023 +# use: ./awips_install.sh (--cave|--edex|--database|--ingest|--help) dir="$( cd "$(dirname "$0")" ; pwd -P )" -usage="$(basename "$0") [-h] (--cave) #script to install Unidata AWIPS CAVE release.\n +usage="$(basename "$0") [-h] (--cave|--edex|--database|--ingest) #script to install Unidata AWIPS components.\n -h, --help show this help text\n - --cave install CAVE for x86_64 Linux\n" + --cave install CAVE for x86_64 Linux\n + --edex, --server install EDEX Standaone Server x86_64 Linux\n + --database install EDEX Request/Database x86_64 Linux\n + --ingest install EDEX Ingest Node Server x86_64 Linux\n" + +function stop_edex_services { + for srvc in edex_ldm edex_camel qpidd httpd-pypies edex_postgres ; do + if [ -f /etc/init.d/$srvc ]; then + service $srvc stop + fi + done +} function check_yumfile { if [[ $(grep "release 7" /etc/redhat-release) ]]; then @@ -70,17 +81,34 @@ function check_netcdf { fi } +function check_git { + if ! [[ $(rpm -qa | grep ^git-[12]) ]]; then + # install git if not installed + yum install git -y + + fi +} + +function check_wgrib2 { + if ! [[ $(rpm -qa | grep ^wgrib2) ]]; then + # install wgrib2 if not installed + yum install wgrib2 -y + + fi +} + function check_cave { + check_edex if [[ $(rpm -qa | grep awips2-cave-20) ]]; then echo $'\n'CAVE is currently installed and needs to be removed before installing. pkill cave.sh pkill -f 'cave/cave.sh' remove_cave fi - - check_edex if [[ $(rpm -qa | grep awips2-cave-18) ]]; then while true; do + pkill run.sh + pkill -f 'cave/run.sh' read -p "Version 18.* of CAVE is currently installed and needs to be removed before installing the Beta Version 20.* of CAVE. Do you wish to remove CAVE? (Please type yes or no) `echo $'\n> '`" yn case $yn in [Yy]* ) remove_cave; break;; @@ -93,6 +121,7 @@ function check_cave { function remove_cave { yum groupremove awips2-cave -y + yum remove awips2-* -y if [[ $(rpm -qa | grep awips2-cave) ]]; then echo " @@ -120,7 +149,7 @@ function remove_cave { function check_edex { if [[ $(rpm -qa | grep awips2-edex) ]]; then - echo "Found EDEX RPMs installed. The current EDEX needs to be removed before installing version 20.* of CAVE (beta release)." + echo "found EDEX RPMs installed. The current EDEX needs to be removed before installing." check_remove_edex else if [ -d /awips2/database/data/ ]; then @@ -312,12 +341,14 @@ function remove_edex { pkill cave.sh pkill -f 'cave/run.sh' rm -rf /home/awips/caveData + else echo "Now removing EDEX" fi yum groupremove awips2-server awips2-database awips2-ingest awips2-cave -y yum remove awips2-* -y + if [[ $(rpm -qa | grep awips2 | grep -v cave) ]]; then echo " =================== FAILED =========================== @@ -335,9 +366,9 @@ function remove_edex { ex. yum groups mark remove 'AWIPS EDEX Server'" exit else - awips2_dirs=("data" "database" "data_store" "edex" "hdf5" "httpd_pypies" "java" "ldm" "postgres" "psql" "pypies" "python" "qpid" "tmp" "tools" "yajsw") + awips2_dirs=("cave" "data" "database" "data_store" "edex" "etc" "hdf5" "hdf5_locks" "httpd_pypies" "ignite" "java" "ldm" "netcdf" "postgres" "psql" "pypies" "python" "qpid" "tmp" "tools" "yajsw") for dir in ${awips2_dirs[@]}; do - if [ $dir != dev ] && [ $dir != cave ] ; then + if [ $dir != dev ] ; then echo "Removing /awips2/$dir" rm -rf /awips2/$dir fi @@ -346,8 +377,12 @@ function remove_edex { } function check_users { + + if ! getent group "fxalpha" >/dev/null 2>&1; then + groupadd fxalpha + fi if ! id "awips" >/dev/null 2>&1; then - groupadd fxalpha && useradd -G fxalpha awips + useradd -G fxalpha awips fi } @@ -356,12 +391,13 @@ function server_prep { check_yumfile stop_edex_services check_limits + check_epel check_netcdf check_wget check_rsync check_edex check_git - check_epel + check_wgrib2 } function disable_ndm_update { @@ -395,8 +431,27 @@ case $key in echo "CAVE has finished installing, the install log can be found in /tmp/awips-install.log" ;; --server|--edex) - echo "EDEX is not available to install for AWIPS Version 20.* (beta release). To install CAVE use the --cave flag\n" - exit + server_prep + yum groupinstall awips2-server -y 2>&1 | tee -a /tmp/awips-install.log + sed -i 's/enabled=1/enabled=0/' /etc/yum.repos.d/awips2.repo + sed -i 's/@LDM_PORT@/388/' /awips2/ldm/etc/registry.xml + echo "EDEX server has finished installing, the install log can be found in /tmp/awips-install.log" + ;; + --database) + server_prep + yum groupinstall awips2-database -y 2>&1 | tee -a /tmp/awips-install.log + disable_ndm_update + sed -i 's/enabled=1/enabled=0/' /etc/yum.repos.d/awips2.repo + sed -i 's/@LDM_PORT@/388/' /awips2/ldm/etc/registry.xml + echo "EDEX database has finished installing, the install log can be found in /tmp/awips-install.log" + ;; + --ingest) + server_prep + yum groupinstall awips2-ingest -y 2>&1 | tee -a /tmp/awips-install.log + disable_ndm_update + sed -i 's/enabled=1/enabled=0/' /etc/yum.repos.d/awips2.repo + sed -i 's/@LDM_PORT@/388/' /awips2/ldm/etc/registry.xml + echo "EDEX ingest has finished installing, the install log can be found in /tmp/awips-install.log" ;; -h|--help) echo -e $usage @@ -406,4 +461,3 @@ esac PATH=$PATH:/awips2/edex/bin/ exit - diff --git a/cave/com.raytheon.uf.viz.d2d.ui/plugin.xml b/cave/com.raytheon.uf.viz.d2d.ui/plugin.xml index 783899944b..e0f009c4c6 100644 --- a/cave/com.raytheon.uf.viz.d2d.ui/plugin.xml +++ b/cave/com.raytheon.uf.viz.d2d.ui/plugin.xml @@ -1368,6 +1368,10 @@ + + @@ -1446,6 +1450,12 @@ + + + + + sequence="M1+M2+C"> + sequence="M1+M2+T"> + + + + + + diff --git a/cave/com.raytheon.uf.viz.d2d.ui/src/com/raytheon/uf/viz/d2d/ui/actions/DeleteAWIPSBundle.java b/cave/com.raytheon.uf.viz.d2d.ui/src/com/raytheon/uf/viz/d2d/ui/actions/DeleteAWIPSBundle.java new file mode 100644 index 0000000000..ed96fdca44 --- /dev/null +++ b/cave/com.raytheon.uf.viz.d2d.ui/src/com/raytheon/uf/viz/d2d/ui/actions/DeleteAWIPSBundle.java @@ -0,0 +1,94 @@ +/** + * 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. + **/ +package com.raytheon.uf.viz.d2d.ui.actions; + +import org.eclipse.core.commands.AbstractHandler; +import org.eclipse.core.commands.ExecutionEvent; +import org.eclipse.core.commands.ExecutionException; +import org.eclipse.ui.handlers.HandlerUtil; + +import com.raytheon.uf.common.localization.ILocalizationFile; +import com.raytheon.uf.common.localization.LocalizationContext.LocalizationType; +import com.raytheon.uf.common.localization.exception.LocalizationException; +import com.raytheon.uf.common.status.IUFStatusHandler; +import com.raytheon.uf.common.status.UFStatus; +import com.raytheon.uf.common.status.UFStatus.Priority; +import com.raytheon.viz.ui.actions.SavePerspectiveHandler; +import com.raytheon.viz.ui.dialogs.ICloseCallback; +import com.raytheon.viz.ui.dialogs.localization.VizLocalizationFileListDlg; +import com.raytheon.viz.ui.dialogs.localization.VizLocalizationFileListDlg.Mode; + +/** + * Delete an AWIPS bundle + * + *
+ * 
+ * SOFTWARE HISTORY
+ * 
+ * Date         Ticket#     Engineer    Description
+ * ------------ ----------  ----------- --------------------------
+ * Jul 12, 2017             mjames@ucar Copied from DeleteAWIPSProcedure
+ * Oct 29, 2021           srcarter@ucar Replaced "Bundle" with "Display"
+ * Oct 10, 2023           srcarter@ucar Use addCloseCallback instead of deprecated method
+ * 
+ * + * @author mjames@ucar + * @version 1 + */ +public class DeleteAWIPSBundle extends AbstractHandler { + private final transient IUFStatusHandler statusHandler = UFStatus + .getHandler(DeleteAWIPSBundle.class); + + private VizLocalizationFileListDlg listDlg; + + @Override + public Object execute(ExecutionEvent event) throws ExecutionException { + if (listDlg == null || listDlg.getShell() == null + || listDlg.isDisposed()) { + listDlg = new VizLocalizationFileListDlg("Delete Display", + HandlerUtil.getActiveShell(event), Mode.DELETE, + SavePerspectiveHandler.PERSPECTIVES_DIR, "perspectives", + LocalizationType.COMMON_STATIC); + listDlg.addCloseCallback(new ICloseCallback() { + + @Override + public void dialogClosed(Object returnValue) { + if (returnValue instanceof ILocalizationFile) { + ILocalizationFile selectedFile = (ILocalizationFile) returnValue; + try { + selectedFile.delete(); + } catch (LocalizationException e) { + statusHandler.handle( + Priority.PROBLEM, + "Error deleting bundle: " + + selectedFile.getPath()); + } + } + } + }); + listDlg.open(); + } else { + listDlg.bringToTop(); + } + + return null; + } + +} \ No newline at end of file diff --git a/cave/com.raytheon.uf.viz.d2d.ui/src/com/raytheon/uf/viz/d2d/ui/actions/LocateCursorAction.java b/cave/com.raytheon.uf.viz.d2d.ui/src/com/raytheon/uf/viz/d2d/ui/actions/LocateCursorAction.java index 4a6fc34538..32f2133429 100644 --- a/cave/com.raytheon.uf.viz.d2d.ui/src/com/raytheon/uf/viz/d2d/ui/actions/LocateCursorAction.java +++ b/cave/com.raytheon.uf.viz.d2d.ui/src/com/raytheon/uf/viz/d2d/ui/actions/LocateCursorAction.java @@ -48,6 +48,7 @@ import com.raytheon.viz.ui.tools.AbstractTool; * Date Ticket# Engineer Description * ------------ ---------- ----------- -------------------------- * May 1, 2009 bgonzale Initial creation + * Nov 8, 2023 srcarter@ucar Fix functionality of the dialog, make UI more reasonable * * * @@ -89,13 +90,12 @@ public class LocateCursorAction extends AbstractTool { // set up close timer Display display = PlatformUI.getWorkbench().getDisplay(); - int oneAndAHalfSeconds = 1500; + int delay = 400; - display.timerExec(oneAndAHalfSeconds, new Runnable() { + display.timerExec(delay, new Runnable() { @Override public void run() { - if (dialog != null && dialog.getShell() != null - && !dialog.getShell().isDisposed()) { + if (dialog != null) { dialog.close(); } } @@ -103,9 +103,10 @@ public class LocateCursorAction extends AbstractTool { } private static class CursorBoxDialog extends CaveJFACEDialog { + private Shell shell; protected CursorBoxDialog(Shell parentShell) { super(parentShell); - setShellStyle(SWT.NO_TRIM | SWT.MODELESS); + shell = new Shell(parentShell, SWT.NO_TRIM | SWT.MODELESS); } /* @@ -123,15 +124,12 @@ public class LocateCursorAction extends AbstractTool { final Point cLoc = display.getCursorLocation(); final Color white = display.getSystemColor(SWT.COLOR_WHITE); final Color black = display.getSystemColor(SWT.COLOR_BLACK); - final int boxCount = 23; // 12 white boxes and 11 black boxes - final int sideSize = 190; + final int boxCount = 15; // 8 white boxes and 7 black boxes + final int sideSize = 60; final int center = sideSize / 2; final int sideInc = center / boxCount; final int margin = sideInc * 2; - GridData shellGD = new GridData(SWT.FILL, SWT.FILL, true, true); - newShell.setLayout(new GridLayout(1, false)); - newShell.setLayoutData(shellGD); newShell.setBounds(cLoc.x - center, cLoc.y - center, sideSize, sideSize); @@ -168,6 +166,21 @@ public class LocateCursorAction extends AbstractTool { // drawn. return null; } + + @Override + public int open() { + configureShell(shell); + shell.setVisible(true); + return getReturnCode(); + } + + @Override + public boolean close() { + shell.dispose(); + shell = null; + super.close(); + return true; + } } } diff --git a/cave/com.raytheon.uf.viz.monitor.ffmp/localization/bundles/maps/FFMP Basins/FFMP_Basins.xml b/cave/com.raytheon.uf.viz.monitor.ffmp/localization/bundles/maps/FFMP Basins/FFMP_Basins.xml deleted file mode 100644 index 03195af868..0000000000 --- a/cave/com.raytheon.uf.viz.monitor.ffmp/localization/bundles/maps/FFMP Basins/FFMP_Basins.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - PLAN_VIEW - - - - - - mapdata.ffmp_basins
- FFMP Small Stream Basins -
-
-
-
-
-
\ No newline at end of file diff --git a/cave/com.raytheon.uf.viz.monitor.ffmp/localization/bundles/maps/FFMP Basins/FFMP_Streams.xml b/cave/com.raytheon.uf.viz.monitor.ffmp/localization/bundles/maps/FFMP Basins/FFMP_Streams.xml deleted file mode 100644 index ad60bb1fc2..0000000000 --- a/cave/com.raytheon.uf.viz.monitor.ffmp/localization/bundles/maps/FFMP Basins/FFMP_Streams.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - PLAN_VIEW - - - - - - mapdata.ffmp_streams
- FFMP Small Stream Basin Links -
-
-
-
-
-
\ No newline at end of file diff --git a/cave/com.raytheon.viz.awipstools/localization/menus/tools/toolsindex.xml b/cave/com.raytheon.viz.awipstools/localization/menus/tools/toolsindex.xml index c8338af515..790f609746 100644 --- a/cave/com.raytheon.viz.awipstools/localization/menus/tools/toolsindex.xml +++ b/cave/com.raytheon.viz.awipstools/localization/menus/tools/toolsindex.xml @@ -31,7 +31,6 @@ - diff --git a/cave/com.raytheon.viz.gfe/localization/bundles/maps/Tropical WWA/Breakpoints.xml b/cave/com.raytheon.viz.gfe/localization/bundles/maps/Tropical WWA/Breakpoints.xml deleted file mode 100644 index 88e6184844..0000000000 --- a/cave/com.raytheon.viz.gfe/localization/bundles/maps/Tropical WWA/Breakpoints.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - PLAN_VIEW - - - - - - mapdata.breakpoints
- NHC Wind Breakpoints -
-
-
-
-
-
diff --git a/cave/com.raytheon.viz.gfe/localization/bundles/maps/Tropical WWA/nhadomain.xml b/cave/com.raytheon.viz.gfe/localization/bundles/maps/Tropical WWA/nhadomain.xml deleted file mode 100644 index 8eb7ecd8b6..0000000000 --- a/cave/com.raytheon.viz.gfe/localization/bundles/maps/Tropical WWA/nhadomain.xml +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - PLAN_VIEW - - - - - - mapdata.nhadomain
- Atlantic Tropical AoR -
-
-
-
-
-
diff --git a/cave/com.raytheon.viz.gfe/localization/bundles/maps/Tropical WWA/ssCommunicationPoints.xml b/cave/com.raytheon.viz.gfe/localization/bundles/maps/Tropical WWA/ssCommunicationPoints.xml deleted file mode 100644 index dbb8e96f38..0000000000 --- a/cave/com.raytheon.viz.gfe/localization/bundles/maps/Tropical WWA/ssCommunicationPoints.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - PLAN_VIEW - - - - - - mapdata.ss_communication_points
- Storm Surge Comm pts -
-
-
-
-
-
diff --git a/cave/com.raytheon.viz.gfe/src/com/raytheon/viz/gfe/core/internal/ParmManager.java b/cave/com.raytheon.viz.gfe/src/com/raytheon/viz/gfe/core/internal/ParmManager.java index 77d36ccd59..24b349fbe9 100644 --- a/cave/com.raytheon.viz.gfe/src/com/raytheon/viz/gfe/core/internal/ParmManager.java +++ b/cave/com.raytheon.viz.gfe/src/com/raytheon/viz/gfe/core/internal/ParmManager.java @@ -20,6 +20,7 @@ package com.raytheon.viz.gfe.core.internal; +import java.io.File; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; @@ -169,6 +170,8 @@ import com.raytheon.viz.gfe.types.MutableInteger; * Jan 04, 2018 7178 randerso Removed deallocateUnusedGrids. Code cleanup * Jan 24, 2018 7153 randerso Changes to allow new GFE config file to be * selected when perspective is re-opened. + * Feb 01, 2019 ---- mjames Use only BASE level for now/dev. + * Feb 04, 2019 ---- mjames Force sync of python files required by GFE perspective. * Feb 28, 2018 7116 randerso Force time range to be recalculated when * simulated time is changed. * Dec 11, 2018 7692 dgilling Add additional debug logging to track VCParm @@ -2898,23 +2901,47 @@ public class ParmManager private List initVirtualCalcParmDefinitions() { // retrieve the inventory from the ifpServer IPathManager pathMgr = PathManagerFactory.getPathManager(); - LocalizationContext[] contexts = new LocalizationContext[] { - pathMgr.getContext(LocalizationType.COMMON_STATIC, - LocalizationLevel.BASE), - pathMgr.getContext(LocalizationType.COMMON_STATIC, - LocalizationLevel.SITE), - pathMgr.getContext(LocalizationType.COMMON_STATIC, - LocalizationLevel.USER) }; Map modMap = new HashMap<>(); - for (LocalizationContext context : contexts) { - LocalizationFile[] files = pathMgr.listFiles(context, - FileUtil.join("gfe", "vcmodule"), new String[] { "py" }, + + LocalizationContext context = pathMgr.getContext( + LocalizationType.COMMON_STATIC, + LocalizationLevel.BASE); + + // vcmodule files + LocalizationFile[] files = pathMgr.listFiles(context, + "gfe/vcmodule", new String[] { "py" }, + false, true); + for (LocalizationFile lf : files) { + String modName = LocalizationUtil.extractName(lf.getPath()) + .replace(".py", ""); + modMap.put(modName, lf); + } + + String[] syncPaths = { + "python", + "python/time", + "python/dataaccess", + "gfe/vcmodule", + "gfe/vcmodule/utility", + "gfe/python", + "gfe/textproducts/templates/product", + "gfe/textproducts/templates", + "gfe/textproducts", + "vtec" + }; + + for (String path : syncPaths){ + LocalizationFile[] baseGfeFiles = pathMgr.listFiles(context, + path, new String[] {"py" }, false, true); - for (LocalizationFile lf : files) { - String modName = LocalizationUtil.extractName(lf.getPath()) - .replace(".py", ""); - modMap.put(modName, lf); + for (LocalizationFile lf : baseGfeFiles) { + try { + File pyFile = lf.getFile(true); + } catch (LocalizationException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } } } diff --git a/cave/com.raytheon.viz.hydro/localization/bundles/maps/sshpBasinOverlay.xml b/cave/com.raytheon.viz.hydro/localization/bundles/maps/sshpBasinOverlay.xml deleted file mode 100644 index 02fb07e2be..0000000000 --- a/cave/com.raytheon.viz.hydro/localization/bundles/maps/sshpBasinOverlay.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - mapdata.sshpbasins
- SSHP Basins -
-
-
-
-
-
\ No newline at end of file diff --git a/cave/com.raytheon.viz.lpi/localization/basemaps/NEXRAD.lpi b/cave/com.raytheon.viz.lpi/localization/basemaps/NEXRAD.lpi new file mode 100644 index 0000000000..eb4dfa9831 --- /dev/null +++ b/cave/com.raytheon.viz.lpi/localization/basemaps/NEXRAD.lpi @@ -0,0 +1,162 @@ + 13.4558 144.8111 14152.645 PGUA + 56.8528 -135.5292 7450.124 PACG + 24.5969 -81.7033 5298.969 KBYX + 19.0950 -155.5689 4513.304 PHWA + 32.4953 -114.6567 3142.994 KYUX + 46.0392 -67.8064 2687.522 KCBW + 26.3019 127.9097 2267.472 RODN + 47.5281 -97.3250 2219.321 KMVX + 64.5114 -165.2950 1806.983 PAEC + 27.7839 -97.5108 1615.021 KCRP + 45.7150 -122.9650 1510.339 KRTX + 37.5908 -83.3131 1452.663 KJKL + 37.2076 127.2856 1213.893 RKSG + 43.0661 -108.4773 1001.997 KRIW + 34.6342 -103.6189 957.308 KFDX + 37.2353 -93.4003 891.203 KSGF + 30.6794 -88.2397 870.110 KMOB + 65.0351 -147.5014 842.329 PAPD + 37.1552 -121.8984 839.304 KMUX + 44.9063 -84.7195 821.733 KAPX + 58.6794 -156.6294 792.520 PAKC + 42.1997 -75.9847 764.910 KBGM + 41.9579 -100.5762 658.870 KLNX + 34.7758 -76.8764 656.710 KMHX + 30.4846 -81.7019 626.038 KJAX + 59.4619 -146.3011 595.943 PAIH + 37.5910 -112.8622 589.567 KICX + 48.2064 -106.6247 589.303 KGGW + 43.4902 -116.2360 587.026 KCBX + 41.6117 -90.5808 543.397 KDVN + 32.4508 -93.8412 533.445 KSHV + 21.8939 -159.5525 518.534 PHKI + 37.7608 -99.9689 469.488 KDDC + 32.5383 -99.2542 466.523 KDYX + 47.6806 -117.6258 461.915 KOTX + 39.0622 -108.2138 437.104 KGJX + 40.4983 -124.2922 425.550 KBHX + 37.0683 -88.7719 410.514 KPAH + 41.3586 -85.7000 402.358 KIWX + 35.0978 -117.5608 394.555 KEYX + 46.8369 -92.2097 394.017 KDLH + 33.9486 -81.1186 389.005 KCAE + 31.8936 -110.6303 384.653 KEMX + 38.8256 -75.4400 377.936 KDOX + 60.7919 -161.8764 376.107 PABC + 31.8731 -106.6980 371.210 KEPZ + 41.1519 -104.8061 363.098 KCYS + 43.5878 -96.7289 362.462 KFSD + 35.3331 -97.2778 360.228 KTLX + 33.8969 -88.3292 354.857 KGWX + 42.0180 -80.1570 344.687 EERI + 44.5111 -73.1664 343.381 KCXX + 48.3720 -124.6760 322.567 FQKW + 29.2725 -100.2803 317.112 KDFX + 60.7259 -151.3515 313.128 PAHG + 40.7397 -116.8028 309.343 KLRX + 38.4594 -104.1814 304.060 KPUX + 34.5743 -111.1984 302.677 KFSX + 44.1247 -102.8300 302.579 KUDX + 45.8538 -108.6068 301.591 KBLX + 40.8655 -72.8639 299.072 KOKX + 35.1497 -106.8239 297.820 KABX + 43.1056 -112.6861 290.381 KSFX + 34.8364 -92.2619 285.659 KLZK + 46.5311 -87.5483 284.301 KMQT + 31.9435 -102.1892 283.794 KMAF + 47.0411 -113.9861 283.144 KMSX + 28.1131 -80.6544 282.536 KMLB + 48.3925 -100.8644 280.451 KMBX + 32.5367 -85.7897 280.449 KMXX + 37.0242 -80.2742 276.000 KFCX + 47.1158 -124.1069 265.279 KLGX + 30.7217 -97.3828 268.638 KGRK + 30.1253 -93.2159 265.279 KLCH + 41.7311 -93.7229 261.262 KDMX + 21.1328 -157.1803 259.538 PHMO + 40.3208 -98.4419 255.055 KUEX + 30.3975 -84.3289 251.984 KTLH + 35.7011 -114.8914 251.028 KESX + 39.7541 -119.4620 250.837 KRGX + 43.8228 -91.1911 250.826 KARX + 38.6989 -90.6828 246.930 KLSX + 36.9839 -77.0075 245.774 KAKQ + 45.4558 -98.4131 244.978 KABR + 43.8913 -70.2564 241.938 KGYX + 45.6906 -118.8529 240.215 KPDT + 38.9969 -96.2325 239.622 KTWX + 32.2800 -89.9844 236.815 KDGX + 34.9306 -86.0836 235.848 KHTX + 39.3669 -101.7003 233.524 KGLD + 44.4986 -88.1111 230.181 KGRB + 32.6750 -83.3511 228.901 KJGX + 32.9189 -117.0419 228.044 KNKX + 36.3142 -119.6321 222.514 KHNX + 44.8489 -93.5655 220.586 KMPX + 47.6790 -103.7810 219.737 FQWA + 42.0811 -122.7174 219.701 KMAX + 40.9231 -78.0039 216.759 KCCX + 35.3447 -89.8733 214.158 KNQA + 25.9156 -97.4186 207.914 KBRO + 41.3203 -96.3668 206.943 KOAX + 47.4597 -111.3853 201.705 KTFX + 35.2904 -94.3619 197.650 KSRX + 33.6541 -101.8142 193.381 KLBB + 40.1505 -89.3368 193.192 KILX + 34.3622 -98.9767 188.884 KFDR + 39.4961 -121.6317 187.993 KBBX + 46.7708 -100.7603 180.466 KBIS + 34.8386 -120.3979 178.068 KVBX + 35.2333 -101.7093 175.835 KAMA + 43.7558 -75.6800 174.769 KTYX + 36.7408 -98.1275 174.151 KVNX + 31.3711 -100.4922 172.741 KSJT + 38.8102 -94.2645 171.526 KEAX + 42.8939 -85.5449 171.170 KGRR + 33.9892 -78.4292 167.169 KLTX + 42.5866 -74.0641 163.455 KENX + 48.1946 -122.4957 162.501 KATX + 38.2603 -87.7245 161.427 KVWX + 38.3111 -81.7228 160.777 KRLX + 36.1683 -83.4019 158.347 KMRX + 37.9753 -85.9439 156.939 KLVX + 42.9486 -78.7369 155.756 KBUF + 35.9242 126.6222 154.492 RKJK + 30.5650 -85.9217 153.740 KEVX + 39.9469 -74.4107 152.848 KDIX + 39.7866 -104.5458 150.864 KFTG + 33.0770 -106.1200 144.407 KHDX + 32.6555 -81.0422 143.939 KCLX + 36.7367 -87.2850 137.233 KHPX + 41.6044 -88.0844 135.073 KLOT + 30.8903 -83.0018 132.212 KVAX + 34.8833 -82.2198 131.459 KGSP + 29.7041 -98.0286 129.031 KEWX + 34.4117 -119.1786 121.226 KVTX + 37.6544 -97.4431 118.280 KICT + 31.1553 -92.9758 116.793 KPOE + 20.1253 -155.7778 116.617 PHKM + 33.1719 -86.7697 115.603 KBMX + 33.8177 -117.6360 114.140 KSOX + 38.5011 -121.6778 110.694 KDAX + 31.4606 -85.4594 108.879 KEOX + 29.4719 -95.0789 81.036 KHGX + 30.5239 -88.9847 73.358 KBIX + 39.4203 -83.8217 71.685 KILN + 30.3367 -89.8254 65.618 KLIX + 42.7000 -83.4717 65.580 KDTX + 32.5728 -97.3031 65.491 KFWS + 25.6106 -80.4131 59.593 KAMX + 41.2628 -112.4478 54.429 KMTX + 33.2892 -111.6700 48.070 KIWA + 42.9678 -88.5506 44.305 KMKX + 33.3633 -84.5658 42.285 KFFC + 35.6653 -78.4900 41.825 KRAX + 36.2472 -86.5625 31.022 KOHX + 41.9558 -71.1369 28.083 KBOX + 36.1750 -95.5641 26.289 KINX + 40.5317 -80.2179 22.915 KPBZ + 27.7053 -82.4019 20.645 KTBW + 41.4131 -81.8600 18.436 KCLE + 39.7075 -86.2803 15.458 KIND + 38.9761 -77.4875 12.520 KLWX diff --git a/cave/com.raytheon.viz.lpi/localization/basemaps/TDWR.lpi b/cave/com.raytheon.viz.lpi/localization/basemaps/TDWR.lpi new file mode 100644 index 0000000000..1a3d34057b --- /dev/null +++ b/cave/com.raytheon.viz.lpi/localization/basemaps/TDWR.lpi @@ -0,0 +1,47 @@ + 18.1157 -66.0782 1769.318 TJUA + 35.3930 -97.6280 1769.318 TPSF + 40.0060 -82.7150 273.469 TCMH + 40.9670 -111.9300 245.821 TSLC + 33.0650 -96.9180 226.030 TDFW + 30.0220 -90.4030 220.036 TMSY + 26.1430 -80.3440 219.523 TFLL + 42.1580 -70.9330 200.395 TBOS + 42.1110 -83.5150 199.638 TDTW + 30.0650 -95.5670 188.815 TIAH + 42.8190 -88.0460 186.807 TMKE + 27.8600 -82.5180 185.109 TTPA + 39.0840 -77.5290 182.873 TIAD + 38.8980 -84.5800 182.637 TCVG + 36.0020 -78.6970 181.040 TRDU + 39.6370 -86.4360 179.636 TIDS + 40.5010 -80.4860 170.883 TPIT + 33.4210 -112.1630 156.028 TPHX + 35.3370 -80.8850 155.830 TCLT + 41.2900 -82.0080 154.707 TLVE + 36.0710 -95.8270 154.550 TTUL + 33.6470 -84.2620 137.350 TATL + 40.0220 -84.1230 119.903 TDAY + 35.9800 -86.6620 100.940 TBNA + 39.4980 -94.7420 86.844 TMCI + 40.5890 -73.8810 84.352 TJFK + 39.0900 -76.6300 77.582 TBWI + 28.3440 -81.3260 70.617 TMCO + 26.6880 -80.2730 61.003 TPBI + 39.9490 -75.0690 56.108 TPHL + 34.8960 -89.9930 51.059 TMEM + 36.1440 -115.0070 50.329 TLAS + 44.8710 -92.9330 49.906 TMSP + 38.6950 -76.8450 47.694 TADW + 18.4740 -66.1790 41.232 TSJU + 40.5930 -74.2700 32.844 TEWR + 38.0460 -85.6100 30.286 TSDF + 41.6510 -87.7300 29.903 TMDW + 35.2760 -97.5100 22.003 TOKC + 38.8050 -90.4890 20.531 TSTL + 41.7970 -87.8580 19.398 TORD + 25.7580 -80.4910 18.151 TMIA + 29.5160 -95.2420 16.526 THOU + 37.5070 -97.4370 16.396 TICH + 32.9260 -96.9680 16.142 TDAL + 38.7590 -76.9620 12.393 TDCA + 39.7280 -104.5260 6.731 TDEN \ No newline at end of file diff --git a/cave/com.raytheon.viz.lpi/localization/basemaps/fireWxSta.lpi b/cave/com.raytheon.viz.lpi/localization/basemaps/fireWxSta.lpi deleted file mode 100755 index 9d89f7271e..0000000000 --- a/cave/com.raytheon.viz.lpi/localization/basemaps/fireWxSta.lpi +++ /dev/null @@ -1,13 +0,0 @@ - 40.5900 -73.6700 36007.371 LONG-BEACH-FW - 44.4686 -71.1856 799.860 BERLIN-FW - 42.3613 -73.5979 354.153 CHATHUM-FW - 41.4901 -71.3203 258.095 NEWPORT-FW - 43.1978 -70.8742 255.189 dover-fw - 42.3166 -71.0666 166.806 BOSTON-FW - 41.8220 -71.4197 66.869 PROVIDENCE-FW - 42.5000 -71.5833 55.938 HARVARD-FW - 43.2081 -71.5381 53.833 CONCORD-FW - 41.6778 -71.2743 31.213 BRISTOL-FW - 42.2833 -71.3500 24.283 natick-fw - 42.4000 -71.1666 18.537 BELMONT-FW - 42.4187 -71.6853 18.293 clinton-fw diff --git a/cave/com.raytheon.viz.lpi/localization/basemaps/spotters.lpi b/cave/com.raytheon.viz.lpi/localization/basemaps/spotters.lpi deleted file mode 100755 index d9c6ffd9c0..0000000000 --- a/cave/com.raytheon.viz.lpi/localization/basemaps/spotters.lpi +++ /dev/null @@ -1,698 +0,0 @@ - 40.5760 -106.4930 29027.590 97234253-JA4 - 43.7500 -70.0000 3185.264 33333335-KBP - 41.1500 -71.6000 460.442 33333334-BLK - 40.6393 -102.0515 374.923 98544156-P14 - 38.5205 -103.7030 370.743 74465264-53 - 39.1603 -105.7944 209.219 38362267-P9 - 40.9008 -104.2978 191.536 98952302-W66 - 39.7431 -103.2205 176.101 93832484-16 - 41.2800 -70.0000 159.486 33333333-NTK - 39.8880 -105.7670 117.318 97261502-GR5 - 39.2006 -104.0765 114.271 75412875-47 - 40.0583 -104.2387 100.629 38495357-W55 - 40.9037 -103.1526 96.231 93342421-62 - 40.4767 -104.8937 84.553 96862067-20 - 38.9748 -103.2180 82.528 77432212-L26 - 40.7923 -105.5966 78.672 98812949-L15 - 39.4330 -105.1170 72.519 39735735-D5 - 40.1823 -103.1535 71.083 93452765-17 - 39.6368 -104.3982 69.254 36443292-AR2 - 40.6110 -103.6008 60.525 97352281-W59 - 40.2610 -105.8340 60.514 96273471-GR4 - 40.9267 -106.4950 56.545 97234000-JA6 - 39.4018 -103.5668 54.526 77632280-L22 - 39.7637 -105.0731 53.415 32349695-J18 - 40.9365 -102.5208 53.387 94638828-42 - 39.4540 -106.0040 50.985 94537106-S6 - 40.5925 -103.0058 50.305 95224139-L12 - 39.8702 -103.7402 48.853 94325585-AD2 - 40.8874 -104.8675 47.917 98972434-23 - 39.1023 -104.6000 47.762 74952598-41 - 38.9442 -103.7588 47.021 75412858-E21 - 40.4422 -102.4512 46.675 98543149-15 - 38.6416 -103.2235 46.060 74465379-L30 - 40.3255 -104.4163 45.728 93528802-W53 - 40.0490 -105.3370 44.588 34497569-B17 - 40.8907 -103.6510 41.943 94375454-W1 - 40.5012 -105.9652 40.495 97238366-JA8 - 40.2325 -103.9047 39.875 98675080-M33 - 40.4330 -105.3410 38.419 96671341-L7 - 39.9255 -102.9345 38.331 92463602-W1 - 39.6776 -105.4754 36.941 CJOHNSON-C9 - 40.4755 -104.0875 36.796 96563676-M11 - 39.3010 -103.1892 36.264 77683248-L20 - 39.4172 -104.3432 35.752 36212022-76 - 40.0715 -103.5672 35.659 98422002-116 - 39.1405 -103.4885 35.433 77432473-L34 - 40.4232 -103.4077 34.377 95221829-W44 - 39.6382 -102.8738 34.063 93574379-9 - 39.4408 -103.9533 33.686 77752608-E1 - 39.8697 -104.4033 33.427 36443049-AD14 - 40.6340 -104.3240 32.507 96563436-33 - 40.6715 -102.6558 32.255 97746150-P22 - 40.8905 -102.1503 31.922 94742337-S1 - 39.6168 -103.5020 31.591 97632218-W45 - 40.2585 -102.8213 30.835 98482609-12 - 40.2188 -104.7160 30.597 97850145-W52 - 39.5208 -103.1526 30.572 77683419-L17 - 38.8345 -103.4785 30.010 74465416-L49 - 40.7253 -106.2807 29.681 97233488-JA2 - 40.7703 -104.5573 29.585 98342190-37 - 40.4343 -103.7505 29.065 98677037-M7 - 39.4260 -105.4530 28.874 38386568-P8 - 39.5222 -104.6568 28.758 38413575-39 - 38.8833 -104.0708 28.706 74783745-58 - 40.7610 -103.4178 28.654 95228321-L36 - 39.2743 -104.5596 27.930 36464225-E17 - 39.2970 -104.9230 27.698 36813904-D1 - 40.3605 -103.0838 27.589 93452070-W36 - 40.2440 -105.5200 26.847 37472955-B1 - 39.8590 -105.4610 26.614 35820142-G8 - 39.7395 -104.1540 26.600 38225382-4 - 39.9276 -105.0785 26.440 34690841-B15 - 40.7185 -102.3573 26.360 98542602-P15 - 40.2907 -103.6033 26.298 98422688-M32 - 38.6886 -103.6052 25.980 74465373-35 - 38.7655 -103.8688 25.854 74465251-L55 - 40.7882 -102.9386 25.826 95224009-L15 - 39.2855 -103.8228 25.758 77752790-E12 - 40.4503 -102.8355 25.606 92653875-L9 - 39.6110 -105.0010 25.452 37987554-A11 - 40.0015 -104.5657 25.441 35364256-W58 - 40.0010 -103.9058 25.392 94325578-AD15 - 39.5977 -105.8832 25.205 94689445-S5 - 40.8418 -103.9358 25.205 98953352-W3 - 40.4876 -102.1185 25.186 98542779-20 - 39.7443 -104.6066 24.951 33600732-17 - 40.3498 -105.0628 24.847 96634376-L13 - 40.5972 -103.9166 24.337 94375322-W61 - 39.8976 -103.4605 24.271 93450358-2W - 40.2025 -105.2483 24.117 34493621-B7 - 40.5448 -104.6396 24.038 94543680-W72 - 40.0850 -104.8180 23.181 38574973-1W - 40.9930 -103.3652 22.892 93342318-L50 - 38.5352 -103.4426 22.775 74465280-L5 - 40.4095 -105.6055 22.660 95861399-L8 - 40.9185 -102.8408 22.620 98863315-L35 - 40.2908 -104.1443 22.419 96452213-M26 - 39.9037 -103.1932 22.359 93456761-40 - 39.5400 -105.3080 22.056 38382268-J21 - 40.7036 -104.7835 21.807 98972330-25 - 39.0878 -103.9380 21.784 75412885-E11 - 39.8005 -102.8370 21.753 93574333-W3 - 40.9728 -103.8740 21.746 94375444-W41 - 39.2006 -104.3235 21.282 73473120-E3 - 39.7402 -103.7253 21.003 33862293-6 - 39.2700 -103.4755 20.916 77632212-L28 - 40.4330 -106.1780 20.916 97238393-JA3 - 39.8992 -104.0572 20.858 38225216-AD7 - 40.6568 -103.2178 20.631 95221202-81 - 40.5517 -103.3548 20.554 95226819-L56 - 39.6335 -104.0238 20.433 37694501-AR3 - 40.1335 -102.8505 20.328 98482948-5 - 38.6070 -103.8716 20.239 74465376-L3 - 40.0745 -103.3307 20.127 93456720-W16 - 40.7700 -106.5005 20.042 97234588-JA7 - 40.7896 -102.5536 20.019 94635721-39 - 40.4208 -104.6335 20.007 93569141-26 - 40.1256 -104.0178 19.717 94325634-103 - 40.7695 -102.1260 19.590 98544373-S3 - 40.5765 -105.0232 19.560 94849463-L5 - 40.1255 -104.4265 19.350 37324313-W35 - 40.5892 -102.2583 19.338 98543203-45 - 39.4408 -103.3563 19.154 77683263-L15 - 39.0212 -103.4210 19.046 77432766-31 - 39.1896 -103.1178 18.960 77654818-L32 - 40.7393 -103.8412 18.358 94375718-W63 - 38.8343 -103.7003 18.332 74465246-L7 - 39.7844 -103.4192 18.220 93862246-W30 - 40.1330 -105.5170 17.904 37472516-B13 - 40.8370 -102.3348 17.851 94635330-S12 - 40.0918 -103.7891 17.684 98672019-M3 - 38.7188 -103.3682 17.653 74465273-L57 - 40.5882 -102.5262 17.240 97747157-P7 - 40.9082 -104.5018 17.192 98952307-32 - 40.3583 -103.9873 17.168 96452316-M20 - 40.6120 -104.1265 17.055 96563648-W62 - 38.8698 -103.2012 16.989 77432756-L29 - 40.7870 -103.6255 16.860 97352536-W38 - 40.2203 -103.3385 16.839 93452141-26 - 39.6703 -105.1630 16.829 39868968-J34 - 39.3618 -104.6633 16.750 36464549-E16 - 40.7548 -104.0426 16.645 96563513-W7 - 40.5615 -102.8180 16.595 92654895-L46 - 38.9355 -103.5240 16.454 74465314-L8 - 40.5208 -104.4513 16.404 96563584-W16 - 39.7423 -103.0290 16.371 93832268-5W - 40.0717 -103.1386 16.348 93456403-4 - 40.9858 -104.2008 15.913 98952486-W6 - 39.6062 -103.0675 15.618 93832324-W34 - 40.5068 -102.6226 15.515 97747339-P10 - 40.6106 -104.8323 15.514 98342706-W44 - 40.8072 -104.7703 15.366 98972210-24 - 40.7128 -104.2210 15.357 96563629-W50 - 39.3860 -105.2720 15.243 38384204-J12 - 40.7563 -103.1076 15.160 95228031-78 - 40.6746 -102.8355 15.159 92653365-79 - 39.3862 -103.8098 15.158 77752405-E5 - 39.6512 -103.2545 15.114 93832264-3W - 39.2940 -104.3188 15.065 36212001-E19 - 40.4988 -102.3005 15.050 98543357-38 - 39.7416 -104.3293 14.993 36229444-6 - 40.6905 -103.6893 14.831 97352416-39 - 39.8918 -105.2380 14.715 39662444-J35 - 39.7960 -105.5870 14.687 35674009-C4 - 40.9680 -102.2423 14.607 94742164-40 - 40.0602 -105.1688 14.409 35302551-B8 - 39.7090 -105.3170 14.404 35267309-J20 - 39.3845 -104.9491 14.310 36883230-D7 - 40.5103 -103.0655 14.210 95226362-L54 - 40.8695 -104.1405 14.173 98952328-W5 - 39.9880 -105.4570 14.085 32587058-B19 - 38.7965 -104.0548 14.070 74785155-L48 - 39.6330 -106.0320 14.065 94684839-S8 - 38.8523 -103.8690 13.997 74465412-L11 - 39.6550 -104.1915 13.987 38225858-AR1 - 39.9792 -104.3017 13.815 36229234-AD18 - 40.7952 -103.2678 13.797 95228333-75 - 39.5012 -104.3670 13.710 36212554-73 - 39.0835 -103.6062 13.706 77432765-50 - 40.9082 -104.7098 13.643 98972203-38 - 40.0413 -104.4092 13.606 37324417-W29 - 40.4290 -102.9886 13.427 92463637-W17 - 40.3396 -104.6012 13.398 92846221-31 - 40.9430 -103.4920 13.370 95228314-L28 - 40.9892 -103.2063 13.346 93342420-L21 - 39.2028 -103.8226 13.337 77752436-49 - 39.9420 -103.5925 13.330 93862349-W37 - 40.8056 -104.2376 13.123 98952368-W25 - 39.5023 -104.0523 13.075 77642343-60 - 39.8420 -103.3122 13.049 93456457-7W - 40.0013 -103.7526 13.047 94325512-M2 - 40.2818 -103.1150 12.978 93452186-W23 - 39.3860 -104.2043 12.973 36212171-74 - 40.3382 -102.8425 12.964 98482720-1W - 40.3342 -103.8422 12.900 98679165-M5 - 39.7792 -104.4708 12.864 36443839-AD11 - 39.5195 -103.3023 12.842 77683242-L19 - 40.8542 -103.7860 12.753 94375438-W2 - 39.6810 -105.9120 12.749 35692698-C1 - 39.2882 -103.9708 12.744 75412132-6E - 40.2175 -104.0893 12.723 94836298-104 - 40.6607 -103.4850 12.646 92284191-L48 - 40.2955 -102.9670 12.643 92463613-W25 - 38.7638 -103.5718 12.472 74465318-L51 - 40.1255 -104.5718 12.354 35364292-W22 - 38.5970 -103.7060 12.339 74465372-L59 - 39.7220 -103.5022 12.325 93862282-1 - 40.8733 -102.9568 12.215 95226984-L17 - 40.3470 -105.2050 12.056 95930120-L16 - 39.1588 -104.1926 12.045 75412690-50 - 40.1663 -103.7923 12.018 98676088-M38 - 40.5208 -104.3098 11.960 96563686-W15 - 40.1954 -105.1095 11.861 37726561-B12 - 39.4580 -104.5909 11.835 36464708-42 - 40.8338 -103.1093 11.828 95228758-L33 - 39.8108 -103.6590 11.824 93862386-8W - 40.0553 -104.0563 11.791 94325237-M16 - 39.6360 -105.3240 11.778 36740539-J2 - 38.9373 -103.3883 11.740 77432764-L41 - 40.9566 -102.3876 11.682 94635656-43 - 39.9996 -105.0680 11.634 36667249-B14 - 40.3530 -105.5230 11.571 85861878-L17 - 40.5755 -103.2260 11.550 95210688-74 - 40.8522 -102.4692 11.542 94638836-S13 - 40.2193 -103.5966 11.528 98424143-89 - 39.6597 -103.3875 11.461 93832283-28 - 40.2523 -103.7166 11.436 98676263-106 - 40.5082 -103.4608 11.392 95225330-L62 - 39.5210 -106.0410 11.320 JWHITE-S7 - 39.9572 -104.1295 11.218 94325653-AD21 - 40.4650 -106.2940 11.195 97234330-JA5 - 40.6078 -102.7205 11.160 97747188-L3 - 38.7203 -103.7715 11.154 74465473-L6 - 39.8597 -102.9735 11.141 92463471-39 - 40.5708 -102.3985 11.115 98542676-P28 - 40.6507 -102.3337 11.088 98542403-36 - 39.6610 -105.6010 11.042 35672244-C8 - 39.1978 -104.4513 11.018 36483710-51 - 39.4025 -103.2502 10.990 77683252-L25 - 39.3056 -103.5843 10.974 77632251-L23 - 39.9095 -103.3283 10.967 93452502-W42 - 40.2725 -103.2426 10.934 93452119-32 - 40.5105 -104.7517 10.930 94542020-W54 - 39.4830 -105.3850 10.819 38384307-J29 - 39.3152 -104.4595 10.814 36212772-52 - 40.6120 -103.7922 10.766 94375479-W10 - 39.1913 -104.5756 10.755 36489899-25 - 39.8782 -104.5275 10.695 36443522-AD8 - 40.0876 -103.0168 10.688 92463628-22 - 40.1166 -104.1785 10.687 94837802-W68 - 40.0000 -105.2550 10.616 34406216-B21 - 40.8558 -102.8032 10.570 98862833-63 - 39.0920 -103.4062 10.551 77432215-L36 - 40.5018 -103.2758 10.438 95222822-L34 - 40.2763 -104.6590 10.423 92846626-W65 - 40.5365 -103.8745 10.420 94375480-W11 - 39.5795 -104.3440 10.364 36224651-AR9 - 40.9170 -103.9350 10.347 94375315-W49 - 39.4549 -104.7099 10.225 38414574-D6 - 39.6973 -104.5277 10.184 36444042-AR14 - 39.9180 -105.5010 10.156 32583326-G5 - 39.5864 -102.9387 10.065 93574246-W4 - 40.1710 -103.9245 10.056 98679779-M36 - 39.9135 -103.8248 10.045 94325630-AD3 - 40.1643 -102.9530 9.998 92463735-42 - 38.5965 -103.4260 9.994 74465397-L53 - 40.9172 -102.6333 9.981 94635730-S15 - 39.2815 -104.0857 9.944 75412862-71 - 39.1390 -104.3233 9.934 73472795-E9 - 40.3777 -104.0975 9.854 XXXXXXXX-M37 - 40.6295 -102.1657 9.790 98542436-P21 - 39.4583 -103.5253 9.789 77632328-L38 - 40.7890 -102.2362 9.759 94742166-S4 - 38.9482 -103.6462 9.757 77432291-L46 - 40.0203 -104.6742 9.748 35364487-W32 - 40.4906 -103.8000 9.722 88675041-90 - 39.0288 -103.9603 9.704 75412070-3E - 40.7048 -102.2456 9.646 98544100-P26 - 39.5810 -104.4558 9.585 36443363-4 - 40.6518 -103.0048 9.564 95223764-L11 - 40.2607 -104.0125 9.527 94837467-M21 - 40.3940 -105.4410 9.519 95863840-L3 - 38.9526 -103.8677 9.514 75412943-57 - 40.5807 -104.7275 9.453 98341577-3W - 40.8908 -102.3763 9.312 94638831-25 - 39.0006 -103.7373 9.283 77752539-29 - 39.2620 -105.0090 9.262 36813228-D3 - 39.5658 -103.2180 9.151 77683245-L54 - 40.3945 -102.8560 9.143 92654691-W27 - 40.3738 -103.4593 9.095 98473445-96 - 40.6170 -103.2990 9.080 95222673-67 - 39.7088 -104.4157 9.063 36443197-AR7 - 40.1528 -105.2022 8.966 37768665-B6 - 39.5317 -104.7593 8.936 38414062-D4 - 39.7930 -103.1755 8.934 93832388-15 - 38.6975 -103.4626 8.889 74465226-L50 - 40.5680 -102.6230 8.830 97747291-37 - 40.8500 -104.0426 8.822 98953325-W4 - 40.0710 -104.5723 8.789 35364608-W21 - 39.9090 -105.3350 8.764 36421724-J30 - 39.4178 -104.1218 8.732 77642845-46 - 40.5850 -102.1060 8.713 98542122-P1 - 40.7753 -103.5172 8.676 92284171-L58 - 38.6430 -103.7570 8.641 74465289-L9 - 40.2852 -103.8865 8.635 98675179-M22 - 40.8672 -102.2420 8.622 94742392-S5 - 40.5678 -104.1842 8.618 96563442-W14 - 40.7400 -103.7262 8.567 97352561-40 - 40.3842 -103.8750 8.532 96452303-91 - 40.9736 -103.1092 8.518 93342371-76 - 40.5670 -104.3575 8.489 96563648-W17 - 40.7026 -102.7373 8.471 97747302-L1 - 40.9335 -103.8072 8.469 94375373-W40 - 40.2068 -102.8078 8.407 98482930-38 - 39.3017 -103.3985 8.379 77632405-L43 - 40.3989 -105.0921 8.325 96679456-L4 - 40.1215 -103.5902 8.295 98422962-M1 - 40.7202 -102.4552 8.254 97746264-49 - 40.5506 -104.9396 8.245 96862634-28 - 40.0370 -103.2647 8.239 93456703-W15 - 40.7685 -102.3765 8.206 98542605-S6 - 39.9562 -104.3878 8.204 36443375-AD24 - 40.3852 -104.5580 8.190 93531863-17 - 40.5860 -103.6852 8.189 97352261-W9 - 40.2025 -104.6258 8.118 35360435-W24 - 38.7895 -103.6578 8.107 74465252-L40 - 40.7148 -103.1615 8.107 95224518-L42 - 39.8530 -103.4175 8.066 93452162-W11 - 39.2848 -103.2773 8.028 77683324-L45 - 40.1906 -103.2466 8.014 93452182-14W - 40.0012 -104.0860 7.995 94325652-AD13 - 40.6730 -102.1218 7.977 98544195-P2 - 40.5355 -103.5395 7.968 92284426-L27 - 39.8927 -103.5892 7.955 93862271-31 - 40.0263 -104.1683 7.925 38495209-W31 - 40.1092 -104.3388 7.921 38495215-W69 - 40.5268 -102.2248 7.879 98542773-P18 - 40.3954 -105.1846 7.848 96630456-L11 - 39.9563 -104.0375 7.843 36443427-AD9 - 40.0257 -103.5952 7.763 98424091-M17 - 39.3556 -103.5420 7.746 77632236-L21 - 38.9910 -103.6056 7.746 77432210-L13 - 38.9055 -103.6052 7.743 74465494-L39 - 40.3408 -104.6925 7.742 92845387-16 - 40.0372 -103.8120 7.689 94325607-M25 - 40.5528 -104.8018 7.689 94542152-W64 - 38.8198 -103.8048 7.645 74465208-L1 - 40.0445 -103.9693 7.611 94325596-M18 - 38.6586 -103.5375 7.607 74465428-43 - 39.7375 -103.4096 7.606 93832452-W12 - 39.3695 -104.5763 7.572 36464093-37 - 39.5850 -105.2820 7.563 36744034-J28 - 40.6082 -102.8183 7.530 92653981-L5 - 40.4358 -103.0765 7.513 95226372-L32 - 39.3562 -103.2432 7.488 77683236-L16 - 39.2312 -104.5107 7.453 36483744-5E - 39.5900 -103.5725 7.432 77752786-W9 - 40.8143 -102.4205 7.320 94635627-S11 - 39.3250 -103.4708 7.259 77632343-L33 - 40.9915 -102.1696 7.227 94742309-S2 - 40.6390 -103.4100 7.223 95229409-L60 - 40.2327 -103.7930 7.212 98677376-M13 - 39.6670 -105.2470 7.204 36974159-J13 - 40.5388 -102.3376 7.139 98542769-48 - 40.4646 -104.6213 7.130 93631665-W46 - 40.9738 -103.2856 7.114 93342314-L22 - 39.5340 -105.2260 7.113 36971293-J25 - 40.5223 -102.8556 7.097 92653932-L8 - 38.9703 -103.4743 7.074 77432247-L12 - 38.7918 -103.4603 7.061 74465287-1L - 38.9355 -103.2536 7.057 77432697-28 - 40.5327 -103.7776 7.047 94375354-W42 - 40.0952 -104.1068 7.017 94325629-M30 - 40.4530 -102.5315 6.997 97746215-1P - 39.8290 -105.5210 6.994 35823536-G7 - 40.8168 -103.3400 6.992 95228243-L23 - 40.1760 -105.5260 6.987 37472543-B22 - 40.6542 -103.7343 6.976 94375464-W51 - 39.3845 -105.4762 6.954 38385466-P4 - 39.4728 -103.3023 6.948 77683407-L18 - 40.3304 -104.1120 6.939 96452376-M23 - 40.4882 -103.3530 6.893 95227222-65 - 40.7605 -103.2198 6.889 95229458-L43 - 40.5960 -103.5247 6.861 92284321-L55 - 39.8710 -103.8267 6.857 94325515-AD16 - 39.7563 -103.1048 6.850 93832257-W28 - 40.6532 -103.6003 6.805 97352616-W8 - 39.7216 -103.2888 6.804 93832444-W13 - 40.0401 -104.4891 6.802 37324626-W73 - 39.9272 -103.5172 6.788 93862281-6W - 40.7013 -103.5038 6.734 92284181-L2 - 40.5745 -102.9338 6.720 92654011-L10 - 39.5990 -105.3610 6.718 36740698-J4 - 40.5376 -102.5683 6.705 97747175-P9 - 40.6082 -102.6052 6.668 97746090-34 - 40.1422 -103.1343 6.662 93452259-36 - 40.5675 -103.9713 6.647 94375331-W13 - 39.9692 -103.8563 6.643 94325674-AD12 - 40.8335 -103.1882 6.638 95220336-L19 - 40.4583 -102.9123 6.615 92653913-L30 - 39.3205 -104.3763 6.553 36212137-E13 - 40.2018 -103.8430 6.543 98679131-86 - 40.4020 -102.7803 6.533 98482430-W39 - 39.3657 -103.7446 6.507 77752711-E6 - 40.7488 -102.2285 6.507 98543065-S19 - 40.1775 -103.0780 6.456 93456761-41 - 40.0120 -104.2597 6.372 38495368-W18 - 39.8980 -104.4627 6.366 36443081-AD20 - 40.0074 -105.1408 6.342 36653113-B10 - 40.5350 -103.2363 6.321 95221914-L31 - 40.7592 -102.9886 6.313 95228020-L14 - 40.7692 -104.7535 6.302 98972220-W47 - 40.7352 -102.5245 6.297 97747266-P12 - 39.9405 -103.2172 6.269 93456476-25 - 39.8280 -103.7245 6.243 93862278-AD4 - 39.1548 -104.5523 6.232 36483631-59 - 40.9057 -102.2422 6.208 94743376-28 - 39.4510 -104.0862 6.157 77642851-E18 - 39.5668 -103.2896 6.138 77683223-W10 - 38.6755 -103.7203 6.133 74465384-L4 - 38.7265 -103.6082 6.117 74465426-3L - 39.2003 -103.1855 6.075 77683288-L56 - 39.4035 -104.6055 6.046 36464802-19 - 40.6067 -102.3790 6.037 98543572-P27 - 39.8573 -103.6118 6.027 93862256-W24 - 40.2665 -102.8902 5.977 98483515-W2 - 39.8072 -103.5895 5.963 93862284-3 - 40.6058 -103.1860 5.952 95223127-L44 - 39.2375 -104.3242 5.951 73472209-E4 - 39.9340 -105.4380 5.926 36423459-B3 - 39.7650 -105.6250 5.918 35672321-C3 - 40.0555 -104.1262 5.907 94325524-M4 - 40.0903 -104.4088 5.881 37320723-W27 - 40.0555 -103.0490 5.871 93452144-W31 - 39.9330 -105.2830 5.847 34945005-B18 - 39.7785 -103.0283 5.839 93832303-4W - 40.3125 -104.7353 5.806 92846468-2W - 39.5823 -103.0052 5.741 93574334-W32 - 39.4292 -103.4871 5.720 77632331-44 - 40.9583 -103.1703 5.703 93342368-L20 - 40.6762 -103.4243 5.702 95222959-L24 - 39.9137 -103.3945 5.684 93456465-W5 - 40.7838 -104.1850 5.666 98952332-34 - 40.5376 -103.0238 5.655 95225480-L13 - 39.8950 -105.4517 5.650 35825380-G2 - 40.3250 -103.5905 5.638 98424098-98 - 40.2620 -104.5987 5.627 92847910-W45 - 40.0400 -104.6196 5.609 35360137-W33 - 40.8198 -102.2060 5.609 94742131-S10 - 39.7100 -105.3820 5.567 36748530-J24 - 39.5710 -105.2230 5.565 36974783-J14 - 38.7583 -103.4740 5.534 74465296-34 - 39.4823 -105.3208 5.514 38384393-J7 - 40.4242 -102.9128 5.500 92463690-W19 - 40.3413 -103.9313 5.485 96452251-M19 - 40.2739 -103.8257 5.471 98676071-111 - 40.3180 -105.0857 5.462 96794570-L10 - 40.7900 -103.1138 5.457 95228032-L41 - 40.5815 -103.8600 5.411 94375363-W70 - 40.2421 -103.6433 5.405 98425610-83 - 40.8482 -102.9990 5.400 95228204-L38 - 40.8912 -102.8038 5.369 98863863-L16 - 40.8568 -103.7225 5.356 94375416-W37 - 39.7538 -102.9705 5.344 93574312-24 - 40.0336 -105.2819 5.338 34422353-B5 - 39.6340 -105.2620 5.324 36974140-J6 - 39.8693 -103.4925 5.322 93452432-W6 - 40.2080 -105.5400 5.313 37472819-B24 - 40.5066 -103.0028 5.295 95222197-77 - 40.9258 -103.8743 5.291 94375434-46 - 40.9435 -102.4597 5.267 94635679-S17 - 38.6225 -103.9248 5.258 74783010-L47 - 40.0710 -104.4588 5.256 37321124-W19 - 40.7338 -102.2835 5.255 98543683-P5 - 38.7065 -103.5548 5.243 74465274-2L - 40.3347 -104.0507 5.239 98473417-M24 - 39.6550 -102.8218 5.229 93574269-W22 - 40.6230 -102.5506 5.211 97747147-44 - 39.9270 -104.4143 5.211 36443419-3 - 39.1853 -104.2708 5.180 73472288-E8 - 39.6400 -103.1980 5.156 93832255-W38 - 39.9877 -104.3965 5.138 36443040-AD5 - 40.6386 -102.8366 5.128 92653991-L6 - 39.7980 -105.5098 5.103 36423636-G3 - 40.2405 -103.9627 5.091 98672082-M35 - 40.5948 -103.3415 5.077 95225948-L59 - 40.3556 -102.7932 5.051 98482770-20 - 40.6242 -102.3013 5.046 98543419-19 - 40.4828 -102.5502 5.044 97746551-P23 - 40.6188 -102.2398 5.042 98543296-P3 - 39.7580 -104.4282 5.011 36443658-9 - 40.2723 -103.6558 4.984 98425338-102 - 40.5515 -104.4513 4.951 96563509-W26 - 39.7202 -104.4892 4.932 36443663-AR13 - 40.2908 -104.0864 4.910 94837495-M14 - 40.8000 -102.6082 4.877 97747262-S9 - 39.6803 -104.3975 4.861 36444557-AR5 - 40.4806 -103.0564 4.847 95228107-66 - 40.2548 -103.5916 4.843 98424045-84 - 40.5820 -104.1270 4.838 96563640-W43 - 40.6050 -105.0050 4.830 94820421-L9 - 40.4856 -103.8563 4.827 94375496-M8 - 39.2718 -103.3970 4.823 77632455-L61 - 39.6213 -103.2532 4.822 77683479-W8 - 40.7647 -103.0528 4.816 95228084-L52 - 40.7168 -103.2185 4.813 95226357-80 - 40.6705 -102.7790 4.805 92653855-L61 - 39.4178 -103.3916 4.797 77632439-47 - 40.5590 -103.2730 4.789 95224039-L29 - 39.6115 -102.8975 4.772 93574225-W41 - 40.1882 -103.3023 4.749 93456933-34 - 40.8120 -104.7150 4.712 98972615-W67 - 40.7023 -102.8183 4.707 92653491-L7 - 39.5963 -105.9380 4.700 94684332-S4 - 40.7745 -103.1712 4.682 95229176-61 - 39.6400 -105.3780 4.679 36745248-J1 - 40.6563 -102.7027 4.673 97746536-L51 - 39.6930 -105.2726 4.622 35261441-J33 - 39.5180 -105.3430 4.616 38388071-J32 - 39.2730 -103.2285 4.604 77683454-L44 - 40.7432 -102.4008 4.586 98542621-S7 - 40.4546 -103.7883 4.578 98674360-M27 - 38.6375 -103.5725 4.566 74465216-37 - 40.6098 -103.2392 4.534 95222633-20 - 40.2892 -103.2852 4.498 93452551-29 - 40.0873 -103.2842 4.468 93452466-W35 - 40.5205 -103.9176 4.461 94375310-M9 - 39.2008 -104.3752 4.454 36483110-E15 - 40.4083 -103.0220 4.388 92463687-W21 - 39.6086 -104.0446 4.388 37694465-8 - 40.6546 -102.1842 4.318 98544112-42 - 39.1083 -103.5876 4.311 77432740-L37 - 40.9570 -102.5536 4.281 94635735-38 - 40.5293 -103.3290 4.213 95224460-L57 - 39.4510 -105.1520 4.204 36976507-J27 - 39.3630 -104.9225 4.173 36883161-D2 - 39.9660 -105.4320 4.165 32583810-B4 - 40.6052 -103.8405 4.160 94375338-36 - 39.6070 -102.9925 4.135 93574258-W43 - 40.1256 -104.5235 4.107 37324888-W28 - 39.5640 -104.3820 4.095 36443971-AR8 - 39.9386 -103.8176 4.093 36224500-20 - 40.1750 -103.2085 4.091 93456393-12W - 40.7185 -102.2053 4.076 98544343-41 - 39.4960 -106.0360 4.062 94536433-S2 - 39.6704 -103.3447 4.053 93832396-W26 - 39.3452 -103.5847 4.038 77632237-L58 - 40.3296 -103.8895 4.016 96452265-108 - 40.7995 -102.3823 3.982 94635333-S21 - 40.3788 -104.0512 3.926 95461210-M31 - 40.3803 -102.8182 3.923 98482797-W14 - 39.8681 -104.4863 3.885 36444562-AD10 - 39.6897 -105.4363 3.850 35672683-C5 - 39.4203 -105.4963 3.819 38385141-P6 - 40.9215 -102.5892 3.776 94635651-30 - 40.2523 -103.8428 3.772 98675674-88 - 40.3748 -103.9560 3.752 96452572-M15 - 40.1025 -104.5655 3.752 35364367-W48 - 39.8562 -105.4175 3.748 35823707-G9 - 40.6238 -103.4426 3.689 95221560-L25 - 40.7430 -102.4553 3.677 97747542-S8 - 40.7256 -104.7725 3.659 98972777-W60 - 40.5185 -102.3563 3.652 98542853-16 - 39.7688 -103.0666 3.636 93832426-43 - 38.9513 -103.4213 3.634 77432710-L14 - 39.8380 -105.4820 3.614 35825628-G1 - 40.1498 -102.9847 3.578 92463835-W40 - 40.9576 -102.4925 3.553 94635754-29 - 40.7738 -103.2578 3.549 95228292-72 - 40.5822 -104.6857 3.536 98342222-W56 - 39.7926 -103.4573 3.510 93862363-W7 - 40.3543 -104.0683 3.499 96452523-M10 - 40.1563 -103.0695 3.491 93456491-8 - 39.7415 -103.1800 3.470 93832322-9W - 38.7893 -103.6178 3.467 74465321-54 - 39.4990 -105.2950 3.464 38382220-J26 - 40.0236 -104.2082 3.423 38495371-W20 - 40.6195 -102.6870 3.413 97746159-L39 - 40.6870 -102.6836 3.411 98863315-L37 - 40.5455 -102.3001 3.361 98543308-P13 - 39.1777 -104.2352 3.309 73472237-E7 - 40.5148 -102.2561 3.298 98543396-P4 - 40.1866 -103.7886 3.289 98672189-101 - 39.7177 -104.5273 3.281 36444615-AR10 - 40.6609 -102.3004 3.272 98542620-P17 - 39.8832 -105.4832 3.270 36423491-G4 - 40.6902 -102.6413 3.264 97746490-P11 - 40.0092 -104.6425 3.251 35369236-W34 - 39.4063 -105.4463 3.237 38385411-P7 - 39.6533 -104.0236 3.194 37694980-AR4 - 39.5033 -103.1352 3.186 77654868-L31 - 40.6028 -102.5688 3.186 97747122-P8 - 39.6520 -105.3020 3.174 36743740-J5 - 40.6393 -103.2348 3.171 95228389-35 - 39.4990 -105.3530 3.170 38387469-J22 - 40.3932 -103.4620 3.136 98473532-M29 - 40.6395 -102.1346 3.099 98543562-40 - 40.0715 -104.4163 3.095 37324802-W23 - 40.6386 -102.6842 3.091 97746516-L4 - 40.2175 -103.7713 3.067 98678702-113 - 39.9932 -104.2553 3.056 36224611-AD6 - 39.9313 -102.9007 3.036 92463676-13W - 40.9225 -103.1545 3.035 93342250-70 - 38.8385 -103.8068 3.021 74465200-L10 - 40.4938 -103.4388 2.972 95222003-89 - 39.1573 -104.3242 2.953 73472212-E2 - 40.3185 -103.8245 2.944 98676104-100 - 40.3763 -102.8562 2.935 98482698-W33 - 40.8180 -103.1700 2.925 95227743-L18 - 38.8370 -103.8870 2.916 74465386-L2 - 40.5275 -102.3023 2.911 98543223-P29 - 39.6775 -103.3918 2.894 93832326-37 - 39.4466 -103.4928 2.847 77632382-L35 - 39.5970 -105.3060 2.843 36701328-J23 - 40.6008 -102.0918 2.831 98543324-P19 - 39.2228 -104.5395 2.818 36483073-2E - 40.9425 -102.5718 2.806 94742106-S16 - 40.0035 -105.1726 2.774 34999897-B9 - 40.4715 -102.5255 2.758 97747497-43 - 39.9425 -104.1132 2.751 94325260-AD23 - 38.7738 -103.6047 2.745 74465322-39 - 40.8830 -102.2305 2.737 94635361-26 - 39.5500 -105.2330 2.656 36974539-J10 - 38.6728 -103.6138 2.656 74465322-36 - 40.8092 -102.2282 2.549 94742152-S14 - 40.5012 -103.8607 2.544 94375495-M39 - 40.3500 -103.9556 2.494 96452485-M6 - 40.5230 -103.4685 2.473 97352321-M34 - 40.9058 -102.3827 2.472 94635584-S20 - 40.2055 -103.3310 2.467 93456816-11W - 40.3095 -102.9568 2.423 92460903-W20 - 40.9306 -103.4761 2.402 95228324-L53 - 40.2470 -105.8440 2.397 96278426-GR3 - 40.3696 -104.0732 2.378 96452551-85 - 39.7518 -103.4032 2.372 93832298-27 - 40.0430 -105.3030 2.367 34473875-B20 - 40.0710 -104.2522 2.352 38495231-W36 - 40.5805 -104.9964 2.347 94848213-L12 - 40.1400 -105.4930 2.317 34593213-B2 - 38.8067 -104.0366 2.276 74783343-59 - 40.5434 -103.7951 2.273 94375471-W39 - 40.7048 -102.2022 2.221 98544121-P25 - 40.2423 -103.6023 2.212 98425210-114 - 39.6253 -105.3401 2.194 36701990-J19 - 39.9904 -104.0706 2.184 94325568-AD22 - 40.3434 -104.1052 2.172 96452319-87 - 40.1332 -103.1158 2.134 93450130-W18 - 40.4648 -103.8043 2.130 98679155-109 - 39.6248 -104.0425 2.126 37694233-AR12 - 40.1512 -102.9553 2.123 92463241-30 - 40.1817 -103.8117 2.115 98679553-M40 - 40.0148 -104.1800 2.102 38495343-W71 - 40.9862 -103.1153 2.093 93342258-L40 - 40.7056 -102.3573 2.079 98542662-P16 - 40.5053 -103.4846 2.066 95226341-97 - 40.5076 -102.2760 2.056 98542796-39 - 39.6614 -102.8426 2.051 93574247-21 - 40.7524 -103.0570 2.017 95228015-71 - 40.0031 -104.2409 2.009 38495548-43 - 40.4645 -104.8892 2.007 96869408-27 - 39.3090 -104.3675 2.007 36212128-26 - 39.1312 -103.4731 2.001 77432544-L27 - 40.9675 -102.3765 1.999 94635357-36 - 39.4483 -104.6055 1.997 36464986-E20 - 40.6263 -102.8386 1.991 92652121-L49 - 39.1698 -104.2526 1.964 73472336-E14 - 39.8462 -105.4978 1.904 35825549-G6 - 39.5230 -105.2340 1.894 36974040-J31 - 40.6066 -103.5340 1.880 92284431-L26 - 40.0321 -104.5049 1.858 37324464-W30 - 39.2738 -103.2794 1.784 77683311-L42 - 40.7784 -102.2305 1.770 94635741-37 - 39.3050 -104.4538 1.720 36106184-33 - 39.2052 -104.4370 1.711 36483398-54 - 39.9068 -104.4520 1.682 36224870-AD19 - 39.3205 -104.4753 1.610 36212674-16 - 39.3752 -103.7503 1.608 77678007-E10 - 40.1760 -103.1677 1.581 93456550-15W - 39.9800 -104.3857 1.550 36443691-AD1 - 40.8963 -104.8741 1.544 98972345-42 - 40.6005 -102.3922 1.506 98543494-P6 - 40.2658 -103.8336 1.468 98644304-82 - 40.0829 -103.7892 1.435 98672019-M12 - 40.3101 -105.0807 1.347 95323127-L14 - 39.4375 -103.4871 1.338 77632324-L24 - 39.7508 -103.2183 1.257 93832211-10W - 39.5565 -105.2250 1.250 36975858-J8 - 40.6493 -103.2212 1.250 95222518-12 - 39.6178 -104.0482 1.250 37694643-9 - 40.1891 -105.1088 1.250 36788005-B11 - 39.6424 -105.3675 1.250 36744579-J3 - 40.7280 -106.2900 1.250 97234388-JA1 - 39.5763 -105.2200 1.250 36974480-J11 - 39.7626 -104.4316 1.250 36443053-13 - 40.9523 -102.5545 1.250 94638821-35 - 40.3500 -105.5180 1.250 95864581-L1 - 40.5187 -102.2564 1.250 98542564-23 - 39.9640 -105.4310 1.250 32587035-B23 diff --git a/cave/com.raytheon.viz.lpi/localization/bundles/maps/88Ds.xml b/cave/com.raytheon.viz.lpi/localization/bundles/maps/88Ds.xml deleted file mode 100644 index 573707b3d8..0000000000 --- a/cave/com.raytheon.viz.lpi/localization/bundles/maps/88Ds.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - PLAN_VIEW - - - - - - 88D.lpi - WSR-88D Station Locs - - - - - - \ No newline at end of file diff --git a/cave/com.raytheon.viz.lpi/localization/bundles/maps/FAA/volcanoes.xml b/cave/com.raytheon.viz.lpi/localization/bundles/maps/FAA/volcanoes.xml deleted file mode 100644 index 07bb898eb5..0000000000 --- a/cave/com.raytheon.viz.lpi/localization/bundles/maps/FAA/volcanoes.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - PLAN_VIEW - - - - - - volcanoes.lpi - Volcano Locations - - - - - - \ No newline at end of file diff --git a/cave/com.raytheon.viz.lpi/localization/bundles/maps/fireWxStations.xml b/cave/com.raytheon.viz.lpi/localization/bundles/maps/fireWxStations.xml deleted file mode 100644 index a5fa1ecff8..0000000000 --- a/cave/com.raytheon.viz.lpi/localization/bundles/maps/fireWxStations.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - PLAN_VIEW - - - - - - fireWxSta.lpi - Fire Wx Stations - - - - - - \ No newline at end of file diff --git a/cave/com.raytheon.viz.lpi/localization/bundles/maps/spotters.xml b/cave/com.raytheon.viz.lpi/localization/bundles/maps/spotters.xml deleted file mode 100644 index 2f58e6f8ba..0000000000 --- a/cave/com.raytheon.viz.lpi/localization/bundles/maps/spotters.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - PLAN_VIEW - - - - - - spotters.lpi - Spotters - - - - - - \ No newline at end of file diff --git a/cave/com.raytheon.viz.pointdata/localization/bundles/LDADMesoPlot.xml b/cave/com.raytheon.viz.pointdata/localization/bundles/LDADMesoPlot.xml index b04fb1d080..69834e2e9b 100644 --- a/cave/com.raytheon.viz.pointdata/localization/bundles/LDADMesoPlot.xml +++ b/cave/com.raytheon.viz.pointdata/localization/bundles/LDADMesoPlot.xml @@ -28,28 +28,6 @@ - - - - - - - PLAN_VIEW - - - - - - basemaps/ldad15.spi - LDAD Stations - - diff --git a/cave/com.raytheon.viz.pointdata/localization/menus/obs/baseSurface.xml b/cave/com.raytheon.viz.pointdata/localization/menus/obs/baseSurface.xml index a0459170ce..9ca882933b 100644 --- a/cave/com.raytheon.viz.pointdata/localization/menus/obs/baseSurface.xml +++ b/cave/com.raytheon.viz.pointdata/localization/menus/obs/baseSurface.xml @@ -8,9 +8,55 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cave/com.raytheon.viz.product.awips/icons/awips.png b/cave/com.raytheon.viz.product.awips/icons/awips.png new file mode 100644 index 0000000000..bf4271b33e Binary files /dev/null and b/cave/com.raytheon.viz.product.awips/icons/awips.png differ diff --git a/cave/com.raytheon.viz.product.awips/icons/awipsLogo.png b/cave/com.raytheon.viz.product.awips/icons/awipsLogo.png index 189dd36e9c..60e9e344ef 100644 Binary files a/cave/com.raytheon.viz.product.awips/icons/awipsLogo.png and b/cave/com.raytheon.viz.product.awips/icons/awipsLogo.png differ diff --git a/cave/com.raytheon.viz.product.awips/icons/cave.ico b/cave/com.raytheon.viz.product.awips/icons/cave.ico new file mode 100644 index 0000000000..db84ae8bd5 Binary files /dev/null and b/cave/com.raytheon.viz.product.awips/icons/cave.ico differ diff --git a/cave/com.raytheon.viz.product.awips/icons/cave.png b/cave/com.raytheon.viz.product.awips/icons/cave.png new file mode 100644 index 0000000000..d3889baf1a Binary files /dev/null and b/cave/com.raytheon.viz.product.awips/icons/cave.png differ diff --git a/cave/com.raytheon.viz.product.awips/icons/cave_128x128.png b/cave/com.raytheon.viz.product.awips/icons/cave_128x128.png index b1f1d490fe..c674357a67 100755 Binary files a/cave/com.raytheon.viz.product.awips/icons/cave_128x128.png and b/cave/com.raytheon.viz.product.awips/icons/cave_128x128.png differ diff --git a/cave/com.raytheon.viz.product.awips/icons/cave_16x16.png b/cave/com.raytheon.viz.product.awips/icons/cave_16x16.png index f91640e0c4..60e9e344ef 100755 Binary files a/cave/com.raytheon.viz.product.awips/icons/cave_16x16.png and b/cave/com.raytheon.viz.product.awips/icons/cave_16x16.png differ diff --git a/cave/com.raytheon.viz.product.awips/icons/cave_256x256.png b/cave/com.raytheon.viz.product.awips/icons/cave_256x256.png new file mode 100644 index 0000000000..d3889baf1a Binary files /dev/null and b/cave/com.raytheon.viz.product.awips/icons/cave_256x256.png differ diff --git a/cave/com.raytheon.viz.product.awips/icons/cave_32x32.png b/cave/com.raytheon.viz.product.awips/icons/cave_32x32.png index 0597364375..14240043f0 100755 Binary files a/cave/com.raytheon.viz.product.awips/icons/cave_32x32.png and b/cave/com.raytheon.viz.product.awips/icons/cave_32x32.png differ diff --git a/cave/com.raytheon.viz.product.awips/icons/cave_48x48.png b/cave/com.raytheon.viz.product.awips/icons/cave_48x48.png index f8d1fa7874..08b2f5ffa4 100755 Binary files a/cave/com.raytheon.viz.product.awips/icons/cave_48x48.png and b/cave/com.raytheon.viz.product.awips/icons/cave_48x48.png differ diff --git a/cave/com.raytheon.viz.product.awips/icons/cave_64x64.png b/cave/com.raytheon.viz.product.awips/icons/cave_64x64.png index 17e7c4c284..4429370b7c 100755 Binary files a/cave/com.raytheon.viz.product.awips/icons/cave_64x64.png and b/cave/com.raytheon.viz.product.awips/icons/cave_64x64.png differ diff --git a/cave/com.raytheon.viz.product.awips/icons/unidata_awips_logo.png b/cave/com.raytheon.viz.product.awips/icons/unidata_awips_logo.png new file mode 100644 index 0000000000..bf4271b33e Binary files /dev/null and b/cave/com.raytheon.viz.product.awips/icons/unidata_awips_logo.png differ diff --git a/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarComp05VILMax.xml b/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarComp05VILMax.xml index 61f5dfc407..df0b2d3495 100644 --- a/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarComp05VILMax.xml +++ b/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarComp05VILMax.xml @@ -1,592 +1,1138 @@ - - - - + - + - + + PLAN_VIEW + - - + + + + + + + + + + - + + - + - - - - + - + + + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + PLAN_VIEW - - + + - + + - + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + - - - - + - - + + - + + + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW + - - + + + + - + + - + + + + - + - - - - + - + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW + - - + + + + + + + + + + - + + - + + + + - + - - - - + - + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
-
\ No newline at end of file + + 231 + 1050 + 693 + 1485 + Forward + false + +
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarDualPolBaseData.xml b/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarDualPolBaseData.xml index 93f5b2e63f..0902cd29e0 100644 --- a/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarDualPolBaseData.xml +++ b/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarDualPolBaseData.xml @@ -1,469 +1,1065 @@ - - - - + - + + PLAN_VIEW - - + + + + - + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW - - + + + + - + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW - - + + + + - + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW - - + + + + - + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
-
\ No newline at end of file + + 231 + 1050 + 693 + 1485 + Forward + false + +
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarDualPolFourPanelZHCML.xml b/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarDualPolFourPanelZHCML.xml index e3e5819941..c7c94d8c3f 100644 --- a/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarDualPolFourPanelZHCML.xml +++ b/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarDualPolFourPanelZHCML.xml @@ -1,557 +1,1185 @@ - - - - + - + + PLAN_VIEW + + + + + + - + + - + + + +PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW + + + + + + - + + - + + + +PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW + + + + + + - + + - + + + +PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > - - - - - - - - - - - - - - - - - - - - - - - - + 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW + + + + + + - + + - + + + +PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + - + - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
-
\ No newline at end of file + + 231 + 1050 + 693 + 1485 + Forward + false + +
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarDualPolHCA.xml b/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarDualPolHCA.xml index 21471fce52..5e861e9f93 100644 --- a/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarDualPolHCA.xml +++ b/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarDualPolHCA.xml @@ -1,304 +1,931 @@ - - - - + - + + PLAN_VIEW + - - + + + + + + + + + + - + + - + - - - - + - - + + - + + + + - - - - - + + PLAN_VIEW - - + + - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + State/County Boundaries + - - - - - + +PLAN_VIEW + + + + + + + - + + - - - - - - - - - - - - - - - + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom
- - - - - + +PLAN_VIEW + + + + + + + - + + - - - - - - - - - - - - - - - + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + +PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW - + + - - + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ + + PLAN_VIEW + + + + + + + + + + + + - - - - + - - + + - + + + + + 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW + - - + + + + + + + + + + - + + - + - - - - + - - + + - + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
-
\ No newline at end of file + + 231 + 1050 + 693 + 1485 + Forward + false + +
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarFourPanelBlended.xml b/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarFourPanelBlended.xml index 60e9efaa24..84c71eb3a7 100644 --- a/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarFourPanelBlended.xml +++ b/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarFourPanelBlended.xml @@ -1,468 +1,1023 @@ - - - - + - + + PLAN_VIEW - - + + + + - + + - - - - - + +PLAN_VIEW + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW - - + + + + - + + - - - - - + +PLAN_VIEW + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW - - + + + + - + + - - - - - + +PLAN_VIEW + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW - - + + + + - + + - - - - - + +PLAN_VIEW + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
-
\ No newline at end of file + + 231 + 1050 + 693 + 1485 + Forward + false + +
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarFourPanelBlendedBestRes.xml b/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarFourPanelBlendedBestRes.xml index 99738562f2..9229f7f30f 100644 --- a/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarFourPanelBlendedBestRes.xml +++ b/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarFourPanelBlendedBestRes.xml @@ -1,485 +1,1065 @@ - - - - + - + + PLAN_VIEW - - + + + + - + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW - - + + + + - + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW - - + + + + - + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW - - + + + + - + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
-
\ No newline at end of file + + 231 + 1050 + 693 + 1485 + Forward + false + +
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarTot1hr3hrComp.xml b/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarTot1hr3hrComp.xml index cb46d37d96..ecd8ed4762 100644 --- a/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarTot1hr3hrComp.xml +++ b/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarTot1hr3hrComp.xml @@ -1,366 +1,961 @@ - - - - + - + + PLAN_VIEW + - - + + + + + + + + + + - + + - + + + + - + - - - - + - + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW + - - + + + + + + + + + + - + + - + + + + - + - - - - + - + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + - + + PLAN_VIEW + - - + + + + + + + + + - + + - + - - - - + - - + + - + + + + - - - - - + +PLAN_VIEW + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - + +PLAN_VIEW + + + + + - + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW + - - + + + + - + + - + + + + - + - - - - + - + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
-
\ No newline at end of file + + 231 + 1050 + 693 + 1485 + Forward + false + +
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarVILCompMax2Max3.xml b/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarVILCompMax2Max3.xml index 44c08f02b9..49cb6b77f8 100644 --- a/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarVILCompMax2Max3.xml +++ b/cave/com.raytheon.viz.radar/localization/bundles/DefaultRadarVILCompMax2Max3.xml @@ -1,421 +1,1010 @@ - - - - + - + + PLAN_VIEW + - - + + + + + + + + + + - + + - + + + + - + - - - - + - + - - - - - + + PLAN_VIEW - - + + - + + - - - - - - - - - - - - + + State/County Boundaries + - - - - - + +PLAN_VIEW + + + + + + + - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom
- - - - - + +PLAN_VIEW + + + + + + + - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + +PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 + +
+
+ + PLAN_VIEW + - - + + + + - + + - + + + + - + - - - - + - + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
- + + PLAN_VIEW + - - + + + + - + + - + + + + - + - - - - + - + + + + PLAN_VIEW + + + + + + + + + + State/County Boundaries + + + +PLAN_VIEW + + + + + + + + + + + + +World + +mapdata.world
+upper(name) NOT IN ('CANADA', 'MEXICO', 'UNITED STATES') AND first_coun != 'Y' +the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +State Boundaries + +mapdata.states
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Canada + +mapdata.canada
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +Mexico + +mapdata.mexico
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + +County Boundaries + +mapdata.county
+the_geom +
+
+ + +PLAN_VIEW + + + + + + + + + + + + +two lakes + +mapdata.lake
+name in ('Great Salt Lake', 'Lake Winnepeg') +the_geom +
+
+
+
+ 2147483647 + + PROJCS["Lambert_Conformal_Conic_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Lambert_Conformal_Conic_1SP"], + PARAMETER["semi_major", 6371200.0], + PARAMETER["semi_minor", 6371200.0], + PARAMETER["central_meridian", -95.0], + PARAMETER["latitude_of_origin", 25.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + + 12 +
-
\ No newline at end of file + + 231 + 1050 + 693 + 1485 + Forward + false + +
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/nexradAvailability.xml b/cave/com.raytheon.viz.radar/localization/bundles/nexradAvailability.xml new file mode 100644 index 0000000000..32320ffebf --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/nexradAvailability.xml @@ -0,0 +1,86 @@ + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + NEXRAD.lpi + NEXRAD Stations + + + + + PLAN_VIEW + + + + + + + + + + + + + + County Warning Areas + mapdata.cwa
+
+
+ + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_eeri.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_eeri.xml new file mode 100644 index 0000000000..f7f7ad22b5 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_eeri.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_fqkw.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_fqkw.xml new file mode 100644 index 0000000000..eff83d5296 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_fqkw.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_fqwa.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_fqwa.xml new file mode 100644 index 0000000000..4bdbf66a88 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_fqwa.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kabr.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kabr.xml new file mode 100644 index 0000000000..dd40db8e1f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kabr.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kabx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kabx.xml new file mode 100644 index 0000000000..f4cb289b81 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kabx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kakq.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kakq.xml new file mode 100644 index 0000000000..813f93dad6 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kakq.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kama.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kama.xml new file mode 100644 index 0000000000..5c81f69c15 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kama.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kamx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kamx.xml new file mode 100644 index 0000000000..fcbea80371 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kamx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kapx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kapx.xml new file mode 100644 index 0000000000..1f18b9a59d --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kapx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_karx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_karx.xml new file mode 100644 index 0000000000..de2fe96655 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_karx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_katx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_katx.xml new file mode 100644 index 0000000000..18ba4f16ea --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_katx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbbx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbbx.xml new file mode 100644 index 0000000000..a4780f9bfd --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbbx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbgm.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbgm.xml new file mode 100644 index 0000000000..d2a1e5c98b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbgm.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbhx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbhx.xml new file mode 100644 index 0000000000..c24ac3b20e --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbhx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbis.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbis.xml new file mode 100644 index 0000000000..bf6a9a807c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbis.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbix.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbix.xml new file mode 100644 index 0000000000..d8dfbbd926 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbix.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kblx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kblx.xml new file mode 100644 index 0000000000..4b5063aef9 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kblx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbmx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbmx.xml new file mode 100644 index 0000000000..ef690fec23 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbmx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbox.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbox.xml new file mode 100644 index 0000000000..03b99a1151 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbox.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbro.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbro.xml new file mode 100644 index 0000000000..c6737636b6 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbro.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbuf.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbuf.xml new file mode 100644 index 0000000000..f752b27dc0 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbuf.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbyx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbyx.xml new file mode 100644 index 0000000000..0c4b4b505d --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbyx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcae.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcae.xml new file mode 100644 index 0000000000..a2043db721 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcae.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcbw.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcbw.xml new file mode 100644 index 0000000000..a0e5e7dbcf --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcbw.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcbx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcbx.xml new file mode 100644 index 0000000000..41122382b8 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcbx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kccx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kccx.xml new file mode 100644 index 0000000000..8cd57dc949 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kccx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcle.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcle.xml new file mode 100644 index 0000000000..877b3495a0 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcle.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kclx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kclx.xml new file mode 100644 index 0000000000..954dd5b583 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kclx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcri.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcri.xml new file mode 100644 index 0000000000..fb20c52ccd --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcri.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcrp.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcrp.xml new file mode 100644 index 0000000000..1dd4a7566c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcrp.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcxx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcxx.xml new file mode 100644 index 0000000000..e83aae53a6 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcxx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcys.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcys.xml new file mode 100644 index 0000000000..874d34309c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcys.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdax.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdax.xml new file mode 100644 index 0000000000..18f9d54c46 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdax.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kddc.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kddc.xml new file mode 100644 index 0000000000..cebc10ebae --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kddc.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdfx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdfx.xml new file mode 100644 index 0000000000..53cd153925 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdfx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdgx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdgx.xml new file mode 100644 index 0000000000..59066bdf21 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdgx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdix.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdix.xml new file mode 100644 index 0000000000..254d153984 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdix.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdlh.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdlh.xml new file mode 100644 index 0000000000..08cf5be83a --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdlh.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdmx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdmx.xml new file mode 100644 index 0000000000..7215c2b10a --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdmx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdox.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdox.xml new file mode 100644 index 0000000000..d16ae8f821 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdox.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdtx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdtx.xml new file mode 100644 index 0000000000..160861e166 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdtx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdvn.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdvn.xml new file mode 100644 index 0000000000..c50ce4b531 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdvn.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdyx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdyx.xml new file mode 100644 index 0000000000..be22de9cab --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdyx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_keax.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_keax.xml new file mode 100644 index 0000000000..56ae1b4bff --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_keax.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kemx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kemx.xml new file mode 100644 index 0000000000..7731be810e --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kemx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kenx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kenx.xml new file mode 100644 index 0000000000..0055009133 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kenx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_keox.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_keox.xml new file mode 100644 index 0000000000..37f8c86734 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_keox.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kepz.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kepz.xml new file mode 100644 index 0000000000..f9f2c46aa1 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kepz.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kesx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kesx.xml new file mode 100644 index 0000000000..035e17bd2c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kesx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kevx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kevx.xml new file mode 100644 index 0000000000..56925e7bc4 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kevx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kewx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kewx.xml new file mode 100644 index 0000000000..1c46e154b8 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kewx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_keyx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_keyx.xml new file mode 100644 index 0000000000..9298b502f3 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_keyx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfcx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfcx.xml new file mode 100644 index 0000000000..f38f18b41a --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfcx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfdr.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfdr.xml new file mode 100644 index 0000000000..dd5d859337 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfdr.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfdx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfdx.xml new file mode 100644 index 0000000000..7cfac41398 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfdx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kffc.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kffc.xml new file mode 100644 index 0000000000..4fecc49c89 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kffc.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfsd.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfsd.xml new file mode 100644 index 0000000000..bf37a8726f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfsd.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfsx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfsx.xml new file mode 100644 index 0000000000..43af2b3513 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfsx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kftg.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kftg.xml new file mode 100644 index 0000000000..4df52a943c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kftg.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfws.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfws.xml new file mode 100644 index 0000000000..79796a11b7 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfws.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kggw.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kggw.xml new file mode 100644 index 0000000000..21717cab51 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kggw.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgjx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgjx.xml new file mode 100644 index 0000000000..1dab4380b4 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgjx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgld.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgld.xml new file mode 100644 index 0000000000..64c3681a88 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgld.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgrb.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgrb.xml new file mode 100644 index 0000000000..39b866a808 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgrb.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgrk.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgrk.xml new file mode 100644 index 0000000000..ad99e74b43 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgrk.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgrr.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgrr.xml new file mode 100644 index 0000000000..61518cc73a --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgrr.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgsp.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgsp.xml new file mode 100644 index 0000000000..42763c2a4b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgsp.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgwx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgwx.xml new file mode 100644 index 0000000000..7b40815e68 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgwx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgyx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgyx.xml new file mode 100644 index 0000000000..3ce3bcf0a1 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgyx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khdx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khdx.xml new file mode 100644 index 0000000000..9a7c170470 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khdx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khgx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khgx.xml new file mode 100644 index 0000000000..832ee103ce --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khgx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khnx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khnx.xml new file mode 100644 index 0000000000..8f8affe707 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khnx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khpx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khpx.xml new file mode 100644 index 0000000000..9abd594628 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khpx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khtx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khtx.xml new file mode 100644 index 0000000000..e5cc278747 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khtx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kict.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kict.xml new file mode 100644 index 0000000000..e8653a61c0 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kict.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kicx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kicx.xml new file mode 100644 index 0000000000..c93b48005e --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kicx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kiln.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kiln.xml new file mode 100644 index 0000000000..c0dc8387a6 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kiln.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kilx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kilx.xml new file mode 100644 index 0000000000..1a7ed92526 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kilx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kind.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kind.xml new file mode 100644 index 0000000000..3b2ec7d6ee --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kind.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kinx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kinx.xml new file mode 100644 index 0000000000..0ab07b52a6 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kinx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kiwa.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kiwa.xml new file mode 100644 index 0000000000..f4eb776ee4 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kiwa.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kiwx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kiwx.xml new file mode 100644 index 0000000000..bba2982137 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kiwx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kjax.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kjax.xml new file mode 100644 index 0000000000..441e8502d9 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kjax.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kjgx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kjgx.xml new file mode 100644 index 0000000000..b358334df7 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kjgx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kjkl.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kjkl.xml new file mode 100644 index 0000000000..fd6fd74e4c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kjkl.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klbb.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klbb.xml new file mode 100644 index 0000000000..d02f1049ce --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klbb.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klch.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klch.xml new file mode 100644 index 0000000000..04147d668e --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klch.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klgx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klgx.xml new file mode 100644 index 0000000000..746041d14d --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klgx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klix.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klix.xml new file mode 100644 index 0000000000..82a07d435e --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klix.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klnx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klnx.xml new file mode 100644 index 0000000000..d8e8465420 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klnx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klot.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klot.xml new file mode 100644 index 0000000000..3a53718988 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klot.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klrx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klrx.xml new file mode 100644 index 0000000000..13c853eddb --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klrx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klsx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klsx.xml new file mode 100644 index 0000000000..62c4f25bfe --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klsx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kltx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kltx.xml new file mode 100644 index 0000000000..52af8f80e0 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kltx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klvx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klvx.xml new file mode 100644 index 0000000000..bab96e378a --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klvx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klwx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klwx.xml new file mode 100644 index 0000000000..734e5108f0 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klwx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klzk.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klzk.xml new file mode 100644 index 0000000000..cb8c4afca5 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klzk.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmaf.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmaf.xml new file mode 100644 index 0000000000..49453cf4bd --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmaf.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmax.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmax.xml new file mode 100644 index 0000000000..bf2600f7f7 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmax.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmbx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmbx.xml new file mode 100644 index 0000000000..e57beb26d8 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmbx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmhx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmhx.xml new file mode 100644 index 0000000000..302044ee5e --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmhx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmkx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmkx.xml new file mode 100644 index 0000000000..b0462c5eb7 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmkx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmlb.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmlb.xml new file mode 100644 index 0000000000..7201766a8a --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmlb.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmob.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmob.xml new file mode 100644 index 0000000000..d2bdd63287 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmob.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmpx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmpx.xml new file mode 100644 index 0000000000..aca47c9d89 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmpx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmqt.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmqt.xml new file mode 100644 index 0000000000..4a01b4acf8 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmqt.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmrx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmrx.xml new file mode 100644 index 0000000000..de172532e9 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmrx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmsx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmsx.xml new file mode 100644 index 0000000000..7c6b1b87b5 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmsx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmtx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmtx.xml new file mode 100644 index 0000000000..76b8538a1b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmtx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmux.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmux.xml new file mode 100644 index 0000000000..751ee3ea7b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmux.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmvx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmvx.xml new file mode 100644 index 0000000000..18f36c216f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmvx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmxx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmxx.xml new file mode 100644 index 0000000000..612744bda9 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmxx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_knkx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_knkx.xml new file mode 100644 index 0000000000..8bdf6ae5c8 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_knkx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_knqa.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_knqa.xml new file mode 100644 index 0000000000..9347a141a4 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_knqa.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_koax.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_koax.xml new file mode 100644 index 0000000000..8831baf9c6 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_koax.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kohx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kohx.xml new file mode 100644 index 0000000000..a565336f14 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kohx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kokx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kokx.xml new file mode 100644 index 0000000000..020eab32e9 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kokx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kotx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kotx.xml new file mode 100644 index 0000000000..190851ba38 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kotx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpah.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpah.xml new file mode 100644 index 0000000000..3c5ce7ac8c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpah.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpbz.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpbz.xml new file mode 100644 index 0000000000..43560433da --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpbz.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpdt.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpdt.xml new file mode 100644 index 0000000000..e19742c94c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpdt.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpoe.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpoe.xml new file mode 100644 index 0000000000..dc27982db6 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpoe.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpux.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpux.xml new file mode 100644 index 0000000000..66e9306c34 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpux.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_krax.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_krax.xml new file mode 100644 index 0000000000..b135277a47 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_krax.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_krgx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_krgx.xml new file mode 100644 index 0000000000..4409c21f4c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_krgx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kriw.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kriw.xml new file mode 100644 index 0000000000..1f139f9b79 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kriw.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_krlx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_krlx.xml new file mode 100644 index 0000000000..cba92ce867 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_krlx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_krtx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_krtx.xml new file mode 100644 index 0000000000..489834ed7b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_krtx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksfx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksfx.xml new file mode 100644 index 0000000000..5452dde9d2 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksfx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksgf.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksgf.xml new file mode 100644 index 0000000000..7d43e4879f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksgf.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kshv.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kshv.xml new file mode 100644 index 0000000000..47a47da9a1 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kshv.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksjt.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksjt.xml new file mode 100644 index 0000000000..9c0b148d26 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksjt.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksox.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksox.xml new file mode 100644 index 0000000000..ed6a723aa2 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksox.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksrx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksrx.xml new file mode 100644 index 0000000000..24c426518d --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksrx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktbw.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktbw.xml new file mode 100644 index 0000000000..10e773005f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktbw.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktfx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktfx.xml new file mode 100644 index 0000000000..a8ee83c44b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktfx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktlh.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktlh.xml new file mode 100644 index 0000000000..c355d35be6 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktlh.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktlx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktlx.xml new file mode 100644 index 0000000000..4f34877099 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktlx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktwx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktwx.xml new file mode 100644 index 0000000000..1665157422 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktwx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktyx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktyx.xml new file mode 100644 index 0000000000..e2e079e7e9 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktyx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kudx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kudx.xml new file mode 100644 index 0000000000..0c279c42a9 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kudx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kuex.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kuex.xml new file mode 100644 index 0000000000..c2e2372d76 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kuex.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvax.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvax.xml new file mode 100644 index 0000000000..6369053425 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvax.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvbx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvbx.xml new file mode 100644 index 0000000000..68c77a0adb --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvbx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvnx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvnx.xml new file mode 100644 index 0000000000..4e72eb2af8 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvnx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvtx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvtx.xml new file mode 100644 index 0000000000..1fbb551be2 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvtx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvwx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvwx.xml new file mode 100644 index 0000000000..1fe7b655e4 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvwx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kyux.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kyux.xml new file mode 100644 index 0000000000..c85d81c51d --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kyux.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_lpla.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_lpla.xml new file mode 100644 index 0000000000..0ebf84bdb6 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_lpla.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pabc.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pabc.xml new file mode 100644 index 0000000000..d788cc5d80 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pabc.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pacg.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pacg.xml new file mode 100644 index 0000000000..3609f106ce --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pacg.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_paec.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_paec.xml new file mode 100644 index 0000000000..d0fe59db1d --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_paec.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pahg.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pahg.xml new file mode 100644 index 0000000000..73e3f2a9f4 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pahg.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_paih.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_paih.xml new file mode 100644 index 0000000000..e3aa0f7db0 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_paih.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pakc.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pakc.xml new file mode 100644 index 0000000000..3bf9561563 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pakc.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_papd.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_papd.xml new file mode 100644 index 0000000000..836b45a38f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_papd.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pgua.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pgua.xml new file mode 100644 index 0000000000..4fa09d929a --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pgua.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_phki.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_phki.xml new file mode 100644 index 0000000000..95a27b9b44 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_phki.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_phkm.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_phkm.xml new file mode 100644 index 0000000000..cd9b745dbf --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_phkm.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_phmo.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_phmo.xml new file mode 100644 index 0000000000..31a48e730c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_phmo.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_phwa.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_phwa.xml new file mode 100644 index 0000000000..1ec1d4c9a2 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_phwa.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_rkjk.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_rkjk.xml new file mode 100644 index 0000000000..181bbe9585 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_rkjk.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_rksg.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_rksg.xml new file mode 100644 index 0000000000..be54db53aa --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_rksg.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_rodn.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_rodn.xml new file mode 100644 index 0000000000..f1c79703c4 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_rodn.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tadw.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tadw.xml new file mode 100644 index 0000000000..5e03f31c8d --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tadw.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tatl.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tatl.xml new file mode 100644 index 0000000000..7857e4acd2 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tatl.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tbna.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tbna.xml new file mode 100644 index 0000000000..c345117fbd --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tbna.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tbos.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tbos.xml new file mode 100644 index 0000000000..37ca11e52f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tbos.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tbwi.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tbwi.xml new file mode 100644 index 0000000000..49af15aaa4 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tbwi.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tclt.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tclt.xml new file mode 100644 index 0000000000..2aebc24047 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tclt.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tcmh.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tcmh.xml new file mode 100644 index 0000000000..09b8ec5cc4 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tcmh.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tcvg.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tcvg.xml new file mode 100644 index 0000000000..3d7f0af238 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tcvg.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tdal.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tdal.xml new file mode 100644 index 0000000000..45b70baaee --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tdal.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tday.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tday.xml new file mode 100644 index 0000000000..ef03a2f067 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tday.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tdca.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tdca.xml new file mode 100644 index 0000000000..55dc1fd8d3 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tdca.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tden.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tden.xml new file mode 100644 index 0000000000..a044475767 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tden.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tdfw.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tdfw.xml new file mode 100644 index 0000000000..068a2e7509 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tdfw.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tdtw.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tdtw.xml new file mode 100644 index 0000000000..4831a2e54d --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tdtw.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tewr.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tewr.xml new file mode 100644 index 0000000000..867d2792f2 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tewr.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tfll.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tfll.xml new file mode 100644 index 0000000000..b33e9f5802 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tfll.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_thou.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_thou.xml new file mode 100644 index 0000000000..03fd80ab4d --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_thou.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tiad.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tiad.xml new file mode 100644 index 0000000000..a7981960c1 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tiad.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tiah.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tiah.xml new file mode 100644 index 0000000000..ff5f63e159 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tiah.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tich.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tich.xml new file mode 100644 index 0000000000..b7d89a64f5 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tich.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tids.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tids.xml new file mode 100644 index 0000000000..54bbf4a86d --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tids.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tjfk.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tjfk.xml new file mode 100644 index 0000000000..07b01af8fc --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tjfk.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tjua.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tjua.xml new file mode 100644 index 0000000000..a8da06c842 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tjua.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tlas.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tlas.xml new file mode 100644 index 0000000000..050ec9e230 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tlas.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tlve.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tlve.xml new file mode 100644 index 0000000000..5a3cc143a5 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tlve.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmci.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmci.xml new file mode 100644 index 0000000000..4bc8506cf5 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmci.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmco.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmco.xml new file mode 100644 index 0000000000..7c75627f8a --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmco.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmdw.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmdw.xml new file mode 100644 index 0000000000..3647cd5882 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmdw.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmem.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmem.xml new file mode 100644 index 0000000000..5e9c9154b9 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmem.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmia.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmia.xml new file mode 100644 index 0000000000..eada61930f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmia.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmke.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmke.xml new file mode 100644 index 0000000000..49ad7c7b70 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmke.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmsp.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmsp.xml new file mode 100644 index 0000000000..c91c231ab8 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmsp.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmsy.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmsy.xml new file mode 100644 index 0000000000..a4282043d8 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmsy.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tokc.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tokc.xml new file mode 100644 index 0000000000..924949f7f2 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tokc.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tord.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tord.xml new file mode 100644 index 0000000000..998db5aba9 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tord.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tpbi.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tpbi.xml new file mode 100644 index 0000000000..d66f39e0be --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tpbi.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tphl.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tphl.xml new file mode 100644 index 0000000000..160de931e4 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tphl.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tphx.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tphx.xml new file mode 100644 index 0000000000..4276f2fc1a --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tphx.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tpit.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tpit.xml new file mode 100644 index 0000000000..624b2797a1 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tpit.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tpsf.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tpsf.xml new file mode 100644 index 0000000000..650e2ebb46 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tpsf.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_trdu.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_trdu.xml new file mode 100644 index 0000000000..5454691f5f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_trdu.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tsdf.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tsdf.xml new file mode 100644 index 0000000000..61ff06e33b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tsdf.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tsju.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tsju.xml new file mode 100644 index 0000000000..1dd605ab0c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tsju.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tslc.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tslc.xml new file mode 100644 index 0000000000..33ae524d1c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tslc.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tstl.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tstl.xml new file mode 100644 index 0000000000..30b0f479cf --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tstl.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ttpa.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ttpa.xml new file mode 100644 index 0000000000..cad96e47a0 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ttpa.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ttul.xml b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ttul.xml new file mode 100644 index 0000000000..0601ebd6ce --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ttul.xml @@ -0,0 +1,306 @@ + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+ + + + + PLAN_VIEW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + World + mapdata.world
+ name not in ('UNITED STATES') + the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + County Boundaries + mapdata.county
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + State Boundaries + mapdata.states
+ the_geom +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Cities + mapdata.city
+ the_geom + prog_disc +
+
+ + + PLAN_VIEW + + + + + + + + + + + + + + Interstates + mapdata.interstate
+ the_geom +
+
+ + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["scale_factor", 1.0], + PARAMETER["false_easting", 0.0], + PARAMETER["false_northing", 0.0], + UNIT["m", 1.0], + AXIS["Easting", EAST], + AXIS["Northing", NORTH]] + +
+
+
+
diff --git a/cave/com.raytheon.viz.radar/localization/menus/radar/base4BitProducts.xml b/cave/com.raytheon.viz.radar/localization/menus/radar/base4BitProducts.xml index f093ea4c04..bf0eb1b1f1 100644 --- a/cave/com.raytheon.viz.radar/localization/menus/radar/base4BitProducts.xml +++ b/cave/com.raytheon.viz.radar/localization/menus/radar/base4BitProducts.xml @@ -319,7 +319,7 @@ id="${icao}ZV" /> + fullBundleLoad="true" id="${icao}4bit4panel05152434ZV"> @@ -330,7 +330,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel05091518ZV"> @@ -341,7 +341,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel09151824ZV"> @@ -352,7 +352,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel15243443ZV"> @@ -363,7 +363,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel154360100ZV"> @@ -374,7 +374,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel43536075ZV"> @@ -385,7 +385,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel60100140195ZV"> @@ -399,7 +399,7 @@ id="${icao}ZSRM" /> + fullBundleLoad="true" id="${icao}4bit4panel05152434ZSRM"> @@ -410,7 +410,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel05091518ZSRM"> @@ -421,7 +421,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel09151824ZSRM"> @@ -432,7 +432,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel15243443ZSRM"> @@ -443,7 +443,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel154360100ZSRM"> @@ -454,7 +454,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel43536075ZSRM"> @@ -465,7 +465,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel60100140195ZSRM"> diff --git a/cave/com.raytheon.viz.radar/localization/menus/radar/baseRadarMenu.xml b/cave/com.raytheon.viz.radar/localization/menus/radar/baseRadarMenu.xml index 4c38af6e51..11d08d8f26 100755 --- a/cave/com.raytheon.viz.radar/localization/menus/radar/baseRadarMenu.xml +++ b/cave/com.raytheon.viz.radar/localization/menus/radar/baseRadarMenu.xml @@ -24,6 +24,9 @@ of the file. --> + + diff --git a/cave/com.raytheon.viz.radar/localization/menus/radar/baseTerminal4Panel.xml b/cave/com.raytheon.viz.radar/localization/menus/radar/baseTerminal4Panel.xml index cafbb3314a..30ed0c1ea4 100644 --- a/cave/com.raytheon.viz.radar/localization/menus/radar/baseTerminal4Panel.xml +++ b/cave/com.raytheon.viz.radar/localization/menus/radar/baseTerminal4Panel.xml @@ -31,7 +31,7 @@ @@ -52,7 +52,7 @@ @@ -73,7 +73,7 @@ @@ -94,7 +94,7 @@ @@ -115,7 +115,7 @@ @@ -140,7 +140,7 @@ @@ -161,7 +161,7 @@ @@ -182,7 +182,7 @@ @@ -203,7 +203,7 @@ @@ -224,7 +224,7 @@ diff --git a/cave/com.raytheon.viz.radar/localization/menus/radar/dualPol/baseRadarFourPanel.xml b/cave/com.raytheon.viz.radar/localization/menus/radar/dualPol/baseRadarFourPanel.xml index 2d3a1d3c94..02795dd03f 100644 --- a/cave/com.raytheon.viz.radar/localization/menus/radar/dualPol/baseRadarFourPanel.xml +++ b/cave/com.raytheon.viz.radar/localization/menus/radar/dualPol/baseRadarFourPanel.xml @@ -28,25 +28,25 @@ titleText="------ 4-Panel Z+SRM/ZDR+V/KDP+HC/CC+SW ------" /> + fullBundleLoad="true" id="05dualpolbasedata"> + fullBundleLoad="true" id="09dualpolbasedata"> + fullBundleLoad="true" id="15dualpolbasedata"> + fullBundleLoad="true" id="AllTiltsdualpolbasedata"> @@ -54,79 +54,79 @@ menuText="${icao} Hi base data tilts"> + fullBundleLoad="true" id="18dualpolbasedata"> + fullBundleLoad="true" id="24dualpolbasedata"> + fullBundleLoad="true" id="34dualpolbasedata"> + fullBundleLoad="true" id="43dualpolbasedata"> + fullBundleLoad="true" id="53dualpolbasedata"> + fullBundleLoad="true" id="60dualpolbasedata"> + fullBundleLoad="true" id="75dualpolbasedata"> + fullBundleLoad="true" id="87dualpolbasedata"> + fullBundleLoad="true" id="100dualpolbasedata"> + fullBundleLoad="true" id="120dualpolbasedata"> + fullBundleLoad="true" id="140dualpolbasedata"> + fullBundleLoad="true" id="167dualpolbasedata"> + fullBundleLoad="true" id="195dualpolbasedata"> @@ -135,22 +135,22 @@ + menuText="0.5 HC analysis" fullBundleLoad="true" id="05dualpolHCanalysis"> + menuText="0.9 HC analysis" fullBundleLoad="true" id="09dualpolHCanalysis"> + menuText="1.5 HC analysis" fullBundleLoad="true" id="15dualpolHCanalysis"> + menuText="All Tilts HC analysis" fullBundleLoad="true" id="AllTiltsdualpolHCanalysis"> @@ -158,79 +158,79 @@ menuText="${icao} Hi HC analysis tilts"> + fullBundleLoad="true" id="18dualpolHCanalysis"> + fullBundleLoad="true" id="24dualpolHCanalysis"> + fullBundleLoad="true" id="34dualpolHCanalysis"> + fullBundleLoad="true" id="43dualpolHCanalysis"> + fullBundleLoad="true" id="53dualpolHCanalysis"> + fullBundleLoad="true" id="60dualpolHCanalysis"> + fullBundleLoad="true" id="75dualpolHCanalysis"> + fullBundleLoad="true" id="87dualpolHCanalysis"> + fullBundleLoad="true" id="100dualpolHCanalysis"> + fullBundleLoad="true" id="120dualpolHCanalysis"> + fullBundleLoad="true" id="140dualpolHCanalysis"> + fullBundleLoad="true" id="167dualpolHCanalysis"> + fullBundleLoad="true" id="195dualpolHCanalysis"> diff --git a/cave/com.raytheon.viz.radar/localization/menus/radar/dualPol/baseRadarFourPanelBestRes.xml b/cave/com.raytheon.viz.radar/localization/menus/radar/dualPol/baseRadarFourPanelBestRes.xml index 6238b44fc9..7b27a96296 100644 --- a/cave/com.raytheon.viz.radar/localization/menus/radar/dualPol/baseRadarFourPanelBestRes.xml +++ b/cave/com.raytheon.viz.radar/localization/menus/radar/dualPol/baseRadarFourPanelBestRes.xml @@ -28,7 +28,7 @@ id="${icao}BestResZV" /> + fullBundleLoad="true" id="${icao}05152434BestResZV"> @@ -47,7 +47,7 @@ + fullBundleLoad="true" id="${icao}05091518BestResZV"> @@ -66,7 +66,7 @@ + fullBundleLoad="true" id="${icao}09151824BestResZV"> @@ -85,7 +85,7 @@ + fullBundleLoad="true" id="${icao}15243443BestResZV"> @@ -107,7 +107,7 @@ id="${icao}BestResZSRM8"> + fullBundleLoad="true" id="${icao}05152434BestResZV"> @@ -126,7 +126,7 @@ + fullBundleLoad="true" id="${icao}05091518BestResZV"> @@ -145,7 +145,7 @@ + fullBundleLoad="true" id="${icao}09151824BestResZV"> @@ -164,7 +164,7 @@ + fullBundleLoad="true" id="${icao}15243443BestResZV"> @@ -186,7 +186,7 @@ id="${icao}BestResZDR" /> + fullBundleLoad="true" id="${icao}05152434BestResZZDR"> @@ -205,7 +205,7 @@ + fullBundleLoad="true" id="${icao}05091518BestResZZDR"> @@ -224,7 +224,7 @@ + fullBundleLoad="true" id="${icao}09151824BestResZZDR"> @@ -243,7 +243,7 @@ + fullBundleLoad="true" id="${icao}15243443BestResZZDR"> @@ -265,7 +265,7 @@ id="${icao}BestResCC" /> + fullBundleLoad="true" id="${icao}05152434BestResZCC"> @@ -284,7 +284,7 @@ + fullBundleLoad="true" id="${icao}05091518BestResZCC"> @@ -303,7 +303,7 @@ + fullBundleLoad="true" id="${icao}09151824BestResZCC"> @@ -322,7 +322,7 @@ + fullBundleLoad="true" id="${icao}15243443BestResZCC"> @@ -344,7 +344,7 @@ id="${icao}BestResKDP" /> + fullBundleLoad="true" id="${icao}05152434BestResZKDP"> @@ -363,7 +363,7 @@ + fullBundleLoad="true" id="${icao}05091518BestResZKDP"> @@ -382,7 +382,7 @@ + fullBundleLoad="true" id="${icao}09151824BestResZKDP"> @@ -401,7 +401,7 @@ + fullBundleLoad="true" id="${icao}15243443BestResZKDP"> @@ -423,7 +423,7 @@ id="${icao}ZHCML" /> + fullBundleLoad="true" id="${icao}DualPolFourPanelZHCML"> @@ -432,7 +432,7 @@ + fullBundleLoad="true" id="${icao}DualPolFourPanelZHCML"> @@ -441,7 +441,7 @@ + fullBundleLoad="true" id="${icao}DualPolFourPanelZHCML"> @@ -450,7 +450,7 @@ + fullBundleLoad="true" id="${icao}DualPolFourPanelZHCML"> @@ -462,17 +462,17 @@ id="${icao}OtherIn4Panel" /> + fullBundleLoad="true" id="${icao}Comp05VILMax"> + fullBundleLoad="true" id="${icao}Tot1hr3hr05"> + fullBundleLoad="true" id="${icao}VILCompMax2Max3"> \ No newline at end of file diff --git a/cave/com.raytheon.viz.radar/localization/menus/radar/dualPol/baseRadarLegacy.xml b/cave/com.raytheon.viz.radar/localization/menus/radar/dualPol/baseRadarLegacy.xml index da15aadb39..28b0149d2c 100644 --- a/cave/com.raytheon.viz.radar/localization/menus/radar/dualPol/baseRadarLegacy.xml +++ b/cave/com.raytheon.viz.radar/localization/menus/radar/dualPol/baseRadarLegacy.xml @@ -718,7 +718,7 @@ id="${icao}ZV" /> + fullBundleLoad="true" id="${icao}4bit4panel05152434ZV"> @@ -729,7 +729,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel05091518ZV"> @@ -740,7 +740,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel09151824ZV"> @@ -751,7 +751,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel15243443ZV"> @@ -762,7 +762,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel154360100ZV"> @@ -773,7 +773,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel43536075ZV"> @@ -784,7 +784,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel60100140195ZV"> @@ -798,7 +798,7 @@ id="${icao}ZSRM" /> + fullBundleLoad="true" id="${icao}4bit4panel05152434ZSRM"> @@ -809,7 +809,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel05091518ZSRM"> @@ -820,7 +820,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel09151824ZSRM"> @@ -831,7 +831,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel15243443ZSRM"> @@ -842,7 +842,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel154360100ZSRM"> @@ -853,7 +853,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel43536075ZSRM"> @@ -864,7 +864,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel60100140195ZSRM"> diff --git a/cave/com.raytheon.viz.radar/localization/menus/radar/dualPol/terminal/baseRadarTerminalFourPanel.xml b/cave/com.raytheon.viz.radar/localization/menus/radar/dualPol/terminal/baseRadarTerminalFourPanel.xml index 48fad8f982..634c59bd72 100644 --- a/cave/com.raytheon.viz.radar/localization/menus/radar/dualPol/terminal/baseRadarTerminalFourPanel.xml +++ b/cave/com.raytheon.viz.radar/localization/menus/radar/dualPol/terminal/baseRadarTerminalFourPanel.xml @@ -31,7 +31,7 @@ @@ -52,7 +52,7 @@ @@ -157,7 +157,7 @@ @@ -178,7 +178,7 @@ diff --git a/cave/com.raytheon.viz.radar/localization/menus/radar/with-0p2/baseRadarFourPanel.xml b/cave/com.raytheon.viz.radar/localization/menus/radar/with-0p2/baseRadarFourPanel.xml index ef82839ca7..9bd85b976c 100644 --- a/cave/com.raytheon.viz.radar/localization/menus/radar/with-0p2/baseRadarFourPanel.xml +++ b/cave/com.raytheon.viz.radar/localization/menus/radar/with-0p2/baseRadarFourPanel.xml @@ -23,31 +23,31 @@ titleText="------ 4-Panel Z+SRM/ZDR+V/KDP+HC/CC+SW ------" /> + fullBundleLoad="true" id="-04dualpolbasedata"> + fullBundleLoad="true" id="00dualpolbasedata"> + fullBundleLoad="true" id="05dualpolbasedata"> + fullBundleLoad="true" id="09dualpolbasedata"> + fullBundleLoad="true" id="AllTiltsdualpolbasedata"> @@ -55,85 +55,85 @@ menuText="${icao} Hi base data tilts"> + fullBundleLoad="true" id="15dualpolbasedata"> + fullBundleLoad="true" id="18dualpolbasedata"> + fullBundleLoad="true" id="24dualpolbasedata"> + fullBundleLoad="true" id="34dualpolbasedata"> + fullBundleLoad="true" id="43dualpolbasedata"> + fullBundleLoad="true" id="53dualpolbasedata"> + fullBundleLoad="true" id="60dualpolbasedata"> + fullBundleLoad="true" id="75dualpolbasedata"> + fullBundleLoad="true" id="87dualpolbasedata"> + fullBundleLoad="true" id="100dualpolbasedata"> + fullBundleLoad="true" id="120dualpolbasedata"> + fullBundleLoad="true" id="140dualpolbasedata"> + fullBundleLoad="true" id="167dualpolbasedata"> + fullBundleLoad="true" id="195dualpolbasedata"> @@ -142,99 +142,99 @@ + menuText="-0.4 HC analysis" fullBundleLoad="true" id="-04dualpolHCanalysis"> + menuText="0.0 HC analysis" fullBundleLoad="true" id="00dualpolHCanalysis"> + menuText="0.5 HC analysis" fullBundleLoad="true" id="05dualpolHCanalysis"> + menuText="0.9 HC analysis" fullBundleLoad="true" id="09dualpolHCanalysis"> + menuText="All Tilts HC analysis" fullBundleLoad="true" id="AllTiltsdualpolHCanalysis"> + menuText="1.5 HC analysis" fullBundleLoad="true" id="15dualpolHCanalysis"> + menuText="1.8 HC analysis" fullBundleLoad="true" id="18dualpolHCanalysis"> + menuText="2.4 HC analysis" fullBundleLoad="true" id="24dualpolHCanalysis"> + menuText="3.4 HC analysis" fullBundleLoad="true" id="34dualpolHCanalysis"> + menuText="4.3 HC analysis" fullBundleLoad="true" id="43dualpolHCanalysis"> + menuText="5.3 HC analysis" fullBundleLoad="true" id="53dualpolHCanalysis"> + menuText="6.0 HC analysis" fullBundleLoad="true" id="60dualpolHCanalysis"> + menuText="7.5 HC analysis" fullBundleLoad="true" id="75dualpolHCanalysis"> + menuText="8.7 HC analysis" fullBundleLoad="true" id="87dualpolHCanalysis"> + menuText="10.0 HC analysis" fullBundleLoad="true" id="100dualpolHCanalysis"> + menuText="12.0 HC analysis" fullBundleLoad="true" id="120dualpolHCanalysis"> + menuText="14.0 HC analysis" fullBundleLoad="true" id="140dualpolHCanalysis"> + menuText="16.7 HC analysis" fullBundleLoad="true" id="167dualpolHCanalysis"> + menuText="19.5 HC analysis" fullBundleLoad="true" id="195dualpolHCanalysis"> diff --git a/cave/com.raytheon.viz.radar/localization/menus/radar/with-0p2/baseRadarLegacy.xml b/cave/com.raytheon.viz.radar/localization/menus/radar/with-0p2/baseRadarLegacy.xml index 7c2291c639..1de85b5231 100644 --- a/cave/com.raytheon.viz.radar/localization/menus/radar/with-0p2/baseRadarLegacy.xml +++ b/cave/com.raytheon.viz.radar/localization/menus/radar/with-0p2/baseRadarLegacy.xml @@ -802,7 +802,7 @@ id="${icao}ZV" /> + fullBundleLoad="true" id="${icao}4bit4panel05152434ZV"> @@ -813,7 +813,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel05091518ZV"> @@ -824,7 +824,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel09151824ZV"> @@ -835,7 +835,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel15243443ZV"> @@ -846,7 +846,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel154360100ZV"> @@ -857,7 +857,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel43536075ZV"> @@ -868,7 +868,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel60100140195ZV"> @@ -882,7 +882,7 @@ id="${icao}ZSRM" /> + fullBundleLoad="true" id="${icao}4bit4panel05152434ZSRM"> @@ -893,7 +893,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel05091518ZSRM"> @@ -904,7 +904,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel09151824ZSRM"> @@ -915,7 +915,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel15243443ZSRM"> @@ -926,7 +926,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel154360100ZSRM"> @@ -937,7 +937,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel43536075ZSRM"> @@ -948,7 +948,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel60100140195ZSRM"> diff --git a/cave/com.raytheon.viz.radar/localization/menus/radar/with0p2/baseRadarFourPanel.xml b/cave/com.raytheon.viz.radar/localization/menus/radar/with0p2/baseRadarFourPanel.xml index 1a278a172f..cbd8481ecd 100644 --- a/cave/com.raytheon.viz.radar/localization/menus/radar/with0p2/baseRadarFourPanel.xml +++ b/cave/com.raytheon.viz.radar/localization/menus/radar/with0p2/baseRadarFourPanel.xml @@ -23,25 +23,25 @@ titleText="------ 4-Panel Z+SRM/ZDR+V/KDP+HC/CC+SW ------" /> + fullBundleLoad="true" id="00dualpolbasedata"> + fullBundleLoad="true" id="05dualpolbasedata"> + fullBundleLoad="true" id="09dualpolbasedata"> + fullBundleLoad="true" id="AllTiltsdualpolbasedata"> @@ -49,85 +49,85 @@ menuText="${icao} Hi base data tilts"> + fullBundleLoad="true" id="15dualpolbasedata"> + fullBundleLoad="true" id="18dualpolbasedata"> + fullBundleLoad="true" id="24dualpolbasedata"> + fullBundleLoad="true" id="34dualpolbasedata"> + fullBundleLoad="true" id="43dualpolbasedata"> + fullBundleLoad="true" id="53dualpolbasedata"> + fullBundleLoad="true" id="60dualpolbasedata"> + fullBundleLoad="true" id="75dualpolbasedata"> + fullBundleLoad="true" id="87dualpolbasedata"> + fullBundleLoad="true" id="100dualpolbasedata"> + fullBundleLoad="true" id="120dualpolbasedata"> + fullBundleLoad="true" id="140dualpolbasedata"> + fullBundleLoad="true" id="167dualpolbasedata"> + fullBundleLoad="true" id="195dualpolbasedata"> @@ -136,94 +136,94 @@ + menuText="0.0 HC analysis" fullBundleLoad="true" id="00dualpolHCanalysis"> + menuText="0.5 HC analysis" fullBundleLoad="true" id="05dualpolHCanalysis"> + menuText="0.9 HC analysis" fullBundleLoad="true" id="09dualpolHCanalysis"> + menuText="All Tilts HC analysis" fullBundleLoad="true" id="AllTiltsdualpolHCanalysis"> + menuText="1.5 HC analysis" fullBundleLoad="true" id="15dualpolHCanalysis"> + menuText="1.8 HC analysis" fullBundleLoad="true" id="18dualpolHCanalysis"> + menuText="2.4 HC analysis" fullBundleLoad="true" id="24dualpolHCanalysis"> + menuText="3.4 HC analysis" fullBundleLoad="true" id="34dualpolHCanalysis"> + menuText="4.3 HC analysis" fullBundleLoad="true" id="43dualpolHCanalysis"> + menuText="5.3 HC analysis" fullBundleLoad="true" id="53dualpolHCanalysis"> + menuText="6.0 HC analysis" fullBundleLoad="true" id="60dualpolHCanalysis"> + menuText="7.5 HC analysis" fullBundleLoad="true" id="75dualpolHCanalysis"> + menuText="8.7 HC analysis" fullBundleLoad="true" id="87dualpolHCanalysis"> + menuText="10.0 HC analysis" fullBundleLoad="true" id="100dualpolHCanalysis"> + menuText="12.0 HC analysis" fullBundleLoad="true" id="120dualpolHCanalysis"> + menuText="14.0 HC analysis" fullBundleLoad="true" id="140dualpolHCanalysis"> + menuText="16.7 HC analysis" fullBundleLoad="true" id="167dualpolHCanalysis"> + menuText="19.5 HC analysis" fullBundleLoad="true" id="195dualpolHCanalysis"> diff --git a/cave/com.raytheon.viz.radar/localization/menus/radar/with0p2/baseRadarLegacy.xml b/cave/com.raytheon.viz.radar/localization/menus/radar/with0p2/baseRadarLegacy.xml index 458ca5dae5..85ab35191c 100644 --- a/cave/com.raytheon.viz.radar/localization/menus/radar/with0p2/baseRadarLegacy.xml +++ b/cave/com.raytheon.viz.radar/localization/menus/radar/with0p2/baseRadarLegacy.xml @@ -752,7 +752,7 @@ id="${icao}ZV" /> + fullBundleLoad="true" id="${icao}4bit4panel05152434ZV"> @@ -763,7 +763,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel05091518ZV"> @@ -774,7 +774,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel09151824ZV"> @@ -785,7 +785,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel15243443ZV"> @@ -796,7 +796,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel154360100ZV"> @@ -807,7 +807,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel43536075ZV"> @@ -818,7 +818,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel60100140195ZV"> @@ -832,7 +832,7 @@ id="${icao}ZSRM" /> + fullBundleLoad="true" id="${icao}4bit4panel05152434ZSRM"> @@ -843,7 +843,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel05091518ZSRM"> @@ -854,7 +854,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel09151824ZSRM"> @@ -865,7 +865,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel15243443ZSRM"> @@ -876,7 +876,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel154360100ZSRM"> @@ -887,7 +887,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel43536075ZSRM"> @@ -898,7 +898,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel60100140195ZSRM"> diff --git a/cave/com.raytheon.viz.radar/localization/menus/radar/with0p3/baseRadarFourPanel.xml b/cave/com.raytheon.viz.radar/localization/menus/radar/with0p3/baseRadarFourPanel.xml index f570d0986e..09701b2921 100644 --- a/cave/com.raytheon.viz.radar/localization/menus/radar/with0p3/baseRadarFourPanel.xml +++ b/cave/com.raytheon.viz.radar/localization/menus/radar/with0p3/baseRadarFourPanel.xml @@ -23,25 +23,25 @@ titleText="------ 4-Panel Z+SRM/ZDR+V/KDP+HC/CC+SW ------" /> + fullBundleLoad="true" id="03dualpolbasedata"> + fullBundleLoad="true" id="05dualpolbasedata"> + fullBundleLoad="true" id="09dualpolbasedata"> + fullBundleLoad="true" id="AllTiltsdualpolbasedata"> @@ -49,85 +49,85 @@ menuText="${icao} Hi base data tilts"> + fullBundleLoad="true" id="15dualpolbasedata"> + fullBundleLoad="true" id="18dualpolbasedata"> + fullBundleLoad="true" id="24dualpolbasedata"> + fullBundleLoad="true" id="34dualpolbasedata"> + fullBundleLoad="true" id="43dualpolbasedata"> + fullBundleLoad="true" id="53dualpolbasedata"> + fullBundleLoad="true" id="60dualpolbasedata"> + fullBundleLoad="true" id="75dualpolbasedata"> + fullBundleLoad="true" id="87dualpolbasedata"> + fullBundleLoad="true" id="100dualpolbasedata"> + fullBundleLoad="true" id="120dualpolbasedata"> + fullBundleLoad="true" id="140dualpolbasedata"> + fullBundleLoad="true" id="167dualpolbasedata"> + fullBundleLoad="true" id="195dualpolbasedata"> @@ -136,94 +136,94 @@ + menuText="0.3 HC analysis" fullBundleLoad="true" id="03dualpolHCanalysis"> + menuText="0.5 HC analysis" fullBundleLoad="true" id="05dualpolHCanalysis"> + menuText="0.9 HC analysis" fullBundleLoad="true" id="09dualpolHCanalysis"> + menuText="All Tilts HC analysis" fullBundleLoad="true" id="AllTiltsdualpolHCanalysis"> + menuText="1.5 HC analysis" fullBundleLoad="true" id="15dualpolHCanalysis"> + menuText="1.8 HC analysis" fullBundleLoad="true" id="18dualpolHCanalysis"> + menuText="2.4 HC analysis" fullBundleLoad="true" id="24dualpolHCanalysis"> + menuText="3.4 HC analysis" fullBundleLoad="true" id="34dualpolHCanalysis"> + menuText="4.3 HC analysis" fullBundleLoad="true" id="43dualpolHCanalysis"> + menuText="5.3 HC analysis" fullBundleLoad="true" id="53dualpolHCanalysis"> + menuText="6.0 HC analysis" fullBundleLoad="true" id="60dualpolHCanalysis"> + menuText="7.5 HC analysis" fullBundleLoad="true" id="75dualpolHCanalysis"> + menuText="8.7 HC analysis" fullBundleLoad="true" id="87dualpolHCanalysis"> + menuText="10.0 HC analysis" fullBundleLoad="true" id="100dualpolHCanalysis"> + menuText="12.0 HC analysis" fullBundleLoad="true" id="120dualpolHCanalysis"> + menuText="14.0 HC analysis" fullBundleLoad="true" id="140dualpolHCanalysis"> + menuText="16.7 HC analysis" fullBundleLoad="true" id="167dualpolHCanalysis"> + menuText="19.5 HC analysis" fullBundleLoad="true" id="195dualpolHCanalysis"> diff --git a/cave/com.raytheon.viz.radar/localization/menus/radar/with0p3/baseRadarLegacy.xml b/cave/com.raytheon.viz.radar/localization/menus/radar/with0p3/baseRadarLegacy.xml index b450dd94d8..6c31d50c4c 100644 --- a/cave/com.raytheon.viz.radar/localization/menus/radar/with0p3/baseRadarLegacy.xml +++ b/cave/com.raytheon.viz.radar/localization/menus/radar/with0p3/baseRadarLegacy.xml @@ -752,7 +752,7 @@ id="${icao}ZV" /> + fullBundleLoad="true" id="${icao}4bit4panel05152434ZV"> @@ -763,7 +763,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel05091518ZV"> @@ -774,7 +774,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel09151824ZV"> @@ -785,7 +785,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel15243443ZV"> @@ -796,7 +796,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel154360100ZV"> @@ -807,7 +807,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel43536075ZV"> @@ -818,7 +818,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel60100140195ZV"> @@ -832,7 +832,7 @@ id="${icao}ZSRM" /> + fullBundleLoad="true" id="${icao}4bit4panel05152434ZSRM"> @@ -843,7 +843,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel05091518ZSRM"> @@ -854,7 +854,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel09151824ZSRM"> @@ -865,7 +865,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel15243443ZSRM"> @@ -876,7 +876,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel154360100ZSRM"> @@ -887,7 +887,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel43536075ZSRM"> @@ -898,7 +898,7 @@ + fullBundleLoad="true" id="${icao}4bit4panel60100140195ZSRM"> diff --git a/cave/com.raytheon.viz.radar/src/com/raytheon/viz/radar/rsc/map/RadarMapMouseHandler.java b/cave/com.raytheon.viz.radar/src/com/raytheon/viz/radar/rsc/map/RadarMapMouseHandler.java new file mode 100644 index 0000000000..47f75ab267 --- /dev/null +++ b/cave/com.raytheon.viz.radar/src/com/raytheon/viz/radar/rsc/map/RadarMapMouseHandler.java @@ -0,0 +1,228 @@ +package com.raytheon.viz.radar.rsc.map; + +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.eclipse.core.commands.ExecutionException; +import org.eclipse.swt.SWT; +import org.eclipse.swt.graphics.Cursor; +import org.eclipse.swt.widgets.Control; +import org.eclipse.swt.widgets.Display; +import org.eclipse.swt.widgets.Event; +import org.eclipse.swt.widgets.Shell; +import org.eclipse.ui.IWorkbenchWindow; +import org.geotools.referencing.GeodeticCalculator; + +import com.raytheon.uf.common.dataplugin.radar.RadarStation; +import com.raytheon.uf.common.status.IUFStatusHandler; +import com.raytheon.uf.common.status.UFStatus; +import com.raytheon.uf.common.status.UFStatus.Priority; +import com.raytheon.uf.viz.core.map.IMapDescriptor; +import com.raytheon.viz.ui.VizWorkbenchManager; +import com.raytheon.viz.ui.actions.LoadBundleHandler; +import com.raytheon.viz.ui.editor.AbstractEditor; +import com.raytheon.viz.ui.input.InputAdapter; +import com.raytheon.viz.ui.perspectives.AbstractVizPerspectiveManager; +import com.raytheon.viz.ui.perspectives.VizPerspectiveListener; +import org.locationtech.jts.geom.Coordinate; + + +public class RadarMapMouseHandler extends InputAdapter { + + private static final IUFStatusHandler statusHandler = UFStatus + .getHandler(RadarMapMouseHandler.class); + + public RadarMapMouseHandler() { + instance = this; + } + + private static final double RadarMinDistance = 45000; + + private static RadarMapMouseHandler instance; + + private double lat, lon; + + public double getLat() { + return lat; + } + + public double getLon() { + return lon; + } + + public static RadarMapMouseHandler getAccess() { + return instance; + } + + /* + * (non-Javadoc) + * + * @see com.raytheon.viz.ui.input.IInputHandler#handleMouseDown(int, int, + * int) + */ + @Override + public boolean handleMouseDown(int x, int y, int button) { + return false; + } + + /* + * (non-Javadoc) + * + * @see com.raytheon.viz.ui.input.IInputHandler#handleMouseDownMove(int, + * int, int) handle left button, so user be able to shift map while it is + * down + */ + @Override + public boolean handleMouseDownMove(int x, int y, int button) { + return false; + + } + + @Override + public boolean handleMouseMove(Event e) { + int x = e.x; + int y = e.y; + AbstractEditor mapEditor = RadarMapResource.getMapEditor(); + + if (mapEditor != null) { + + Coordinate loc = mapEditor.translateClick(x, y); + if (loc == null) + return false; + + List pts = RadarMapResource + .getOrCreateRadarMapResource().getPoints(); + + RadarStation pt = getPtWithinMinDist(pts, loc); + + Shell shell = ((Control) e.widget).getShell(); + Cursor cursor = null; + + if (pt != null) { + cursor = new Cursor(Display.getCurrent(), SWT.CURSOR_HAND); + } else { + cursor = new Cursor(Display.getCurrent(), SWT.CURSOR_ARROW); + } + + shell.setCursor(cursor); + + } + + return false; + } + + + /* + * (non-Javadoc) + * + * @see com.raytheon.viz.ui.input.IInputHandler#handleMouseUp(int, int, int) + * handle right button, so user be able to pick stn and print text report + */ + @Override + public boolean handleMouseUp(int x, int y, int button) { + + boolean returnStatus = false; + + if (!RadarMapResource.getMapRsc().isEditable()) + return false; + + + + // left mouse button + if (button == 1) { + AbstractEditor mapEditor = RadarMapResource.getMapEditor(); + if (mapEditor != null) { + + Coordinate loc = mapEditor.translateClick(x, y); + if (loc == null) + return false; + + List pts = RadarMapResource + .getOrCreateRadarMapResource().getPoints(); + RadarStation pt = getPtWithinMinDist(pts, loc); + + if (pt != null) { + try { + + IWorkbenchWindow window = VizWorkbenchManager.getInstance() + .getCurrentWindow(); + AbstractVizPerspectiveManager mgr = VizPerspectiveListener.getInstance( + window).getActivePerspectiveManager(); + + if (mgr != null) { + //mgr.openNewEditor(); + + Map variableSubstitutions = new HashMap<>(); + // TODO: dynamically select this from some control + variableSubstitutions.put("product1", "153,94,19,20"); + variableSubstitutions.put("product2", "154,99,27,25"); + + new LoadBundleHandler("bundles/site/Radar_" + pt.getName().toLowerCase() + ".xml", + variableSubstitutions, null, true).execute(null); + returnStatus = true; + } + + } catch (ExecutionException e) { + e.printStackTrace(); + return false; + } + } + } + } + + return returnStatus; + } + + + /** + * Gets the nearest point of an selected element to the input point + * + * @param el + * element + * @param pt + * input point + * @return + */ + private RadarStation getPtWithinMinDist( + List points, Coordinate pt) { + + RadarStation thePoint = null; + double minDistance = RadarMinDistance; + + GeodeticCalculator gc; + // can't assume this is a map Editor/MapDescriptor + AbstractEditor mapEditor = RadarMapResource.getMapEditor(); + if (mapEditor != null && ! Double.isNaN(pt.x) && ! Double.isNaN(pt.y) ) { + IMapDescriptor desc = (IMapDescriptor) mapEditor + .getActiveDisplayPane().getRenderableDisplay() + .getDescriptor(); + + for (RadarStation selectPoint : points) { + + double dist; + try { + gc = new GeodeticCalculator(desc.getCRS()); + gc.setStartingGeographicPoint(pt.x, pt.y); + gc.setDestinationGeographicPoint(selectPoint.getLon(), + selectPoint.getLat()); + dist = gc.getOrthodromicDistance(); + if (dist < minDistance) { + minDistance = dist; + thePoint = selectPoint; + } + } catch (Exception e) { + statusHandler.handle( + Priority.WARN,"getOrthodromicDistance exception.",e); + } + } + + RadarMapResource.getOrCreateRadarMapResource() + .setPickedPoint(thePoint); + } + return thePoint; + + } + + +} diff --git a/cave/com.raytheon.viz.radar/src/com/raytheon/viz/radar/rsc/map/RadarMapResource.java b/cave/com.raytheon.viz.radar/src/com/raytheon/viz/radar/rsc/map/RadarMapResource.java new file mode 100644 index 0000000000..1395352785 --- /dev/null +++ b/cave/com.raytheon.viz.radar/src/com/raytheon/viz/radar/rsc/map/RadarMapResource.java @@ -0,0 +1,364 @@ +package com.raytheon.viz.radar.rsc.map; + +import java.util.ArrayList; +import java.util.List; + +import org.eclipse.swt.SWT; +import org.eclipse.swt.graphics.Cursor; +import org.eclipse.swt.graphics.RGB; +import org.eclipse.swt.widgets.Control; +import org.eclipse.swt.widgets.Display; +import org.eclipse.ui.PlatformUI; +import org.opengis.referencing.crs.CoordinateReferenceSystem; + +import com.raytheon.uf.common.dataplugin.radar.RadarStation; +import com.raytheon.uf.viz.core.DrawableCircle; +import com.raytheon.uf.viz.core.IGraphicsTarget; +import com.raytheon.uf.viz.core.PixelExtent; +import com.raytheon.uf.viz.core.catalog.DirectDbQuery; +import com.raytheon.uf.viz.core.catalog.DirectDbQuery.QueryLanguage; +import com.raytheon.uf.viz.core.drawables.PaintProperties; +import com.raytheon.uf.viz.core.drawables.ResourcePair; +import com.raytheon.uf.viz.core.exception.VizException; +import com.raytheon.uf.viz.core.map.IMapDescriptor; +import com.raytheon.uf.viz.core.map.MapDescriptor; +import com.raytheon.uf.viz.core.rsc.AbstractVizResource; +import com.raytheon.uf.viz.core.rsc.IInputHandler; +import com.raytheon.uf.viz.core.rsc.LoadProperties; +import com.raytheon.uf.viz.core.rsc.ResourceList.RemoveListener; +import com.raytheon.uf.viz.core.rsc.capabilities.EditableCapability; +import com.raytheon.uf.viz.core.rsc.capabilities.MagnificationCapability; +import com.raytheon.viz.ui.EditorUtil; +import com.raytheon.viz.ui.editor.AbstractEditor; +import com.raytheon.viz.ui.input.EditableManager; + +/** + * NEXRAD Display Map Resource + * + * @author mjames + * + */ + +public class RadarMapResource extends + AbstractVizResource implements + RemoveListener { + private static RadarMapResource mapRsc = null; + + private static RadarMapResourceData mapRscData = null; + + private static AbstractEditor mapEditor = null; + + private static RadarMapMouseHandler mouseHandler; + + private static Cursor waitCursor = null; + + private static Control cursorControl; + + private static boolean mouseHandlerRegistered = false; + + public static void bringMapEditorToTop() { + try { + if (mapEditor != null + && PlatformUI.getWorkbench() != null + && PlatformUI.getWorkbench().getActiveWorkbenchWindow() != null + && PlatformUI.getWorkbench().getActiveWorkbenchWindow() + .getActivePage() != null) { + PlatformUI.getWorkbench().getActiveWorkbenchWindow() + .getActivePage().bringToTop(mapEditor); + mapEditor.refresh(); + } + } catch (Exception e) { + } + } + + public static AbstractEditor getMapEditor() { + return mapEditor; + } + + public static RadarMapResource getMapRsc() { + return mapRsc; + } + + private RadarMapResourceData radarMapResourceData; + + /** The set of symbols */ + List circles = null; + + private static List points = new ArrayList(); + + private RadarStation pickedPoint = new RadarStation(); + + public void setPickedPoint(RadarStation point) { + this.pickedPoint = null; + this.pickedPoint = point; + } + + public List getPoints() { + return points; + } + + public void setPoints(List points) { + if (points == null) { + this.pickedPoint = null; + this.points.clear(); + } else { + this.points = points; + } + } + + public void addPoint(RadarStation point) { + points.add(point); + } + + protected RadarMapResource(RadarMapResourceData radarMapResourceData, + LoadProperties loadProperties) { + super(radarMapResourceData, loadProperties); + + getCapability(EditableCapability.class).setEditable(true); + + this.radarMapResourceData = radarMapResourceData; + } + + public static void startWaitCursor() { + waitCursor = new Cursor(Display.getCurrent(), SWT.CURSOR_WAIT); + cursorControl = Display.getCurrent().getCursorControl(); + if (cursorControl != null && waitCursor != null) + cursorControl.setCursor(waitCursor); + } + + public static void stopWaitCursor() { + if (cursorControl != null && waitCursor != null) { + cursorControl.setCursor(null); + } + if (waitCursor != null) { + waitCursor.dispose(); + waitCursor = null; + } + } + + /** + * + */ + private static void createMapEditor() { + deleteRadarMapResource(); + try { + mapEditor = (AbstractEditor) EditorUtil.getActiveEditor(); + } catch (Exception ve) { + System.out + .println("RadarMapResource Could not load initial editor: " + + ve.getMessage()); + ve.printStackTrace(); + } + } + + public static void registerMouseHandler() { + if (mouseHandlerRegistered) + return; + + mouseHandler = getMouseHandler(); + if (mapEditor != null && mouseHandler != null) { + mapEditor.registerMouseHandler((IInputHandler) mouseHandler); + mouseHandlerRegistered = true; + } + } + + public static void unregisterMouseHandler() { + if (!mouseHandlerRegistered) + return; + mouseHandler = getMouseHandler(); + if (mapEditor != null && mouseHandler != null) { + mapEditor.unregisterMouseHandler((IInputHandler) mouseHandler); + mouseHandlerRegistered = false; + } + } + + /** + * Create a new MapResource and add it to the current editor. + * + * @return the MapResource + */ + public static RadarMapResource getOrCreateRadarMapResource() { + + if (mapRsc == null) { + if (mapEditor == null) { + createMapEditor(); + } + if (mapEditor != null) { + IMapDescriptor desc = (IMapDescriptor) mapEditor + .getActiveDisplayPane().getRenderableDisplay() + .getDescriptor(); + try { + if (mapRscData == null) + mapRscData = new RadarMapResourceData(); + mapRsc = mapRscData.construct(new LoadProperties(), desc); + + createRadarMapMarkers(); + + desc.getResourceList().add(mapRsc); + mapRsc.init(mapEditor.getActiveDisplayPane().getTarget()); + mouseHandler = getMouseHandler(); + mapEditor + .registerMouseHandler((IInputHandler) mouseHandler); + + } catch (Exception e) { + e.printStackTrace(); + } + } + } + return mapRsc; + } + + /** + * + */ + private static void createRadarMapMarkers() { + + String query = "SELECT lat, lon, rda_id FROM radar_spatial where (rda_id not like 'T%' and rda_id <> 'KCRI');"; + List rows = null; + try { + rows = DirectDbQuery.executeQuery(query, "metadata", + QueryLanguage.SQL); + } catch (VizException e) { + e.printStackTrace(); + rows = new ArrayList(); + } + + for (int i = 0; i < rows.size(); i++) { + RadarStation pnt = new RadarStation(); + Object[] pntObject = rows.get(i); + pnt.setLat((Float) pntObject[0]); + pnt.setLon((Float) pntObject[1]); + pnt.setName((String) pntObject[2]); + pnt.setRdaId((String) pntObject[2]); + mapRsc.addPoint(pnt); + } + } + + /** + * + */ + public static void deleteRadarMapResource() { + System.out.println("RadarMapResource:deleteRadarMapResource "); + if (mapRsc != null) { + mapRsc.dispose(); + mapRsc = null; + } + } + + /** + * Called when resource is disposed + * + * @see com.raytheon.viz.core.rsc.IVizResource#dispose() + */ + @Override + public void disposeInternal() { + if (mapEditor != null) { + mapEditor.unregisterMouseHandler(mouseHandler); + mouseHandler = null; + mapEditor = null; + } + pickedPoint = null; + mapRsc = null; + mapRscData = null; + if (waitCursor != null) + waitCursor.dispose(); + waitCursor = null; + mouseHandlerRegistered = false; + } + + public CoordinateReferenceSystem getCoordinateReferenceSystem() { + if (descriptor == null) + return null; + return descriptor.getCRS(); + } + + @Override + public String getName() { + return "NEXRAD Display"; + } + + @Override + public void initInternal(IGraphicsTarget target) throws VizException { + // make the map resource editable + EditableManager.makeEditable(this, + getCapability(EditableCapability.class).isEditable()); + } + + public boolean isApplicable(PixelExtent extent) { + return true; + } + + private void generateSymbolForDrawing() { + + circles = new ArrayList(mapRsc.getPoints().size()); + + if (points.isEmpty() == true) { + circles = null; + } else { + RGB color = new RGB (200,200,200); + int i = 0; + for (RadarStation p : points) { + double lon, lat; + lon = p.getLon(); + lat = p.getLat(); + double[] pixel = descriptor.worldToPixel(new double[] { lon, lat }); + DrawableCircle circle = new DrawableCircle(); + circle.setCoordinates(pixel[0], pixel[1]); + circle.lineWidth = 1; + circle.screenRadius = getRadius()*1.4; + circle.numberOfPoints = (int) (circle.screenRadius * 4); + circle.basics.color = color; + circle.filled = false; + circles.add(circle); + } + } + } + + protected double getRadius() { + return 5 * getCapability(MagnificationCapability.class) + .getMagnification(); + } + + @Override + public void paintInternal(IGraphicsTarget target, PaintProperties paintProps) + throws VizException { + + getOrCreateRadarMapResource(); + + generateSymbolForDrawing(); + target.drawCircle(circles.toArray(new DrawableCircle[0])); + + } + + public boolean isProjectable(CoordinateReferenceSystem mapData) { + return true; + } + + @Override + public void project(CoordinateReferenceSystem mapData) throws VizException { + // TODO Auto-generated method stub + } + + private static RadarMapMouseHandler getMouseHandler() { + if (mouseHandler == null) { + mouseHandler = new RadarMapMouseHandler(); + } + return mouseHandler; + } + + @Override + public void notifyRemove(ResourcePair rp) throws VizException { + // TODO Auto-generated method stub + } + + public boolean isEditable() { + return getCapability(EditableCapability.class).isEditable(); + } + + public void setEditable(boolean enable) { + getCapability(EditableCapability.class).setEditable(enable); + EditableManager.makeEditable(this, + getCapability(EditableCapability.class).isEditable()); + } + +} diff --git a/cave/com.raytheon.viz.radar/src/com/raytheon/viz/radar/rsc/map/RadarMapResourceData.java b/cave/com.raytheon.viz.radar/src/com/raytheon/viz/radar/rsc/map/RadarMapResourceData.java new file mode 100644 index 0000000000..5e1000a869 --- /dev/null +++ b/cave/com.raytheon.viz.radar/src/com/raytheon/viz/radar/rsc/map/RadarMapResourceData.java @@ -0,0 +1,74 @@ +package com.raytheon.viz.radar.rsc.map; + +import com.raytheon.uf.viz.core.drawables.IDescriptor; +import com.raytheon.uf.viz.core.exception.VizException; +import com.raytheon.uf.viz.core.rsc.AbstractResourceData; +import com.raytheon.uf.viz.core.rsc.LoadProperties; + +public class RadarMapResourceData extends AbstractResourceData { + + private Float markerSize = 1.5f; + + private Integer markerWidth = 2; + + private String mapName = "NEXRAD"; + + public RadarMapResourceData() { + super(); + } + + @Override + public RadarMapResource construct(LoadProperties loadProperties, + IDescriptor descriptor) throws VizException { + // TODO Auto-generated method stub + return new RadarMapResource(this, loadProperties); + } + + /* + * (non-Javadoc) + * + * @see + * com.raytheon.uf.viz.core.rsc.AbstractResourceData#update(java.lang.Object + * ) + */ + @Override + public void update(Object updateData) { + // TODO Auto-generated method stub + } + + @Override + public boolean equals(Object obj) { + if (obj == null || !(obj instanceof RadarMapResourceData)) + return false; + RadarMapResourceData rdata = (RadarMapResourceData) obj; + if (this.markerSize.equals(rdata.getMarkerSize()) + && this.markerWidth.equals(rdata.getMarkerWidth())) + return true; + + return false; + } + + public Float getMarkerSize() { + return markerSize; + } + + public void setMarkerSize(Float markerSize) { + this.markerSize = markerSize; + } + + public Integer getMarkerWidth() { + return markerWidth; + } + + public void setMarkerWidth(Integer markerWidth) { + this.markerWidth = markerWidth; + } + + public String getMapName() { + return mapName; + } + + public void setMapName(String mapName) { + this.mapName = mapName; + } +} diff --git a/cave/com.raytheon.viz.spi/localization/bundles/maps/Sounding Locs/gfs.xml b/cave/com.raytheon.viz.spi/localization/bundles/maps/Sounding Locs/gfs.xml deleted file mode 100644 index 06fee311fb..0000000000 --- a/cave/com.raytheon.viz.spi/localization/bundles/maps/Sounding Locs/gfs.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - PLAN_VIEW - - - - - - basemaps/GFSmodelBufr.spi - GFS - - - - - - diff --git a/cave/com.raytheon.viz.spi/localization/bundles/maps/Sounding Locs/goes.xml b/cave/com.raytheon.viz.spi/localization/bundles/maps/Sounding Locs/goes.xml deleted file mode 100644 index 7713b8cf88..0000000000 --- a/cave/com.raytheon.viz.spi/localization/bundles/maps/Sounding Locs/goes.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - PLAN_VIEW - - - - - - basemaps/goesBufr.spi - GOES - - - - - - \ No newline at end of file diff --git a/cave/com.raytheon.viz.spi/localization/bundles/maps/Sounding Locs/nam.xml b/cave/com.raytheon.viz.spi/localization/bundles/maps/Sounding Locs/nam.xml deleted file mode 100644 index f8a7b50877..0000000000 --- a/cave/com.raytheon.viz.spi/localization/bundles/maps/Sounding Locs/nam.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - PLAN_VIEW - - - - - - basemaps/modelBufr.spi - NAM - - - - - - \ No newline at end of file diff --git a/cave/com.raytheon.viz.spi/localization/bundles/maps/Sounding Locs/raob.xml b/cave/com.raytheon.viz.spi/localization/bundles/maps/Sounding Locs/raob.xml deleted file mode 100644 index fce39e5606..0000000000 --- a/cave/com.raytheon.viz.spi/localization/bundles/maps/Sounding Locs/raob.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - PLAN_VIEW - - - - - - basemaps/raob.spi - RAOB Station Locations - - - - - - \ No newline at end of file diff --git a/cave/com.raytheon.viz.spi/localization/bundles/maps/acarsAirports.xml b/cave/com.raytheon.viz.spi/localization/bundles/maps/acarsAirports.xml deleted file mode 100644 index 8e6b8db662..0000000000 --- a/cave/com.raytheon.viz.spi/localization/bundles/maps/acarsAirports.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - PLAN_VIEW - - - - - - basemaps/airports.spi - ACARS Airport Locations - - - - - - \ No newline at end of file diff --git a/cave/com.raytheon.viz.spi/localization/bundles/maps/buoy.xml b/cave/com.raytheon.viz.spi/localization/bundles/maps/buoy.xml deleted file mode 100644 index 2a213b0af5..0000000000 --- a/cave/com.raytheon.viz.spi/localization/bundles/maps/buoy.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - PLAN_VIEW - - - - - - basemaps/BUOY.spi - Fixed Buoy Locations - - - - - - \ No newline at end of file diff --git a/cave/com.raytheon.viz.spi/localization/bundles/maps/ldad.xml b/cave/com.raytheon.viz.spi/localization/bundles/maps/ldad.xml deleted file mode 100644 index 049c94040d..0000000000 --- a/cave/com.raytheon.viz.spi/localization/bundles/maps/ldad.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - PLAN_VIEW - - - - - - basemaps/ldad15.spi - LDAD Stations - - - - - - \ No newline at end of file diff --git a/cave/com.raytheon.viz.spi/localization/bundles/maps/ldadPrecip.xml b/cave/com.raytheon.viz.spi/localization/bundles/maps/ldadPrecip.xml deleted file mode 100644 index 10804839ac..0000000000 --- a/cave/com.raytheon.viz.spi/localization/bundles/maps/ldadPrecip.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - PLAN_VIEW - - - - - - basemaps/ldad15prcp.spi - LDAD Precip - - - - - - \ No newline at end of file diff --git a/cave/com.raytheon.viz.spi/localization/bundles/maps/metars.xml b/cave/com.raytheon.viz.spi/localization/bundles/maps/metars.xml deleted file mode 100644 index ccdbbf1bea..0000000000 --- a/cave/com.raytheon.viz.spi/localization/bundles/maps/metars.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - PLAN_VIEW - - - - - - basemaps/MTR.spi - METAR Station Locations - - - - - - \ No newline at end of file diff --git a/cave/com.raytheon.viz.spi/localization/bundles/maps/synoptic.xml b/cave/com.raytheon.viz.spi/localization/bundles/maps/synoptic.xml deleted file mode 100644 index b26ca6a420..0000000000 --- a/cave/com.raytheon.viz.spi/localization/bundles/maps/synoptic.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - PLAN_VIEW - - - - - - basemaps/synoptic.spi - Synoptic Station Locations - - - - - - \ No newline at end of file diff --git a/cave/com.raytheon.viz.texteditor/src/com/raytheon/viz/texteditor/alarmalert/util/AlarmAlertFunctions.java b/cave/com.raytheon.viz.texteditor/src/com/raytheon/viz/texteditor/alarmalert/util/AlarmAlertFunctions.java index e00d996f92..c76b39f04c 100644 --- a/cave/com.raytheon.viz.texteditor/src/com/raytheon/viz/texteditor/alarmalert/util/AlarmAlertFunctions.java +++ b/cave/com.raytheon.viz.texteditor/src/com/raytheon/viz/texteditor/alarmalert/util/AlarmAlertFunctions.java @@ -90,6 +90,9 @@ import org.locationtech.jts.geom.GeometryFactory; * code cleanup * 07/05/2016 19153 mgamazaychikov Fix disappearance of AlarmAlert Bell after initial close * Jan 24, 2018 7132 tgurney Add destroyAlarmAlertBell() + * Sep 13, 2023 tiffanym@ucar Brought back logic that looks at the site level for the + * DefaultSiteAlarms.xml if it doesn't exist at the workstation + * level * * * @@ -667,21 +670,44 @@ public class AlarmAlertFunctions { } /* - * Try to load the site file. + * Try to load the workstation file. If there is no workstation file then + * try to load the site file and create a new workstation file from it. If + * there is no site file, then create a new default workstation file. */ - public static AAPACombined loadSiteAlarms(ILocalizationFileObserver listener) { + public static AAPACombined loadSiteAlarms( + ILocalizationFileObserver listener) { + LocalizationFile workstationFile = getFile( + initLocalization(LocalizationLevel.SITE), SITE_FILE); AAPACombined aapaCombined = null; - LocalizationFile siteFile = getFile(initSiteLocalization(), SITE_FILE); - if (siteFile == null) { - aapaCombined = createDefaultAAPACombined(); + if (workstationFile == null || !workstationFile.exists()) { + // no workstation file found. try the site file + LocalizationFile siteFile = getFile(initSiteLocalization(), + SITE_FILE); + if (siteFile == null) { + aapaCombined = createDefaultAAPACombined(); + } else { + try { + aapaCombined = loadFile(siteFile.getFile()); + } catch (FileNotFoundException e) { + aapaCombined = createDefaultAAPACombined(); + } + } + // save work file + if (workstationFile != null) { + saveAlarms(aapaCombined, workstationFile); + } + } else { try { - aapaCombined = loadFile(siteFile.getFile()); + aapaCombined = loadFile(workstationFile.getFile()); } catch (FileNotFoundException e) { aapaCombined = createDefaultAAPACombined(); } } + if (workstationFile != null) { + workstationFile.addFileUpdatedObserver(listener); + } return aapaCombined; } diff --git a/cave/com.raytheon.viz.warnings/localization/bundles/AllWWA.xml b/cave/com.raytheon.viz.warnings/localization/bundles/AllWWA.xml index 6a78b19cc9..05fc01fdf7 100644 --- a/cave/com.raytheon.viz.warnings/localization/bundles/AllWWA.xml +++ b/cave/com.raytheon.viz.warnings/localization/bundles/AllWWA.xml @@ -150,7 +150,7 @@ - + diff --git a/cave/com.raytheon.viz.warnings/localization/bundles/FireWWA.xml b/cave/com.raytheon.viz.warnings/localization/bundles/FireWWA.xml index 57cde11062..2dbf8d65a7 100644 --- a/cave/com.raytheon.viz.warnings/localization/bundles/FireWWA.xml +++ b/cave/com.raytheon.viz.warnings/localization/bundles/FireWWA.xml @@ -23,7 +23,7 @@ - + diff --git a/cave/com.raytheon.viz.warnings/localization/bundles/OtherWWA.xml b/cave/com.raytheon.viz.warnings/localization/bundles/OtherWWA.xml index 08abfd0060..0753df5e05 100644 --- a/cave/com.raytheon.viz.warnings/localization/bundles/OtherWWA.xml +++ b/cave/com.raytheon.viz.warnings/localization/bundles/OtherWWA.xml @@ -23,7 +23,7 @@ - + diff --git a/edexOsgi/com.raytheon.edex.plugin.gfe/utility/common_static/base/grid/dataset/alias/gfeParamInfo.xml b/edexOsgi/com.raytheon.edex.plugin.gfe/utility/common_static/base/grid/dataset/alias/gfeParamInfo.xml index b937a6dc4a..dbab7146a7 100644 --- a/edexOsgi/com.raytheon.edex.plugin.gfe/utility/common_static/base/grid/dataset/alias/gfeParamInfo.xml +++ b/edexOsgi/com.raytheon.edex.plugin.gfe/utility/common_static/base/grid/dataset/alias/gfeParamInfo.xml @@ -1,36 +1,8 @@ - - - - - mosGuideNDFD - gfs20km - gfs20km + gfs20km + gfs20km gfs20km - gfs20km + gfs20km ESTOFS ESTOFS ESTOFS @@ -39,6 +11,7 @@ glerl GRLKwave localMPE + mosaicMPE localHPE HRRR HWRF @@ -72,16 +45,15 @@ mrf202 gfs201 mrf201 - gfs213 + gfs95 avn211 - mesoEta212 - mesoEta215 - eta212 + NAM20 + eta212 avn203 mrf203 mrf204 mrf205 - eta207 + eta207 avnNH avnNH avnNH @@ -91,7 +63,7 @@ avnNH avnNH avnNH - gww233 + gww233 gww233 gww233 gww233 @@ -100,31 +72,25 @@ seaIce219 seaIce219 seaIce219 - ruc236 + rap40 avn225 akWave239 wnaWave238 - mesoEta216 - eta218 - eta242 + eta242 enpWave253 TPCtcm226 - TPCtcm175 - TPCtcm250 + TCPtcm175 + TPCtpm250 nic218 nic242 - dgex185 - dgex186 - gfs212 + gfs212 gfs160 gfs254 gfs161 gfs161 - ruc130 + ruc130 rtmaNDFD - urmaNDFD - urmaNDFD - urmaNDFD + NamDNG GlobalWave AKwave10 @@ -137,22 +103,22 @@ NamDNG NamDNG NamDNG - HiResW - HiResW - HiResW - HiResW - HiResW - HiResW - HiResW - HiResW - HiResW - HiResW - HiResW - HiResW + HiResW-arwEast + HiResW-arwWest + HiResW-arwAK + HiResW-arwSJU + HiResW-arwHI + HiResW-arwGU + HiResW-nmmEast + HiResW-nmmWest + HiResW-nmmAK + HiResW-nmmSJU + HiResW-nmmHI + HiResW-nmmGU GRLKwave msas gfs201 - eta218 + NAM12 ensembleNH ensembleNH ensembleNH @@ -165,7 +131,7 @@ sref212 sref216 sref243 - rtgsst235 + RTGSST235 gfsGuide232 OCONUSrtmaNDFD OCONUSrtmaNDFD @@ -174,7 +140,7 @@ rtgssthr173 qpf218 hpc_qpf218 - hpcGuideNDFD + hpcGuideNDFD HPCqpfNDFD opcWave180 @@ -188,16 +154,14 @@ tpcWind231 tpcWind231 opcWave182 - mosGuideNDFD - mosGuideNDFD_AK lampNDFD TPCSurgeProb TPCSurgeProb TPCSurgeProb TPCSurgeProb - P-ETSS + ecmwf ecmwf ecmwf @@ -216,6 +180,7 @@ ecmfNH ecmfNH laps + PHISH rtofsAtlantic rtofsAtlantic rtofsAtlantic @@ -241,9 +206,9 @@ NAHwave15 NAHwave10 NAHwave4 - ETSS + nwpsCG1 nwpsCG1 nwpsCG1 @@ -340,4 +305,4 @@ ncom ncom PWPF - + \ No newline at end of file diff --git a/edexOsgi/com.raytheon.edex.plugin.ldad/.classpath b/edexOsgi/com.raytheon.edex.plugin.ldad/.classpath new file mode 100644 index 0000000000..1fa3e6803d --- /dev/null +++ b/edexOsgi/com.raytheon.edex.plugin.ldad/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/edexOsgi/com.raytheon.edex.plugin.ldad/.project b/edexOsgi/com.raytheon.edex.plugin.ldad/.project new file mode 100644 index 0000000000..85ace3766b --- /dev/null +++ b/edexOsgi/com.raytheon.edex.plugin.ldad/.project @@ -0,0 +1,28 @@ + + + com.raytheon.edex.plugin.ldad + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + + diff --git a/edexOsgi/com.raytheon.edex.plugin.ldad/META-INF/MANIFEST.MF b/edexOsgi/com.raytheon.edex.plugin.ldad/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..aa18849bfc --- /dev/null +++ b/edexOsgi/com.raytheon.edex.plugin.ldad/META-INF/MANIFEST.MF @@ -0,0 +1,16 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Ldad Plug-in +Bundle-SymbolicName: com.raytheon.edex.plugin.ldad +Bundle-Version: 1.18.1.qualifier +Bundle-Vendor: RAYTHEON +Bundle-RequiredExecutionEnvironment: JavaSE-11 +Export-Package: com.raytheon.edex.plugin.ldad.common +Require-Bundle: com.raytheon.uf.common.dataplugin.ldad, + com.raytheon.uf.common.pointdata, + com.raytheon.edex.common, + com.raytheon.uf.common.localization, + javax.measure, + org.slf4j, + javax.xml.bind +Import-Package: com.raytheon.uf.common.status diff --git a/edexOsgi/com.raytheon.edex.plugin.ldad/build.properties b/edexOsgi/com.raytheon.edex.plugin.ldad/build.properties new file mode 100644 index 0000000000..20a5272307 --- /dev/null +++ b/edexOsgi/com.raytheon.edex.plugin.ldad/build.properties @@ -0,0 +1,6 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + utility/,\ + .,\ + res/ diff --git a/edexOsgi/com.raytheon.edex.plugin.ldad/com.raytheon.edex.plugin.ldad.ecl b/edexOsgi/com.raytheon.edex.plugin.ldad/com.raytheon.edex.plugin.ldad.ecl new file mode 100644 index 0000000000..e69de29bb2 diff --git a/edexOsgi/com.raytheon.edex.plugin.ldad/res/spring/ldad-common.xml b/edexOsgi/com.raytheon.edex.plugin.ldad/res/spring/ldad-common.xml new file mode 100644 index 0000000000..8cad61a9ef --- /dev/null +++ b/edexOsgi/com.raytheon.edex.plugin.ldad/res/spring/ldad-common.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + diff --git a/edexOsgi/com.raytheon.edex.plugin.ldad/src/com/raytheon/edex/plugin/ldad/LdadDecoder.java b/edexOsgi/com.raytheon.edex.plugin.ldad/src/com/raytheon/edex/plugin/ldad/LdadDecoder.java new file mode 100644 index 0000000000..8d663b312b --- /dev/null +++ b/edexOsgi/com.raytheon.edex.plugin.ldad/src/com/raytheon/edex/plugin/ldad/LdadDecoder.java @@ -0,0 +1,575 @@ +/** + * 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. + **/ + +package com.raytheon.edex.plugin.ldad; + +import java.io.ByteArrayInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.text.ParseException; +import java.text.ParsePosition; +import java.text.SimpleDateFormat; +import java.time.DateTimeException; +import java.time.ZoneId; +import java.util.ArrayList; +import java.util.Calendar; +import java.util.Date; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Properties; +import java.util.Set; +import java.util.TimeZone; + +import javax.measure.IncommensurableException; +import javax.measure.UnconvertibleException; +import javax.measure.Unit; +import javax.xml.bind.JAXBException; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import com.raytheon.edex.plugin.ldad.common.DecodedData; +import com.raytheon.edex.plugin.ldad.common.LdadField; +import com.raytheon.uf.common.dataplugin.PluginDataObject; +import com.raytheon.uf.common.dataplugin.ldad.LdadRecord; +import com.raytheon.uf.common.localization.ILocalizationFile; +import com.raytheon.uf.common.localization.IPathManager; +import com.raytheon.uf.common.localization.LocalizationUtil; +import com.raytheon.uf.common.localization.PathManagerFactory; +import com.raytheon.uf.common.localization.exception.LocalizationException; +import com.raytheon.uf.common.pointdata.spatial.SurfaceObsLocation; +import com.raytheon.uf.common.serialization.JAXBManager; +import com.raytheon.uf.common.serialization.SerializationException; +import com.raytheon.uf.common.time.DataTime; + +import net.sf.cglib.beans.BeanMap; +import tec.uom.se.format.SimpleUnitFormat; + +/** + * Decoder implementation for ldadmesonet plugin. + * + *
+ *
+ * SOFTWARE HISTORY
+ *
+ * Date          Ticket#  Engineer  Description
+ * ------------- -------- --------- --------------------------------------------
+ * Sep 04, 2009           vkorolev  Initial creation
+ * May 15, 2013  1869     bsteffen  Remove DataURI column from ldadmesonet.
+ * Aug 30, 2013  2298     rjpeter   Make getPluginName abstract
+ * Jul 23, 2014  3410     bclement  location changed to floats
+ * Aug 15, 2014  3530     bclement  no longer extends AbstractDecoder
+ * Jul 08, 2016  5744     mapeters  Config file moved from edex_static to
+ *                                  common_static
+ * Dec 18, 2017  6897     tgurney   Handle date value in a Double field
+ * Mar 06, 2018  6851     randerso  Added lookup table for time zones. Lots of
+ *                                  code cleanup.
+ * May 09, 2018  7288     randerso  Use stationId if available
+ * Apr 15, 2019  7596     lsingh    Updated units framework to JSR-363.
+ *                                  Handled unit conversion.
+ *
+ * 
+ * + * @author vkorolev + */ + +public class LdadDecoder { + private static final Logger logger = LoggerFactory + .getLogger(LdadDecoder.class); + + private static final String DATE_TIME_STRING_UNITS = "DATE_TIME_STRING"; + + private static final String OBSERVATION_TIME_KEY = "observationTime"; + + private static final String TIMEZONE_KEY = "_tz"; + + private static final String PROVIDER_ID_KEY = "providerId"; + + private static final String STATION_ID_KEY = "stationId"; + + private static final String LATITUDE_KEY = "_lat"; + + private static final String LONGITUDE_KEY = "_lon"; + + private static final String ELEVATION_KEY = "_elev"; + + private static final String BAD_PROPERTY_FMT = "NumberFormatException setting property %s.%s(%s %s)"; + + private static final String DATE_FORMAT = "yy/MM/dd HH:mm:ss"; + + private static final ThreadLocal DateFormatter = new ThreadLocal() { + @Override + protected SimpleDateFormat initialValue() { + return new SimpleDateFormat(DATE_FORMAT); + } + }; + + private static final TimeZone UTC = TimeZone.getTimeZone("UTC"); + + private static JAXBManager jaxb; + + private static Properties ldadUnitsMap = new Properties(); + + private static Date ldadUnitsDate = new Date(0); + + private static String ldadUnitsChecksum = ILocalizationFile.NON_EXISTENT_CHECKSUM; + + private static Properties ldadTimeZoneMap = new Properties(); + + private static Date ldadTimeZoneDate = new Date(0); + + private static String ldadTimeZoneChecksum = ILocalizationFile.NON_EXISTENT_CHECKSUM; + + private final Class recordClass; + + private final String storageType; + + /** + * Constructor + * + * @param recordClass + * LdadRecord subclass to be decoded + * @param storageType + * storageType of LDAD files to accept. All others are ignored. + * @throws JAXBException + */ + public LdadDecoder(Class recordClass, + String storageType) throws JAXBException { + this.recordClass = recordClass; + this.storageType = storageType; + synchronized (LdadDecoder.class) { + if (jaxb == null) { + jaxb = new JAXBManager(DecodedData.class); + } + } + } + + /** + * Decode the raw data in to PluginDataObjects + * + * @param data + * the raw data + * @return the decoded records + */ + public PluginDataObject[] decode(byte[] data) { + PluginDataObject[] retVal = new PluginDataObject[0]; + if (data != null) { + IPathManager pathMgr = PathManagerFactory.getPathManager(); + + String filePath = LocalizationUtil.join("ldad", "ldadUnitsMap.txt"); + ILocalizationFile lf = pathMgr.getStaticLocalizationFile(filePath); + if (lf != null) { + synchronized (ldadUnitsMap) { + // update the units map if necessary + if (loadPropertiesFile(ldadUnitsMap, lf, ldadUnitsDate, + ldadUnitsChecksum)) { + // update properties file info + ldadUnitsDate = lf.getTimeStamp(); + ldadUnitsChecksum = lf.getCheckSum(); + } + } + } + + filePath = LocalizationUtil.join("ldad", "ldadTimeZoneMap.txt"); + lf = pathMgr.getStaticLocalizationFile(filePath); + if (lf != null) { + synchronized (ldadTimeZoneMap) { + // update the time zone map if necessary + if (loadPropertiesFile(ldadTimeZoneMap, lf, + ldadTimeZoneDate, ldadTimeZoneChecksum)) { + // update properties file info + ldadTimeZoneDate = lf.getTimeStamp(); + ldadTimeZoneChecksum = lf.getCheckSum(); + } + } + } + + try { + DecodedData dd = (DecodedData) jaxb.unmarshalFromInputStream( + new ByteArrayInputStream(data)); + + // Storage type separator + String currentFile = dd.fileName; + if (!this.storageType.equals(dd.storageType)) { + logger.warn(String.format( + "LDAD decoder for %s received file %s of type %s. File ignored.", + this.storageType, currentFile, dd.storageType)); + return retVal; + } + + // Header + String missingValue = dd.missingValue; + + // Number of records + int numRecs = dd.fields.get(0).values.size(); + + if (numRecs == 0) { + logger.info("No data in file."); + return retVal; + } + + // Create a map of fields + Map fieldMap = new HashMap<>( + dd.fields.size(), 1.0f); + for (LdadField field : dd.fields) { + fieldMap.put(field.variableName, field); + } + Set keySet = new HashSet<>(fieldMap.keySet()); + + // Check for observation time + if (!fieldMap.containsKey(OBSERVATION_TIME_KEY)) { + logger.error(String.format( + "No observation times present in file %s", + currentFile)); + return retVal; + } + + // Check for lat/lon + if (!fieldMap.containsKey(LATITUDE_KEY) + || !fieldMap.containsKey(LONGITUDE_KEY)) { + logger.error(String.format("No location present in file %s", + currentFile)); + return retVal; + } + + // Assume UTC if no time zone specified in file + if (!fieldMap.containsKey(TIMEZONE_KEY)) { + logger.warn(String.format( + "No time zone specified in file %s, assuming UTC", + currentFile)); + } + + // Loop through records + BeanMap beanMap = BeanMap.create(recordClass.newInstance()); + List records = new ArrayList<>(numRecs); + for (int i = 0; i < numRecs; i++) { + LdadRecord record = recordClass.newInstance(); + + SurfaceObsLocation location = new SurfaceObsLocation(); + record.setDataProvider(dd.provider); + record.setStationType(dd.type); + record.setReportTime(dd.reportTime); + + // Set of all known keys remaining to be processed + keySet.addAll(fieldMap.keySet()); + + // Get time zone if present + TimeZone timeZone = UTC; + if (keySet.contains(TIMEZONE_KEY)) { + String tz = fieldMap.get(TIMEZONE_KEY).values.get(i); + keySet.remove(TIMEZONE_KEY); + + synchronized (ldadTimeZoneMap) { + tz = ldadTimeZoneMap.getProperty(tz, tz); + } + try { + ZoneId zoneId = ZoneId.of(tz); + timeZone = TimeZone.getTimeZone(zoneId); + } catch (DateTimeException e) { + logger.error(String.format( + "Unrecognized time zone: %s in record %d of file %s, assuming UTC", + tz, i, currentFile), e); + } + } + + // Get observation time + LdadField field = fieldMap.get(OBSERVATION_TIME_KEY); + keySet.remove(OBSERVATION_TIME_KEY); + String value = field.values.get(i); + if (missingValue.equals(value)) { + logMissingValue(field, i, currentFile); + continue; + } + + try { + record.setObservationTime(parseDate(value, timeZone)); + } catch (ParseException e) { + logValueError(field, i, currentFile, e); + continue; + } + + // Get location + field = fieldMap.get(LATITUDE_KEY); + keySet.remove(LATITUDE_KEY); + value = field.values.get(i); + if (missingValue.equals(value)) { + logMissingValue(field, i, currentFile); + continue; + } + + float latitude; + try { + latitude = Float.parseFloat(value); + } catch (NumberFormatException e) { + logValueError(field, i, currentFile, e); + continue; + } + + field = fieldMap.get(LONGITUDE_KEY); + keySet.remove(LONGITUDE_KEY); + value = field.values.get(i); + if (missingValue.equals(value)) { + logMissingValue(field, i, currentFile); + continue; + } + + float longitude; + try { + longitude = Float.parseFloat(value); + } catch (NumberFormatException e) { + logValueError(field, i, currentFile, e); + continue; + } + + location.assignLocation(latitude, longitude); + + if (keySet.contains(ELEVATION_KEY)) { + field = fieldMap.get(ELEVATION_KEY); + keySet.remove(ELEVATION_KEY); + value = field.values.get(i); + if (!missingValue.equals(value)) { + try { + // elevation in meter - integer in location + double elevation = Double.parseDouble(value); + location.setElevation( + (int) Math.round(elevation)); + } catch (NumberFormatException e) { + logValueError(field, i, currentFile, e); + } + } + } + + // set station ID to provider ID in case station ID is not + // present + if (keySet.contains(PROVIDER_ID_KEY)) { + field = fieldMap.get(PROVIDER_ID_KEY); + + // leave provider id in key set so providerId field is + // populated in the record + + value = field.values.get(i); + location.setStationId(value); + } + + if (keySet.contains(STATION_ID_KEY)) { + field = fieldMap.get(STATION_ID_KEY); + keySet.remove(STATION_ID_KEY); + value = field.values.get(i); + location.setStationId(value); + } + + // Loop through remaining fields + beanMap.setBean(record); + for (String key : keySet) { + field = fieldMap.get(key); + String name = field.variableName; + if (beanMap.containsKey(name)) { + String units = field.units; + value = field.values.get(i); + if (!missingValue.equals(value)) { + try { + // try setting field via reflection + setProperty(name, beanMap, value, units, + timeZone); + } catch (Throwable e) { + logPropertyError(field, i, currentFile, e); + } + } + } else { + /* + * Some fields are not supported. Perfectly valid + * data can cause this exception so we log it as + * debug + */ + logger.debug(String.format( + "Unrecognized field: %s, will be ignored.", + name)); + } + } + record = (LdadRecord) beanMap.getBean(); + + // DataTime = Observation time + Date ot = record.getObservationTime(); + if (ot != null) { + DataTime dt = new DataTime(ot); + record.setDataTime(dt); + record.setLocation(location); + record.setRawMessage(record.toMessage()); + records.add(record); + } + } + + retVal = records.toArray(new PluginDataObject[records.size()]); + + } catch (SerializationException e) { + logger.error("Unable to unmarshall xml:", e); + } catch (RuntimeException e) { + logger.error("Error decoding ldad mesonet data:" + e); + } catch (InstantiationException | IllegalAccessException e) { + logger.error("Unable to instantiate class: " + + this.recordClass.getName(), e); + } + } + + return retVal; + } + + /** + * Loads properties from a localization file + * + * @param props + * properties instance to be updated + * @param lf + * localization file from which to load properties + * @return true if properties were successfully loaded + */ + private boolean loadPropertiesFile(Properties props, ILocalizationFile lf, + Date lastTimeStamp, String lastChecksum) { + boolean status = false; + if (lf.exists() && (!lastChecksum.equals(lf.getCheckSum()) + || !lastTimeStamp.equals(lf.getTimeStamp()))) { + try (InputStream is = lf.openInputStream()) { + Properties newProps = new Properties(); + newProps.load(is); + props.clear(); + props.putAll(newProps); + status = true; + } catch (LocalizationException | IOException e) { + logger.error("Error loading properites from: " + lf, e); + } + } + return status; + } + + private void logMissingValue(LdadField field, int index, String file) { + logger.error(String.format( + "Missing value in field: %s value: %s with units: %s for file: %s", + field.variableName, field.values.get(index), field.units, + file)); + } + + private void logValueError(LdadField field, int index, String file, + Throwable e) { + logger.error(String.format( + "Invalid value in field: %s value: %s with units: %s for file: %s", + field.variableName, field.values.get(index), field.units, file), + e); + } + + private void logPropertyError(LdadField field, int index, String file, + Throwable e) { + logger.error(String.format( + "Unable to set property %s to value: %s with units: %s for file: %s", + field.variableName, field.values.get(index), field.units, file), + e); + } + + private void setProperty(String name, BeanMap beanMap, String value, + String units, TimeZone timeZone) throws ParseException { + + Object val = null; + boolean abort = false; + Class clazz = beanMap.getPropertyType(name); + + // Type filter + if (String.class == clazz) { + val = value.trim(); + } else if (Calendar.class == clazz) { + val = parseDate(value, timeZone); + } else if (DATE_TIME_STRING_UNITS.equals(units)) { + // String date/time in a Double field, convert to epoch seconds + Date date = parseDate(value, timeZone); + val = date.getTime() / 1000.0; + } else { + + // Get rid of some troublesome data + // TODO: find out what should be done with these values + abort = "B".equals(value); + abort |= "R".equals(value); + abort |= "V".equals(value); + abort |= "NAN0".equals(value); + + if (!abort) { + Double tval = null; + try { + tval = Double.parseDouble(value); + } catch (NumberFormatException nfe) { + String msg = String.format(BAD_PROPERTY_FMT, + beanMap.getBean().getClass().getSimpleName(), name, + clazz.getSimpleName(), value); + logger.error(msg, nfe); + return; + } + synchronized (ldadUnitsMap) { + if (ldadUnitsMap.containsKey(units)) { + String translatedUnit = ldadUnitsMap.getProperty(units, + units); + + Unit inUnit = (Unit) SimpleUnitFormat.getInstance(SimpleUnitFormat.Flavor.ASCII) + .parseObject(translatedUnit, new ParsePosition(0)); + + String propUnit = ldadUnitsMap.getProperty(name); + if (propUnit == null) { + logger.error(String.format( + "No units defined in ldadUnitsMap.txt for property: %s", + name)); + } else { + Unit outUnit = (Unit) SimpleUnitFormat.getInstance(SimpleUnitFormat.Flavor.ASCII) + .parseObject(propUnit, new ParsePosition(0)); + try { + tval = inUnit.getConverterToAny(outUnit) + .convert((tval).doubleValue()); + } catch (IncommensurableException | UnconvertibleException e) { + logger.error(String.format( + "Property[%s] Input unit %s not compatible with Output unit %s", + name, units, outUnit), e); + return; + } + } + } + } + + if (clazz == Integer.class) { + val = tval.intValue(); + } else if (clazz == Short.class) { + val = tval.shortValue(); + } else if (clazz == Float.class) { + val = tval.floatValue(); + } else { + val = tval; + } + } + } + if (!abort) { + beanMap.put(name, val); + } + } + + private Date parseDate(String dateTime, TimeZone timeZone) + throws ParseException { + SimpleDateFormat sdf = DateFormatter.get(); + sdf.setTimeZone(timeZone); + + Date date = sdf.parse(dateTime); + return date; + } +} diff --git a/edexOsgi/com.raytheon.edex.plugin.ldad/src/com/raytheon/edex/plugin/ldad/common/DecodedData.java b/edexOsgi/com.raytheon.edex.plugin.ldad/src/com/raytheon/edex/plugin/ldad/common/DecodedData.java new file mode 100644 index 0000000000..54bb36fc4b --- /dev/null +++ b/edexOsgi/com.raytheon.edex.plugin.ldad/src/com/raytheon/edex/plugin/ldad/common/DecodedData.java @@ -0,0 +1,67 @@ +/** + * 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. + **/ +package com.raytheon.edex.plugin.ldad.common; + +import java.util.ArrayList; +import java.util.List; + +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; + +/** + * Decoded LDAD XML data structure. + * + *
+ * SOFTWARE HISTORY
+ * Date         Ticket#    Engineer    Description
+ * ------------ ---------- ----------- --------------------------
+ * 08/17/09					dfriedman	Initial creation
+ * 
+ * 
+ * + * @author dfriedman + * @version 1.0 + */ + +@XmlRootElement +public class DecodedData { + @XmlAttribute + public String fileName; // original file name + @XmlAttribute + public String storageType; // "mesonet", "hydro", etc. + @XmlAttribute + public String type; // data type name or "msas_qc." + @XmlAttribute + public String root; // original data type name + @XmlAttribute + public String source; // same as type? + @XmlAttribute + public String provider; // data type name? or "MSAS_QC" + @XmlAttribute + public String missingValue; + @XmlAttribute + public long reportTime; // Report time in seconds since 1/1/1970 + + @XmlElement(name="field") + public List fields = new ArrayList(); + + +} diff --git a/edexOsgi/com.raytheon.edex.plugin.ldad/src/com/raytheon/edex/plugin/ldad/common/LdadDataType.java b/edexOsgi/com.raytheon.edex.plugin.ldad/src/com/raytheon/edex/plugin/ldad/common/LdadDataType.java new file mode 100644 index 0000000000..71403f44f5 --- /dev/null +++ b/edexOsgi/com.raytheon.edex.plugin.ldad/src/com/raytheon/edex/plugin/ldad/common/LdadDataType.java @@ -0,0 +1,59 @@ +/** + * 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. + **/ +package com.raytheon.edex.plugin.ldad.common; + +/** + * Decoded LDAD data types. + * + *
+ * SOFTWARE HISTORY
+ * Date         Ticket#    Engineer    Description
+ * ------------ ---------- ----------- --------------------------
+ * 08/17/09					dfriedman	Initial creation
+ * 
+ * 
+ * + * @author dfriedman + * @version 1.0 + */ + +public enum LdadDataType { + STRING(0), + DATE_TIME(1), + SHORT(2), INT(3), LONG(4), + FLOAT(5), DOUBLE(6); + + private int id; + private LdadDataType(int id) { + this.id = id; + } + public boolean isNumeric() { + return this != STRING && this != DATE_TIME; + } + public static LdadDataType fromId(int id) { + for (LdadDataType t : LdadDataType.values()) + if (t.getId() == id) + return t; + return null; + } + private int getId() { + return id; + } +} diff --git a/edexOsgi/com.raytheon.edex.plugin.ldad/src/com/raytheon/edex/plugin/ldad/common/LdadField.java b/edexOsgi/com.raytheon.edex.plugin.ldad/src/com/raytheon/edex/plugin/ldad/common/LdadField.java new file mode 100644 index 0000000000..a761735583 --- /dev/null +++ b/edexOsgi/com.raytheon.edex.plugin.ldad/src/com/raytheon/edex/plugin/ldad/common/LdadField.java @@ -0,0 +1,56 @@ +/** + * 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. + **/ +package com.raytheon.edex.plugin.ldad.common; + +import java.util.ArrayList; +import java.util.List; + +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + +/** + * Decoded LDAD XML data structure. + * + *
+ * SOFTWARE HISTORY
+ * Date         Ticket#    Engineer    Description
+ * ------------ ---------- ----------- --------------------------
+ * 08/17/09					dfriedman	Initial creation
+ * 
+ * 
+ * + * @author dfriedman + * @version 1.0 + */ + +@XmlType(name="field") +public class LdadField { + @XmlAttribute + public String variableName; + @XmlAttribute + public String units; + @XmlAttribute + public LdadDataType type; + @XmlElement(name="v") + //@XmlList + public List values = new ArrayList(); + +} diff --git a/edexOsgi/com.raytheon.edex.plugin.ldad/utility/common_static/base/ldad/ldadTimeZoneMap.txt b/edexOsgi/com.raytheon.edex.plugin.ldad/utility/common_static/base/ldad/ldadTimeZoneMap.txt new file mode 100644 index 0000000000..b068727c91 --- /dev/null +++ b/edexOsgi/com.raytheon.edex.plugin.ldad/utility/common_static/base/ldad/ldadTimeZoneMap.txt @@ -0,0 +1,36 @@ +## +# +# SOFTWARE HISTORY +# +# Date Ticket# Engineer Description +# ------------- -------- --------- -------------------------------------------- +# Mar 05, 2018 6851 randerso Initial creation +# +## + +## +# This is an absolute override file, indicating that a higher priority version +# of the file will completely replace a lower priority version of the file. +## + +## +# This file contains a mapping of time zone strings used by LDAD data +# to valid time zones recognized by java.time.ZoneId +## +EST GMT-0500 +EST5 GMT-0500 +CST GMT-0600 +CST6 GMT-0600 +MST GMT-0700 +MST7 GMT-0700 +PST GMT-0800 +PST8 GMT-0800 +AKST GMT-0900 +AKST9 GMT-0900 +AST10 GMT-1000 +HST GMT-1000 +HST10 GMT-1000 +HAST GMT-1000 +HAST10 GMT-1000 +ChST GMT+1000 +CHST GMT+1000 diff --git a/edexOsgi/com.raytheon.edex.plugin.ldad/utility/common_static/base/ldad/ldadUnitsMap.txt b/edexOsgi/com.raytheon.edex.plugin.ldad/utility/common_static/base/ldad/ldadUnitsMap.txt new file mode 100644 index 0000000000..eb0e1a64d4 --- /dev/null +++ b/edexOsgi/com.raytheon.edex.plugin.ldad/utility/common_static/base/ldad/ldadUnitsMap.txt @@ -0,0 +1,305 @@ +#$Id: ldatUnitsMap.txt 2009-09-28 slav Exp $ +## +# +# SOFTWARE HISTORY +# +# Date Ticket# Engineer Description +# ------------- -------- --------- -------------------------------------------- +# Sep 28, 2009 slav Initial Creation. +# Mar 05, 2018 6851 randerso Added description of override behavior +# +## + +## +# This is an absolute override file, indicating that a higher priority version +# of the file will completely replace a lower priority version of the file. +## + +#==================================================================================== +# LDAD FIELD UNITS +#-------------------------------------------------- +# dataProvider # Typical data providers: CDoT, KDoT, UDFCD, etc. +# homeWFO +# observationTime # observationTime +# SurfaceObsLocation location # latitude, longitude, elevation, stationId "RALC2" +# providerId # "110" "FA6026DA" Data Provider station Id +# stationName # "Ralston_Res" "BEN CREEK AIRSTRIP" ????????????????? +# handbook5Id # "" ???????????????? +# stationType # "STO" "RAWS" ???????????? +# reportTime # 1.247436157E9 time data was processed by the provider +# receivedTime # time data was received - seconds since 1-1-1970 +# numericWMOid # numeric WMO identification +# dataPlatformType # short -32767 moving (e.g. floating buoy or ship) +# tempChangeTime # time of temperature last change - seconds since 1970-1-1 00:00:00.0 +# rhChangeTime # time of last relative humidity change +# stationPressChangeTime # time of last station press change +# pressChangeChar # long_name = "character of pressure change" +# windDirChangeTime # seconds since 1970-1-1 00:00:00.0 +# windSpeedChangeTime +# windGustChangeTime +# skyCover # char ref FMH-1 +# visibilityStatus +# totalCloudCover # tenths +# presWeather # present weather ref FMH-1 +# lowLevelCloudType # lowLevelCloudType:long_name = "low level cloud type" +# midLevelCloudType # midLevelCloudType:long_name = "middle level cloud type" +# highLevelCloudType # highLevelCloudType:long_name = "high level cloud type" +# maxTempRecordPeriod # maxTempRecordPeriod:long_name = "maximum temperature recording period" +# minTempRecordPeriod # minTempRecordPeriod:long_name = "minimum temperature recording period" +# precipType # precipType:long_name = "precipitation type" +# timeSinceLastPcp # seconds +# solarRadChangeTime # seconds since 1970-1-1 00:00:00.0 +# rawMessage +# cloudBaseHeight # cloudBaseHeight:long_name = "height of the lowest cloud layer" +# precipIntensity # precipIntensity:long_name = "precipitation intensity" + +#---------------------------------------------------- +# ldad_mesonet VarName stored units +#-------------------------------------------------- +latitude degree_angle +longitude degree_angle +elevation m +platformTrueDirection degree_angle +platformTrueSpeed m/s +wetBulbTemperature K +stationPressure Pa +pressChange3Hour Pa +windDirMin degree_angle +windDirMax degree_angle +skyLayerBase m +visibility m +maximumTemperature K +minimumTemperature K +precipAccum mm +solarRadiation W/m^2 +seaSurfaceTemp K +wavePeriod s +waveHeight m +temperature K +dewpoint K +relHumidity % +windDir degree_angle +windSpeed m/s +windGust m/s +pressure Pa +seaLevelPressure Pa +altimeter Pa +precipRate m/s +fuelTemperature K +fuelMoisture % +soilTemperature K +soilMoisture % + +#-------------------------------------------------- +# ldad_hydro VarName stored units +#-------------------------------------------------- +# voltageBattery volt +# waterConductance microS/cm +# waterOxygen mg/l +# waterPH pH +# riverReportChangeTime +belowSurface m +riverStage m +poolElevation m +tailwaterStage m +riverVelocity km/h +riverInflow m^3/s +riverFlow m^3/s +computedOutflow m^3/s +waterTemperature K +windSpeedPeak m/s +precip5min mm +precip1hr mm +precip3hr mm +precip6hr mm +precip12hr mm +precip18hr mm +precip24hr mm + +# ==================================================== +# UNITS OF THERMODYNAMIC TEMPERATURE +# +# KELVIN KELVIN +# CELSIUS KELVIN @ 273.15 +# RANKINE KELVIN/1.8 +# FAHRENHEIT RANKINE @ 459.67 + +# C CELSIUS # `C' means `coulomb' +Celsius Celsius +celsius Celsius +degree_centigrade Celsius +degC Celsius +degreeC Celsius +degree_C Celsius +degree_c Celsius +deg_C Celsius +deg_c Celsius +degK K +degreeK K +degree_K K +degree_k K +deg_K K +deg_k K +K K +degF degree_fahrenheit +degreeF degree_fahrenheit +degree_F degree_fahrenheit +degree_f degree_fahrenheit +deg_F degree_fahrenheit +deg_f degree_fahrenheit +F degree_fahrenheit +Fahrenheit degree_fahrenheit +fahrenheit degree_fahrenheit + +# R RANKINE # `R' means `roentgen' +degR degree_rankine +degreeR degree_rankine +degree_R degree_rankine +degree_r degree_rankine +deg_R degree_rankine +deg_r degree_rankine +Rankine degree_rankine +rankine degree_rankine +# ----------------------------------------- +# Relative humidity +% % +# ----------------------------------------- +# UNITS OF LENGTH +# +m m +meter m +meters m +metre m +metres m +mm mm + +# God help us! There's an international foot and a US survey foot and +# they're not the same! + +# International foot stuff: +international_inch in +international_foot ft +international_feet ft +international_yard yd +international_mile mi + +# Alias unspecified units to the international units: +inch in +foot ft +yard yd +mile mi + +# The following should hold regardless: +inches in +in in +ft ft +feet ft +yd yd +yards yd + +nmile nmi +nmi nmi + +# ----------------------------------------- +# UNITS OF TIME +# +day d +hour h +minute min +s s +sec s +common_year year +d day +min min +hr h +h h +week week +year year +yr year +a year +month month + +# ----------------------------------------- +# UNITS OF PLANE ANGLE +# +# rad rad +# circle rev +degree_angle degree_angle +angular_degree degree_angle + +# turn rev +degree degree_angle +degree_true degree_angle +arcdeg degree_angle +angular_minute degree_angle/60 +angular_second degree_angle/3600 + + +degree_north degree_angle +degreeN degree_angle +degree_N degree_angle +degrees_north degree_angle +degreesN degree_angle +degrees_N degree_angle + +degree_east degree_angle +degreeE degree_angle +degree_E degree_angle +degrees_east degree_angle +degreesE degree_angle +degrees_E degree_angle + +degree_west degree_angle*-1 +degreeW degree_angle*-1 +degree_W degree_angle*-1 +degrees_west degree_angle*-1 +degreesW degree_angle*-1 +degrees_W degree_angle*-1 + +degrees_true degree_angle +degreeT degree_angle +degree_T degree_angle +degreesT degree_angle +degrees_T degree_angle + +# ----------------------------------------- +# PRESSURE OR STRESS +# +bar bar +mB bar/1000 +standard_atmosphere atm +technical_atmosphere kgf/cm^2 +Pa Pa +inch_Hg inHg +inch_hg inHg +inHg inHg +in_Hg inHg +in_hg inHg +millimeter_Hg mmHg +mmHg mmHg +mm_Hg mmHg +mm_hg mmHg +torr mmHg +# at kgf/cm^2 +atmosphere atm +atm atm + +# ----------------------------------------- +# VELOCITY (INCLUDES SPEED) +# +# c m/s*299792458 +knot kn + +knot_international kn +international_knot kn +kt kn +m/s m/s +mph mph +kph km/h +mps m/s +iph in/h +mmph mm/h + +# ----------------------------------------- +# SOLAR RADIATION +W/meter2 W/m^2 diff --git a/edexOsgi/com.raytheon.edex.plugin.satellite/src/com/raytheon/edex/plugin/satellite/dao/SatelliteDao.java b/edexOsgi/com.raytheon.edex.plugin.satellite/src/com/raytheon/edex/plugin/satellite/dao/SatelliteDao.java index fb2a987cd0..8abc2c1c2b 100644 --- a/edexOsgi/com.raytheon.edex.plugin.satellite/src/com/raytheon/edex/plugin/satellite/dao/SatelliteDao.java +++ b/edexOsgi/com.raytheon.edex.plugin.satellite/src/com/raytheon/edex/plugin/satellite/dao/SatelliteDao.java @@ -74,6 +74,8 @@ import com.raytheon.uf.edex.database.query.SpatialDatabaseQuery; * Jul 07, 2015 4279 rferrel Override delete to clean up orphan entries in satellite_spatial table. * Aug 11, 2015 4673 rjpeter Remove use of executeNativeSql. * Sep 17, 2015 4279 rferrel Do not purge the newest satellite_spatial entries. +* Apr 29, 2016 ---- mjames Force 1 interpolationLevels for NEXRCOMP products + * since def. (5) is pixeled and load time is similar. * Feb 20, 2018 7123 bsteffen Override postPurge() instead of delete(). * Jun 06, 2018 7310 mapeters Get only distinct times in getSatelliteInventory() methods * Jun 15, 2018 7310 mapeters Add spatial constraint to queries @@ -177,8 +179,14 @@ public class SatelliteDao extends PluginDao { } }, metaId); - // set the number of levels in the 'parent' satellite data. - satRecord.setInterpolationLevels(levels); + // If these are 1-4km UCAR NEXRCOMP composites, or GOES-16(R) images, + // show full res (no tiling) + if (satRecord.getSource().equals("WCDAS") || + satRecord.getSource().equals("UCAR")){ + satRecord.setInterpolationLevels(1); + } else { + satRecord.setInterpolationLevels(levels); + } return true; } diff --git a/edexOsgi/com.raytheon.edex.plugin.satellite/utility/common_static/base/styleRules/satelliteImageryStyleRules.xml b/edexOsgi/com.raytheon.edex.plugin.satellite/utility/common_static/base/styleRules/satelliteImageryStyleRules.xml index 9f363e52fd..fd17ca99d3 100644 --- a/edexOsgi/com.raytheon.edex.plugin.satellite/utility/common_static/base/styleRules/satelliteImageryStyleRules.xml +++ b/edexOsgi/com.raytheon.edex.plugin.satellite/utility/common_static/base/styleRules/satelliteImageryStyleRules.xml @@ -358,4 +358,272 @@ + + + + N0R + + + dBZ + Radar/OSF/16 Level Reflectivity + + + + + + + + + + + + + + + + + + + + + + + N0X + + + dB + + + 2 + + Radar/DualPol/Differential Refl + + + + + + + + + + + + + + + + + + + + + + N0K + + + deg/km + Radar/DualPol/Spec Differential Phase + + + + + + + + + + + + + + + + + + + + + + + DHR + N0Q + + + dBZ + Radar/DHR + + + + + + + + + + + + + + + + + + + + DVL + + + kg/m^2 + + + 4 + + Radar/OSF/Digital VIL + + + + + + + + + + + + + + + + + + N0C + + + *1 + Radar/DualPol/Correlation Coeff + + + 4 + + + + + + + + + + + + + + + + + + + + + + + + N1P + DAA + OHA + + + in + + + 4 + + Radar/8-bit STP + + + + + + + + + + + + + + + + + + + + + + NTP + DTA + + + in + + + 4 + + Radar/8-bit STP + + + + + + + + + + + + + + + + EET + + + kft + Radar/Enhanced Echo Tops + + + + + + + + + + + + + + + + HHC + + + *1 + Radar/HHC NEXRCOMP + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.ldad/.classpath b/edexOsgi/com.raytheon.uf.common.dataplugin.ldad/.classpath new file mode 100644 index 0000000000..1fa3e6803d --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.ldad/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.ldad/.project b/edexOsgi/com.raytheon.uf.common.dataplugin.ldad/.project new file mode 100644 index 0000000000..e4513cbdd1 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.ldad/.project @@ -0,0 +1,28 @@ + + + com.raytheon.uf.common.dataplugin.ldad + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + + diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.ldad/META-INF/MANIFEST.MF b/edexOsgi/com.raytheon.uf.common.dataplugin.ldad/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..79e7d3b670 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.ldad/META-INF/MANIFEST.MF @@ -0,0 +1,13 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: LDAD Common +Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.ldad +Bundle-Version: 1.18.0.qualifier +Bundle-Vendor: RAYTHEON +Bundle-RequiredExecutionEnvironment: JavaSE-1.8 +Export-Package: com.raytheon.uf.common.dataplugin.ldad +Require-Bundle: javax.persistence, + com.raytheon.uf.common.dataplugin, + com.raytheon.uf.common.pointdata +Import-Package: com.raytheon.uf.common.geospatial, + com.raytheon.uf.common.serialization.annotations diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.ldad/build.properties b/edexOsgi/com.raytheon.uf.common.dataplugin.ldad/build.properties new file mode 100644 index 0000000000..34d2e4d2da --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.ldad/build.properties @@ -0,0 +1,4 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + . diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.ldad/src/com/raytheon/uf/common/dataplugin/ldad/LdadRecord.java b/edexOsgi/com.raytheon.uf.common.dataplugin.ldad/src/com/raytheon/uf/common/dataplugin/ldad/LdadRecord.java new file mode 100644 index 0000000000..64945d5bf0 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.ldad/src/com/raytheon/uf/common/dataplugin/ldad/LdadRecord.java @@ -0,0 +1,126 @@ +/** + * 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. + **/ +package com.raytheon.uf.common.dataplugin.ldad; + +import java.util.Date; + +import javax.persistence.MappedSuperclass; +import javax.persistence.SequenceGenerator; + +import com.raytheon.uf.common.dataplugin.PluginDataObject; +import com.raytheon.uf.common.dataplugin.persist.PersistablePluginDataObject; +import com.raytheon.uf.common.pointdata.spatial.SurfaceObsLocation; +import com.raytheon.uf.common.serialization.annotations.DynamicSerialize; + +/** + * Abstract base class for LDAD records + * + *
+ *
+ * SOFTWARE HISTORY
+ *
+ * Date          Ticket#  Engineer  Description
+ * ------------- -------- --------- -----------------
+ * Mar 06, 2018  6851     randerso  Initial creation
+ * Apr 24, 2019  6140     tgurney   Remove Inheritance annotation
+ *                                  (Hibernate 5.4 fix)
+ *
+ * 
+ * + * @author randerso + */ + +@MappedSuperclass +@SequenceGenerator(name = PluginDataObject.ID_GEN) +@DynamicSerialize +public abstract class LdadRecord extends PersistablePluginDataObject { + private static final long serialVersionUID = 1L; + + /* + * TODO: move common fields from MesonetLdadRecord and HydroLdadRecord up to + * LdadRecord. Unfortunately this changes the dataURI so would require + * additional changes. + */ + + /** + * Default Constructor + */ + public LdadRecord() { + super(); + } + + /** + * Constructor for DataURI construction through base class. This is used by + * the notification service. + * + * @param uri + * A data uri applicable to this class. + */ + public LdadRecord(String uri) { + super(uri); + } + + /** + * @param dataProvider + * the dataProvider to set + */ + public abstract void setDataProvider(String dataProvider); + + /** + * @param stationType + * the stationType to set + */ + public abstract void setStationType(String stationType); + + /** + * @param reportTime + * the reportTime to set + */ + public abstract void setReportTime(long reportTime); + + /** + * @return the observationTime + */ + public abstract Date getObservationTime(); + + /** + * @param observationTime + * the observationTime to set + */ + public abstract void setObservationTime(Date observationTime); + + /** + * @param location + * the location to set + */ + public abstract void setLocation(SurfaceObsLocation location); + + /** + * @param rawMessage + * the rawMessage to set + */ + public abstract void setRawMessage(String rawMessage); + + /** + * @return record as rawMessage + */ + public abstract String toMessage(); + +} diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/.classpath b/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/.classpath new file mode 100644 index 0000000000..1fa3e6803d --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/.project b/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/.project new file mode 100644 index 0000000000..825bff20ee --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/.project @@ -0,0 +1,28 @@ + + + com.raytheon.uf.common.dataplugin.ldadmesonet + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + + diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/META-INF/MANIFEST.MF b/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..83534dfaff --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/META-INF/MANIFEST.MF @@ -0,0 +1,16 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Ldadmesonet Plug-in +Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.ldadmesonet +Bundle-Version: 1.18.0.qualifier +Bundle-Vendor: RAYTHEON +Bundle-RequiredExecutionEnvironment: JavaSE-1.8 +Import-Package: com.raytheon.uf.common.geospatial, + com.raytheon.uf.common.serialization.annotations, + org.locationtech.jts.geom +Export-Package: com.raytheon.uf.common.dataplugin.ldadmesonet +Require-Bundle: javax.persistence, + com.raytheon.uf.common.dataplugin, + com.raytheon.uf.common.pointdata, + com.raytheon.uf.common.dataaccess, + com.raytheon.uf.common.dataplugin.ldad diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/build.properties b/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/build.properties new file mode 100644 index 0000000000..5791d48d5f --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/build.properties @@ -0,0 +1,5 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + .,\ + res/ diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/com.raytheon.uf.common.dataplugin.ldadmesonet.ecl b/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/com.raytheon.uf.common.dataplugin.ldadmesonet.ecl new file mode 100644 index 0000000000..e69de29bb2 diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/res/spring/ldadmesonet-common-dataaccess.xml b/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/res/spring/ldadmesonet-common-dataaccess.xml new file mode 100644 index 0000000000..69f17e7af8 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/res/spring/ldadmesonet-common-dataaccess.xml @@ -0,0 +1,13 @@ + + + + + + + + + + \ No newline at end of file diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/src/com/raytheon/uf/common/dataplugin/ldadmesonet/MesonetLdadRecord.java b/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/src/com/raytheon/uf/common/dataplugin/ldadmesonet/MesonetLdadRecord.java new file mode 100644 index 0000000000..bdcabf1590 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.ldadmesonet/src/com/raytheon/uf/common/dataplugin/ldadmesonet/MesonetLdadRecord.java @@ -0,0 +1,1702 @@ +/** + * 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. + **/ +package com.raytheon.uf.common.dataplugin.ldadmesonet; + +import java.util.Date; + +import javax.persistence.Column; +import javax.persistence.Embedded; +import javax.persistence.Entity; +import javax.persistence.Index; +import javax.persistence.SequenceGenerator; +import javax.persistence.Table; +import javax.persistence.Transient; +import javax.persistence.UniqueConstraint; + +import org.locationtech.jts.geom.Geometry; + +import com.raytheon.uf.common.dataplugin.PluginDataObject; +import com.raytheon.uf.common.dataplugin.annotations.DataURI; +import com.raytheon.uf.common.dataplugin.annotations.NullString; +import com.raytheon.uf.common.dataplugin.ldad.LdadRecord; +import com.raytheon.uf.common.dataplugin.persist.IPersistable; +import com.raytheon.uf.common.geospatial.ISpatialEnabled; +import com.raytheon.uf.common.pointdata.IPointData; +import com.raytheon.uf.common.pointdata.PointDataView; +import com.raytheon.uf.common.pointdata.spatial.SurfaceObsLocation; +import com.raytheon.uf.common.serialization.annotations.DynamicSerialize; +import com.raytheon.uf.common.serialization.annotations.DynamicSerializeElement; + +/** + * Record implementation for ldadmesonet plugin. + * + *
+ *
+ * SOFTWARE HISTORY
+ *
+ * Date          Ticket#  Engineer  Description
+ * ------------- -------- --------- --------------------------------------------
+ * Sep 04, 2009           vkorolev  Initial creation
+ * Apr 04, 2013  1846     bkowal    Added an index on refTime and forecastTime
+ * Apr 12, 2013  1857     bgonzale  Added SequenceGenerator annotation.
+ * May 07, 2013  1869     bsteffen  Remove dataURI column from PluginDataObject.
+ * May 15, 2013  1869     bsteffen  Remove DataURI column from ldadmesonet.
+ * Aug 30, 2013  2298     rjpeter   Make getPluginName abstract
+ * Jul 20, 2015  4360     rferrel   Named unique constraint Made reportType and
+ *                                  dataProvider not nullable
+ * Mar 06, 2018  6851     randerso  Changed to extend LdadRecord. Code cleanup.
+ * May 10, 2018  7288     randerso  Removed unused and unimplemented
+ *                                  setStationId() method
+ * Aug 08, 2022  8892     tjensen   Update indexes for Hibernate 5
+ *
+ * 
+ * + * @author vkorolev + */ + +@Entity +@SequenceGenerator(initialValue = 1, name = PluginDataObject.ID_GEN, sequenceName = "ldadmesonetseq") +/* + * Both refTime and forecastTime are included in the refTimeIndex since + * forecastTime is unlikely to be used. + */ +@Table(name = "ldadmesonet", uniqueConstraints = { + @UniqueConstraint(name = "uk_ldadmesonet_datauri_fields", columnNames = { + "stationid", "reftime", "reporttype", "dataprovider", + "latitude", "longitude" }) }, indexes = { + @Index(name = "%TABLE%_refTimeIndex", columnList = "refTime, forecastTime"), + @Index(name = "%TABLE%_stationIndex", columnList = "stationId") }) + +@DynamicSerialize +public class MesonetLdadRecord extends LdadRecord + implements ISpatialEnabled, IPointData, IPersistable { + + private static final long serialVersionUID = 1L; + + private static final String OBS_TIME_FMT = "%1$tY/% + + + + + + diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.qc/.project b/edexOsgi/com.raytheon.uf.common.dataplugin.qc/.project new file mode 100644 index 0000000000..8104b96273 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.qc/.project @@ -0,0 +1,28 @@ + + + com.raytheon.uf.common.dataplugin.qc + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + + diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.qc/META-INF/MANIFEST.MF b/edexOsgi/com.raytheon.uf.common.dataplugin.qc/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..23f50943b0 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.qc/META-INF/MANIFEST.MF @@ -0,0 +1,15 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Qc Plug-in +Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.qc +Bundle-Version: 1.18.0.qualifier +Bundle-Vendor: RAYTHEON +Bundle-RequiredExecutionEnvironment: JavaSE-1.8 +Require-Bundle: com.raytheon.uf.common.dataplugin, + com.raytheon.uf.common.pointdata +Export-Package: com.raytheon.uf.common.dataplugin.qc +Import-Package: com.raytheon.uf.common.geospatial, + com.raytheon.uf.common.pointdata.spatial, + com.raytheon.uf.common.serialization.annotations, + com.raytheon.uf.common.status, + javax.persistence diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.qc/build.properties b/edexOsgi/com.raytheon.uf.common.dataplugin.qc/build.properties new file mode 100644 index 0000000000..34d2e4d2da --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.qc/build.properties @@ -0,0 +1,4 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + . diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.qc/com.raytheon.uf.common.dataplugin.qc.ecl b/edexOsgi/com.raytheon.uf.common.dataplugin.qc/com.raytheon.uf.common.dataplugin.qc.ecl new file mode 100644 index 0000000000..e69de29bb2 diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.qc/resources/com.raytheon.uf.common.dataplugin.qc.properties b/edexOsgi/com.raytheon.uf.common.dataplugin.qc/resources/com.raytheon.uf.common.dataplugin.qc.properties new file mode 100644 index 0000000000..b9b97f0ee2 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.qc/resources/com.raytheon.uf.common.dataplugin.qc.properties @@ -0,0 +1 @@ +HDF5_PATH=hdf5/QC \ No newline at end of file diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.qc/src/com/raytheon/uf/common/dataplugin/qc/QCRecord.java b/edexOsgi/com.raytheon.uf.common.dataplugin.qc/src/com/raytheon/uf/common/dataplugin/qc/QCRecord.java new file mode 100644 index 0000000000..a7cf22dd42 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.qc/src/com/raytheon/uf/common/dataplugin/qc/QCRecord.java @@ -0,0 +1,197 @@ +/** + * 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. + **/ + +package com.raytheon.uf.common.dataplugin.qc; + +import javax.persistence.Column; +import javax.persistence.Embedded; +import javax.persistence.Entity; +import javax.persistence.Index; +import javax.persistence.SequenceGenerator; +import javax.persistence.Table; +import javax.persistence.UniqueConstraint; + +import com.raytheon.uf.common.dataplugin.PluginDataObject; +import com.raytheon.uf.common.dataplugin.annotations.DataURI; +import com.raytheon.uf.common.dataplugin.annotations.NullString; +import com.raytheon.uf.common.dataplugin.persist.PersistablePluginDataObject; +import com.raytheon.uf.common.geospatial.ISpatialEnabled; +import com.raytheon.uf.common.geospatial.ISpatialObject; +import com.raytheon.uf.common.pointdata.IPointData; +import com.raytheon.uf.common.pointdata.PointDataView; +import com.raytheon.uf.common.pointdata.spatial.SurfaceObsLocation; +import com.raytheon.uf.common.serialization.annotations.DynamicSerialize; +import com.raytheon.uf.common.serialization.annotations.DynamicSerializeElement; + +/** + * Record class for QC data + * + *
+ *
+ * SOFTWARE HISTORY
+ * Date         Ticket#    Engineer    Description
+ * ------------ ---------- ----------- --------------------------
+ * Dec 07, 2009 3408       bphillip    Initial creation
+ * Apr 04, 2013 1846       bkowal      Added an index on refTime and
+ *                                     forecastTime
+ * Apr 12, 2013 1857       bgonzale    Added SequenceGenerator annotation.
+ * May 07, 2013 1869       bsteffen    Remove dataURI column from
+ *                                     PluginDataObject.
+ * May 16, 2013 1869       bsteffen    Remove DataURI column from qc.
+ * Aug 30, 2013 2298       rjpeter     Make getPluginName abstract
+ * Feb 27, 2014 2852       rferrel     Add getter/setter to FakePointDataView.
+ * Jul 21, 2015 4360       rferrel     Named unique constraint.
+ * Jan 04, 2018 6861       njensen     Removed unnecessary fields, use PointDataView
+ * Aug 08, 2022 8892       tjensen     Update indexes for Hibernate 5
+ *
+ *
+ * 
+ * + * @author bphillip + */ +@Entity +@SequenceGenerator(initialValue = 1, name = PluginDataObject.ID_GEN, sequenceName = "qcseq") +/* + * Both refTime and forecastTime are included in the refTimeIndex since + * forecastTime is unlikely to be used. + */ +@Table(name = "qc", uniqueConstraints = { + @UniqueConstraint(name = "uk_qc_datauri_fields", columnNames = { + "stationid", "reftime", "qcType", "latitude", + "longitude" }) }, indexes = { + @Index(name = "%TABLE%_refTimeIndex", columnList = "refTime, forecastTime"), + @Index(name = "%TABLE%_stationIndex", columnList = "stationId") }) + +@DynamicSerialize +public class QCRecord extends PersistablePluginDataObject + implements ISpatialEnabled, IPointData { + + private static final long serialVersionUID = -8836262244188895665L; + + @Embedded + @DataURI(position = 2, embedded = true) + @DynamicSerializeElement + private SurfaceObsLocation location; + + @Column(nullable = false, length = 20) + @DataURI(position = 1) + @NullString + @DynamicSerializeElement + private String qcType; + + @Column(length = 15) + private String ncSet; + + private PointDataView pointDataView; + + public QCRecord() { + + } + + public QCRecord(String uri) { + super(uri); + } + + public String getStationId() { + return location.getStationId(); + } + + /** + * @return the location + */ + public SurfaceObsLocation getLocation() { + return location; + } + + /** + * @param location + * the location to set + */ + public void setLocation(SurfaceObsLocation location) { + this.location = location; + } + + public float getLatitude() { + return location.getLatitude().floatValue(); + } + + public float getLongitude() { + return location.getLongitude().floatValue(); + } + + public float getElevation() { + return location.getElevation(); + } + + public static long getSerialVersionUID() { + return serialVersionUID; + } + + /** + * @return the ncSet + */ + public String getNcSet() { + return ncSet; + } + + /** + * @param ncSet + * the ncSet to set + */ + public void setNcSet(String ncSet) { + this.ncSet = ncSet; + } + + @Override + public ISpatialObject getSpatialObject() { + return location; + } + + /** + * @return the qcType + */ + public String getQcType() { + return qcType; + } + + /** + * @param qcType + * the qcType to set + */ + public void setQcType(String qcType) { + this.qcType = qcType; + } + + @Override + public PointDataView getPointDataView() { + return pointDataView; + } + + @Override + public void setPointDataView(PointDataView pointDataView) { + this.pointDataView = pointDataView; + } + + @Override + public String getPluginName() { + return "qc"; + } + +} diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.radar/utility/common_static/base/colormaps/Radar/DHR.cmap b/edexOsgi/com.raytheon.uf.common.dataplugin.radar/utility/common_static/base/colormaps/Radar/DHR.cmap new file mode 100644 index 0000000000..59afc87c3c --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.radar/utility/common_static/base/colormaps/Radar/DHR.cmap @@ -0,0 +1,259 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.warning/utility/common_static/base/warngen/phensigColors.xml b/edexOsgi/com.raytheon.uf.common.dataplugin.warning/utility/common_static/base/warngen/phensigColors.xml index 849f301767..9b4ccc99cf 100644 --- a/edexOsgi/com.raytheon.uf.common.dataplugin.warning/utility/common_static/base/warngen/phensigColors.xml +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.warning/utility/common_static/base/warngen/phensigColors.xml @@ -34,7 +34,9 @@ FL.Y FR.Y FW.A + FR.W FW.W + RF.W FZ.A FZ.W GL.A diff --git a/edexOsgi/com.raytheon.uf.common.ohd/src/com/raytheon/uf/common/ohd/AppsDefaults.java b/edexOsgi/com.raytheon.uf.common.ohd/src/com/raytheon/uf/common/ohd/AppsDefaults.java index 47d8fbce17..f5b59ed7f0 100644 --- a/edexOsgi/com.raytheon.uf.common.ohd/src/com/raytheon/uf/common/ohd/AppsDefaults.java +++ b/edexOsgi/com.raytheon.uf.common.ohd/src/com/raytheon/uf/common/ohd/AppsDefaults.java @@ -296,10 +296,7 @@ public class AppsDefaults { if (_appsDefaultsNationalFile.exists()) { logger.info("Setting base Apps_defaults file: " + _appsDefaultsNationalFile); - } else { - logger.error("No base Apps_defaults file found."); - } - + } if (this.appsDefaultsObserver == null) { appsDefaultsObserver = new ILocalizationPathObserver() { @Override diff --git a/edexOsgi/com.raytheon.uf.common.parameter/utility/common_static/base/parameter/definition/parameters.xml b/edexOsgi/com.raytheon.uf.common.parameter/utility/common_static/base/parameter/definition/parameters.xml index c5d1704d60..bfa2b0e5a8 100644 --- a/edexOsgi/com.raytheon.uf.common.parameter/utility/common_static/base/parameter/definition/parameters.xml +++ b/edexOsgi/com.raytheon.uf.common.parameter/utility/common_static/base/parameter/definition/parameters.xml @@ -40,7 +40,7 @@ Absolute Vorticity AV - 1/s + /s Categorical Rain @@ -1152,12 +1152,12 @@ Vertical u-component shear VUCSH - 1/s + /s Vertical v-component shear VVCSH - 1/s + /s Haines Index @@ -1217,7 +1217,7 @@ Vertical Shear Speed VSS - 1/s + /s Cloud Mixing Ratio diff --git a/edexOsgi/com.raytheon.uf.common.site/utility/common_static/base/textdb/config/afos_lookup_table.dat b/edexOsgi/com.raytheon.uf.common.site/utility/common_static/base/textdb/config/afos_lookup_table.dat new file mode 100644 index 0000000000..e8f4d3ec75 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.common.site/utility/common_static/base/textdb/config/afos_lookup_table.dat @@ -0,0 +1,588 @@ +K1Y7 PHX +K40J MIA +K7VM WBC +KAAF BHM +KABE PHL +KABI LBB +KABQ ABQ +KABR FSD +KABX ABQ +KACT FTW +KACY PHL +KADG ARB +KAEX NEW +KAGS CAE +KAHN ATL +KAIA OMA +KAKQ WBC +KALB ALB +KALO DSM +KALR ATL +KALS DEN +KALW SEA +KALY ALB +KAMA LBB +KAMX MIA +KAPA DEN +KAPC SFO +KAPN ARB +KAPX ARB +KARB ARB +KARX MKE +KASE DEN +KAST PDX +KATL ATL +KATR ATL +KATX SEA +KAUO BHM +KAUS SAT +KAVL CAE +KAVP ALB +KAYS ATL +KBBX SFO +KBCT MIA +KBDL BOS +KBDR NYC +KBFF OMA +KBFI SEA +KBFL SFO +KBGM ALB +KBHM BHM +KBHX SFO +KBIH LAX +KBIL GTF +KBIS BIS +KBIX JAN +KBJC DEN +KBKW CRW +KBLU SFO +KBLX GTF +KBMX BHM +KBNA MEM +KBNO PDX +KBOI BOI +KBOS BOS +KBOU DEN +KBOX BOS +KBPT SAT +KBRO SAT +KBTM GTF +KBTR NEW +KBTV ALB +KBUF BUF +KBVY BOS +KBWI WBC +KBYX MIA +KBYZ GTF +KBZN GTF +KCAE CAE +KCAK CLE +KCAO ABQ +KCAR PWM +KCBW PWM +KCBX BOI +KCCX PHL +KCEC SFO +KCHA MEM +KCHH BOS +KCHI CHI +KCHM CLE +KCHS CAE +KCIC SFO +KCIR CHI +KCKL BHM +KCLE CLE +KCLL FTW +KCLT CAE +KCLX CAE +KCMH CLE +KCNK TOP +KCNU TOP +KCON PWM +KCOS DEN +KCOU STL +KCPR CYS +KCRH STL +KCRP SAT +KCRW CRW +KCSG ATL +KCTP PHL +KCVG CLE +KCXX ALB +KCYS CYS +KDAB MIA +KDAX SFO +KDAY CLE +KDBQ DSM +KDCA WBC +KDDC TOP +KDEN DEN +KDFW FTW +KDIX PHL +KDLH MSP +KDMO DMO +KDMX DSM +KDNR DEN +KDRA RNO +KDRT SAT +KDSM DSM +KDTW ARB +KDTX ARB +KDVN CHI +KEAT SEA +KEAX STL +KEEW MKE +KEGE DEN +KEHU SRH +KEKA SFO +KEKN CRW +KEKO RNO +KELP LBB +KELY RNO +KEMP TOP +KEMX PHX +KENX ALB +KEPZ LBB +KERI CLE +KERO RNO +KESF NEW +KESX RNO +KEUG PDX +KEVV IND +KEWR NYC +KEWX SAT +KEYW MIA +KEYX LAX +KFAR BIS +KFAT SFO +KFCA GTF +KFCH SFO +KFCX WBC +KFFC ATL +KFGF BIS +KFGZ PHX +KFLG PHX +KFLL MIA +KFLO RDU +KFMY MIA +KFNT ARB +KFSD FSD +KFSM LIT +KFSX PHX +KFTG DEN +KFTW FTW +KFWA IND +KFWD FTW +KFWR FTW +KFWS FTW +KGBG CHI +KGCK TOP +KGCN PHX +KGEG SEA +KGFF STL +KGGG FTW +KGGW GTF +KGID OMA +KGJT DEN +KGJX DEN +KGLD TOP +KGLH JAN +KGLS SAT +KGPI GTF +KGRB MKE +KGRI OMA +KGRK FTW +KGRR ARB +KGSO RDU +KGSP CAE +KGTF GTF +KGVW STL +KGWC WBC +KGWX JAN +KGYX PWM +KHAR PHL +KHAT RDU +KHCO WSH +KHDO SAT +KHGX SAT +KHLN GTF +KHMS SEA +KHNX SFO +KHON FSD +KHOU SAT +KHSI OMA +KHSV HUN +KHTL ARB +KHTS CRW +KHTX HUN +KHUF IND +KHUN HUN +KHUT TOP +KHVN NYC +KHVR GTF +KIAD WBC +KIAG BUF +KIAH SAT +KICT TOP +KICX SLC +KILG PHL +KILM RDU +KILN CLE +KILX CHI +KIND IND +KINL MSP +KINW PHX +KINX OKC +KIOW DSM +KIPL SFO +KIPT PHL +KISN BIS +KIWA PHX +KIWX IND +KIXD TOP +KJAN JAN +KJAX MIA +KJCT LBB +KJEF STL +KJFK NYC +KJKL SDF +KKCI MKC +KKEY MIA +KKRF MKC +KLAF IND +KLAN ARB +KLAS RNO +KLAX LAX +KLBB LBB +KLBF OMA +KLBG LAX +KLCH NEW +KLEX SDF +KLGA NYC +KLGB LAX +KLIC DEN +KLIT LIT +KLIX NEW +KLKN RNO +KLMK SDF +KLMT PDX +KLND CYS +KLNK OMA +KLNX OMA +KLOT CHI +KLOX LAX +KLRX RNO +KLSE MKE +KLSX STL +KLTX RDU +KLUB LBB +KLUK CLE +KLVX SDF +KLWS BOI +KLWX WBC +KLYH WBC +KLZK LIT +KMAF LBB +KMAX PDX +KMBX BIS +KMCI STL +KMCN ATL +KMCO MIA +KMEG MEM +KMEI JAN +KMEM MEM +KMFD CLE +KMFL MIA +KMFR PDX +KMGM BHM +KMGW PIT +KMHK TOP +KMHS SFO +KMHX RDU +KMIA MIA +KMKC MKC +KMKE MKE +KMKG ARB +KMKR STL +KMKX MKE +KMLB MIA +KMLF SLC +KMLI CHI +KMLS GTF +KMMO CHI +KMOB BHM +KMOD SFO +KMPX MSP +KMQT ARB +KMRX MEM +KMRY SFO +KMSN MKE +KMSO GTF +KMSP MSP +KMSR MSP +KMSV ALB +KMSX GTF +KMSY NEW +KMTH MIA +KMTR SFO +KMTX SLC +KMUX SFO +KMVX BIS +KMWI NMC +KMXX BHM +KMYR RDU +KNBC CAE +KNBK PHL +KNCF NCF +KNEC AAA +KNES AAA +KNEW NEW +KNFD NFD +KNHC AAA +KNHK WBC +KNHZ PWM +KNMA MIA +KNMK PHL +KNMW PDX +KNQA MEM +KNRX MEM +KNXK LAX +KNYC NYC +KOAK SFO +KOAX OMA +KOFK OMA +KOHX MEM +KOJC TOP +KOKC OKC +KOKX NYC +KOLM SEA +KOMA OMA +KONT LAX +KORD CHI +KORF WBC +KORH BOS +KORK WBC +KORL MIA +KORN NEW +KOTH PDX +KOTX SEA +KOUN OKC +KOVN OMA +KPAH SDF +KPBI MIA +KPBS SEA +KPBZ PIT +KPDR PDX +KPDT PDX +KPDX PDX +KPGA PHX +KPHI PHL +KPHL PHL +KPHX PHX +KPIA CHI +KPIE MIA +KPIH BOI +KPIT PIT +KPKB CRW +KPMD LAX +KPNE PHL +KPNS BHM +KPPF TOP +KPQR PDX +KPSP LAX +KPSR PHX +KPTR PDX +KPUB DEN +KPUX DEN +KPVD BOS +KPWM PWM +KRAH RDU +KRAL LAX +KRAP FSD +KRAX RDU +KRBD FTW +KRBL SFO +KRDD SFO +KRDG PHL +KRDM PDX +KRDU RDU +KREV RNO +KRFD CHI +KRGX RNO +KRHA PIT +KRIC WBC +KRIV LAX +KRIW CYS +KRLX CRW +KRMG ATL +KRNK WBC +KRNO RNO +KROA WBC +KROC BUF +KROW ABQ +KRRD SFO +KRSA RNO +KRST MSP +KRTX RDU +KRYY ATL +KSAC SFO +KSAN LAX +KSAT SAT +KSAV CAE +KSBA LAX +KSBN IND +KSCK SFO +KSCS NMC +KSDB SFO +KSDF SDF +KSDM LAX +KSEA SEA +KSEP FTW +KSEW SEA +KSEZ PHX +KSFO SFO +KSFX BOI +KSGF STL +KSGX LAX +KSHD WBC +KSHR CYS +KSHV NEW +KSIL NEW +KSJC SFO +KSJT LBB +KSJU SJU +KSLC SLC +KSLE PDX +KSLN TOP +KSMF SFO +KSMP SEA +KSMX SFO +KSNA LAX +KSNS SFO +KSOX LAX +KSPI CHI +KSPS OKC +KSRX LIT +KSSM ARB +KSTC MSP +KSTJ STL +KSTL STL +KSTN JAN +KSTO SFO +KSTR SLC +KSUA MIA +KSUX DSM +KSWF NYC +KSXT PDX +KSYR ALB +KSYS FTW +KTAE MIA +KTAR BOS +KTBW MIA +KTCG AAA +KTCS ABQ +KTDW LBB +KTFX GTF +KTIR CRW +KTLH MIA +KTLR SFO +KTLX OKC +KTMB MIA +KTOI BHM +KTOL CLE +KTOP TOP +KTPA MIA +KTRI MEM +KTRM LAX +KTSA OKC +KTUA OKC +KTUL OKC +KTUP JAN +KTUR OKC +KTUS PHX +KTWC PHX +KTWF BOI +KTWX TOP +KTYS MEM +KTYX ALB +KUCR SFO +KUDX FSD +KUEX OMA +KUIL SEA +KUKI SFO +KUMN STL +KUNR FSD +KVBX LAX +KVCT SAT +KVEF RNO +KVQN WBC +KVTN OMA +KVTU LAX +KVTX LAX +KVUY ERH +KWAL WBC +KWBC AAA +KWBJ AAA +KWMC RNO +KWNC AAA +KWNH AAA +KWNJ AAA +KWNM AAA +KWNO AAA +KWNP SWX +KWNS AAA +KWSH WSH +KYKM SEA +KYNG CLE +KYUM PHX +KYUX PHX +NSTU HFO +PAAQ ANC +PABE ANC +PABR FAI +PACD ANC +PACR ACR +PACV ANC +PADQ ANC +PAER ANC +PAFA FAI +PAFC ANC +PAFG FAI +PAHO ANC +PAJK JNU +PAJN JNU +PAKN ANC +PALU ANC +PAMC FAI +PANC ANC +PANT JNU +PAOM FAI +PAOT FAI +PASN ANC +PAUN FAI +PAVD ANC +PAVW ANC +PAWU ANC +PAYA JNU +PGUM GUM +PHEB HFO +PHFO HFO +PHLI HFO +PHNL HFO +PHTO HFO +PKMR GUM +PNSB FAI +PTKK GUM +PTKR GUM +PTSA GUM +PTTP GUM +PTYA GUM +PWCZ FAI +TIST SJU +TISX SJU +TJBQ SJU +TJMZ SJU +TJNR SJU +TJPS SJU +TJSJ SJU +TSPN SJU diff --git a/edexOsgi/com.raytheon.uf.edex.dataplugins.feature/feature.xml b/edexOsgi/com.raytheon.uf.edex.dataplugins.feature/feature.xml index c005f283a0..03a8efb725 100644 --- a/edexOsgi/com.raytheon.uf.edex.dataplugins.feature/feature.xml +++ b/edexOsgi/com.raytheon.uf.edex.dataplugins.feature/feature.xml @@ -44,7 +44,20 @@ install-size="0" version="0.0.0" unpack="false"/> + + + + + + + + + + +
- +
diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.grid/utility/common_static/base/bundles/grid/MSLPComparison.xml b/edexOsgi/com.raytheon.uf.edex.plugin.grid/utility/common_static/base/bundles/grid/MSLPComparison.xml index d5e6c182e4..9cdb674168 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.grid/utility/common_static/base/bundles/grid/MSLPComparison.xml +++ b/edexOsgi/com.raytheon.uf.edex.plugin.grid/utility/common_static/base/bundles/grid/MSLPComparison.xml @@ -43,7 +43,7 @@ - + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.grid/utility/common_static/base/styleRules/d2dContourStyleRules.xml b/edexOsgi/com.raytheon.uf.edex.plugin.grid/utility/common_static/base/styleRules/d2dContourStyleRules.xml index 7d73f1ece0..d34b533ba9 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.grid/utility/common_static/base/styleRules/d2dContourStyleRules.xml +++ b/edexOsgi/com.raytheon.uf.edex.plugin.grid/utility/common_static/base/styleRules/d2dContourStyleRules.xml @@ -826,7 +826,7 @@ m/s| 1.0 | 0.0 | 4 | | |..|8000F0FF| | 0 | 5 geoVort - /100000 + /s*1.0E5 2 @@ -846,7 +846,7 @@ m/s| 1.0 | 0.0 | 4 | | |..|8000F0FF| | 0 | 5 RV - /100000 + /s*1.0E5 100 @@ -2842,7 +2842,7 @@ C | 1 | 0 | 4 | | |..|8000F0FF|,,,80 | 0 | 2 AV - /100000 + /s*1.0E5 80 @@ -4238,7 +4238,7 @@ in | .03937 | 0 | 4 | | |..|8000F0FF| | 16 | \ geoVort - /100000 + /s*1.0E5 100 8 diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.grid/utility/common_static/base/styleRules/gridImageryStyleRules.xml b/edexOsgi/com.raytheon.uf.edex.plugin.grid/utility/common_static/base/styleRules/gridImageryStyleRules.xml index bed44a1f27..03461016be 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.grid/utility/common_static/base/styleRules/gridImageryStyleRules.xml +++ b/edexOsgi/com.raytheon.uf.edex.plugin.grid/utility/common_static/base/styleRules/gridImageryStyleRules.xml @@ -1462,7 +1462,7 @@ geoVort - /100000 + /s*1.0E5 -5 30 @@ -5014,7 +5014,7 @@ geoVort - /100000 + /s*1.0E5 5 300 diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/.classpath b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/.classpath new file mode 100644 index 0000000000..1fa3e6803d --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/.project b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/.project new file mode 100644 index 0000000000..8b8354367c --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/.project @@ -0,0 +1,28 @@ + + + com.raytheon.uf.edex.plugin.ldadmesonet + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/META-INF/MANIFEST.MF b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..54dbeb466f --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/META-INF/MANIFEST.MF @@ -0,0 +1,12 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Ldadmesonet Plug-in +Bundle-SymbolicName: com.raytheon.uf.edex.plugin.ldadmesonet +Bundle-Version: 1.18.0.qualifier +Bundle-Vendor: RAYTHEON +Bundle-RequiredExecutionEnvironment: JavaSE-1.8 +Require-Bundle: com.raytheon.uf.common.dataplugin.ldad, + com.raytheon.uf.common.dataplugin.ldadmesonet, + com.raytheon.edex.common, + com.raytheon.uf.edex.pointdata +Import-Package: com.raytheon.uf.common.status diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/build.properties b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/build.properties new file mode 100644 index 0000000000..20a5272307 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/build.properties @@ -0,0 +1,6 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + utility/,\ + .,\ + res/ diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/com.raytheon.uf.edex.plugin.ldadmesonet.ecl b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/com.raytheon.uf.edex.plugin.ldadmesonet.ecl new file mode 100644 index 0000000000..e69de29bb2 diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/res/pointdata/ldadmesonet.xml b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/res/pointdata/ldadmesonet.xml new file mode 100644 index 0000000000..0b7cba9011 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/res/pointdata/ldadmesonet.xml @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/res/pointdata/ldadmesonetdb.xml b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/res/pointdata/ldadmesonetdb.xml new file mode 100644 index 0000000000..3c9a8bcf06 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/res/pointdata/ldadmesonetdb.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/res/spring/ldadmesonet-common.xml b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/res/spring/ldadmesonet-common.xml new file mode 100644 index 0000000000..c16506082e --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/res/spring/ldadmesonet-common.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/res/spring/ldadmesonet-ingest.xml b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/res/spring/ldadmesonet-ingest.xml new file mode 100644 index 0000000000..5e7c8a20f0 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/res/spring/ldadmesonet-ingest.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + java.lang.Throwable + + + + + + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/src/com/raytheon/uf/edex/plugin/ldadmesonet/LdadmesonetPointDataTransform.java b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/src/com/raytheon/uf/edex/plugin/ldadmesonet/LdadmesonetPointDataTransform.java new file mode 100644 index 0000000000..1410fbd131 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/src/com/raytheon/uf/edex/plugin/ldadmesonet/LdadmesonetPointDataTransform.java @@ -0,0 +1,557 @@ +/** + * 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. + **/ +package com.raytheon.uf.edex.plugin.ldadmesonet; + +import java.io.File; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import com.raytheon.uf.common.dataplugin.PluginDataObject; +import com.raytheon.uf.common.dataplugin.ldadmesonet.MesonetLdadRecord; +import com.raytheon.uf.common.pointdata.PointDataContainer; +import com.raytheon.uf.common.pointdata.PointDataDescription; +import com.raytheon.uf.common.pointdata.PointDataView; +import com.raytheon.uf.common.pointdata.spatial.SurfaceObsLocation; +import com.raytheon.uf.edex.plugin.ldadmesonet.dao.LdadMesonetDao; + +/** + * Transform LDAD MESONET records into Point Data Model. + * + *
+ * 
+ * SOFTWARE HISTORY
+ * 
+ * Date         Ticket#     Engineer    Description
+ * ------------ ----------  ----------- --------------------------
+ * Oct 09, 2009 DR2814      vkorolev    Initial creation
+ * Aug 30, 2013 2298        rjpeter     Make getPluginName abstract
+ * Jul 23, 2014 3410        bclement    location changed to floats
+ * Aug 15, 2014 3530        bclement    moved from common to edex
+ * 
+ * 
+ * + * @author vkorolev + * @version 1 + */ + +public class LdadmesonetPointDataTransform { + + private LdadMesonetDao dao; + + private PointDataDescription description; + + // ------------------Common params (From OBS + // plugin)---------------------------- + private static final String PRESS_CHANGE3_HOUR = "pressChange3Hour"; + + private static final String PRESS_CHANGE_CHAR = "pressChangeChar"; + + private static final String ALTIMETER = "altimeter"; + + private static final String WIND_GUST = "windGust"; + + private static final String WIND_SPEED = "windSpeed"; + + private static final String DEWPOINT = "dewpoint"; + + private static final String TEMPERATURE = "temperature"; + + private static final String PRES_WEATHER = "presWeather"; + + private static final String VISIBILITY = "visibility"; + + private static final String LONGITUDE = "longitude"; + + private static final String LATITUDE = "latitude"; + + private static final String ELEVATION = "elevation"; + + private static final String STATION_NAME = "stationName"; + + private static final String DATAURI = "dataURI"; + + // ------------------From LDAD mesonet netCDF------------------------ + private static final String STORAGE_TYPE = "storageType"; + + private static final String STATION_ID = "stationId"; + + private static final String DATA_PROVIDER = "dataProvider"; + + private static final String HOME_WFO = "homeWFO"; + + private static final String OBSERVATION_TIME = "observationTime"; + + private static final String PROVIDER_ID = "providerId"; + + private static final String HANDBOOK5_ID = "handbook5Id"; + + private static final String STATION_TYPE = "stationType"; + + private static final String REPORT_TIME = "reportTime"; + + private static final String RECEIVED_TIME = "receivedTime"; + + private static final String NUMERICAL_WMO_ID = "numericWMOid"; + + private static final String DATA_PLATFORM_TYPE = "dataPlatformType"; + + private static final String PLATFORM_TRUE_DIRECTION = "platformTrueDirection"; + + private static final String PLARFORM_TRUE_SPEED = "platformTrueSpeed"; + + private static final String TEMP_CHANGE_TIME = "tempChangeTime"; + + private static final String WET_BULB_TEMPERATURE = "wetBulbTemperature"; + + private static final String RH_CHANGE_TIME = "rhChangeTime"; + + private static final String STATION_PRESSURE = "stationPressure"; + + private static final String STATION_PRESS_CHANGE_TIME = "stationPressChangeTime"; + + private static final String WIND_DIR_CHANGE_TIME = "windDirChangeTime"; + + private static final String WIND_SPEED_CHANGE_TIME = "windSpeedChangeTime"; + + private static final String WIND_GUST_CHANGE_TIME = "windGustChangeTime"; + + private static final String WIND_DIR_MIN = "windDirMin"; + + private static final String WIND_DIR_MAX = "windDirMax"; + + private static final String VISIBILITY_STATUS = "visibilityStatus"; + + private static final String TOTAL_CLOUD_COVER = "totalCloudCover"; + + private static final String CLOUD_BASE_HEIGHT = "cloudBaseHeight"; + + private static final String LOW_LEVEL_CLOUD_TYPE = "lowLevelCloudType"; + + private static final String MID_LEVEL_CLOUD_TYPE = "midLevelCloudType"; + + private static final String HIGH_LEVEL_CLOUD_TYPE = "highLevelCloudType"; + + private static final String MAX_TEMP_RECORD_PERIOD = "maxTempRecordPeriod"; + + private static final String MAXIMUM_TEMPERATURE = "maximumTemperature"; + + private static final String MIN_TEMP_RECORD_PERIOD = "minTempRecordPeriod"; + + private static final String MINIMUM_TEMPERATURE = "minimumTemperature"; + + private static final String PRECIP_ACCUM = "precipAccum"; + + private static final String PRECIP_TYPE = "precipType"; + + private static final String PRECIP_INTENSITY = "precipIntensity"; + + private static final String TIME_SINCE_LAST_PCP = "timeSinceLastPcp"; + + private static final String SOLAR_RADIATION = "solarRadiation"; + + private static final String SOLAR_RAD_CHANGE_TIME = "solarRadChangeTime"; + + private static final String SEA_SURFACE_TEMP = "seaSurfaceTemp"; + + private static final String WAVE_PERIOD = "wavePeriod"; + + private static final String WAVE_HEIGHT = "waveHeight"; + + private static final String RAW_MESONET = "rawMessage"; + + private static final String REL_HUMIDITY = "relHumidity"; + + private static final String WIND_DIR = "windDir"; + + private static final String PRESSURE = "pressure"; + + private static final String SEA_LEVEL_PRESSURE = "seaLevelPressure"; + + private static final String PRECIP_RATE = "precipRate"; + + private static final String FUEL_TEMPERATURE = "fuelTemperature"; + + private static final String FUEL_MOISTURE = "fuelMoisture"; + + private static final String SOIL_TEMPERATURE = "soilTemperature"; + + private static final String SOIL_MOISTURE = "soilMoisture"; + + /** + * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! It is important to + * keep this up to date or risk breaking backwards compatibility + * + */ + private static final String[] ALL_PARAMS = { PRESS_CHANGE3_HOUR, + PRESS_CHANGE_CHAR, ALTIMETER, WIND_GUST, WIND_SPEED, DEWPOINT, + TEMPERATURE, PRES_WEATHER, VISIBILITY, LONGITUDE, LATITUDE, + SEA_LEVEL_PRESSURE, STATION_NAME, DATAURI, STORAGE_TYPE, ELEVATION, + STATION_ID, DATA_PROVIDER, HOME_WFO, OBSERVATION_TIME, PROVIDER_ID, + HANDBOOK5_ID, STATION_TYPE, REPORT_TIME, RECEIVED_TIME, + NUMERICAL_WMO_ID, DATA_PLATFORM_TYPE, PLATFORM_TRUE_DIRECTION, + PLARFORM_TRUE_SPEED, TEMP_CHANGE_TIME, WET_BULB_TEMPERATURE, + RH_CHANGE_TIME, STATION_PRESSURE, STATION_PRESS_CHANGE_TIME, + WIND_DIR_CHANGE_TIME, WIND_SPEED_CHANGE_TIME, + WIND_GUST_CHANGE_TIME, WIND_DIR_MIN, WIND_DIR_MAX, + VISIBILITY_STATUS, TOTAL_CLOUD_COVER, CLOUD_BASE_HEIGHT, + LOW_LEVEL_CLOUD_TYPE, MID_LEVEL_CLOUD_TYPE, HIGH_LEVEL_CLOUD_TYPE, + MAX_TEMP_RECORD_PERIOD, MAXIMUM_TEMPERATURE, + MIN_TEMP_RECORD_PERIOD, MINIMUM_TEMPERATURE, PRECIP_ACCUM, + PRECIP_TYPE, PRECIP_INTENSITY, TIME_SINCE_LAST_PCP, + SOLAR_RADIATION, SOLAR_RAD_CHANGE_TIME, SEA_SURFACE_TEMP, + WAVE_PERIOD, WAVE_HEIGHT, RAW_MESONET, REL_HUMIDITY, WIND_DIR, + PRESSURE, SEA_LEVEL_PRESSURE, PRECIP_RATE, FUEL_TEMPERATURE, + FUEL_MOISTURE, SOIL_TEMPERATURE, SOIL_MOISTURE }; + + public static final String ALL_PARAMS_LIST; + static { + StringBuffer sb = new StringBuffer(); + boolean first = true; + for (String s : ALL_PARAMS) { + if (!first) { + sb.append(", "); + } else { + first = false; + } + sb.append(s); + } + ALL_PARAMS_LIST = sb.toString(); + } + + // public LdadmesonetPointDataTransform() throws JAXBException, + // PluginException { + // this.description = getDescription("ldadmesonet"); + // logger.info("=============PointDataDescription loaded=============="); + // this.dao = new LdadMesonetDao("ldadmesonet"); + // } + + public LdadmesonetPointDataTransform() { + try { + this.dao = new LdadMesonetDao("ldadmesonet"); + this.description = dao.getPointDataDescription(null); + } catch (Exception e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } + + public PluginDataObject[] toPointData(PluginDataObject[] pdo) { + + if (pdo.length > 0) { + Map pointMap = new HashMap(); + + for (PluginDataObject p : pdo) { + if (!(p instanceof MesonetLdadRecord)) { + continue; + } + + File f = this.dao.getFullFilePath(p); + + PointDataContainer pdc = pointMap.get(f); + if (pdc == null) { + pdc = PointDataContainer.build(this.description); + pointMap.put(f, pdc); + } + + MesonetLdadRecord mesor = (MesonetLdadRecord) p; + PointDataView pdv = buildView(pdc, mesor); + mesor.setPointDataView(pdv); + } + } + return pdo; + } + + private PointDataView buildView(PointDataContainer container, + MesonetLdadRecord record) { + PointDataView pdv = container.append(); + + if (record.getRawMessage() != null) { + pdv.setString(RAW_MESONET, record.getRawMessage()); + } + if (record.getSeaLevelPressure() != null) { + pdv.setFloat(SEA_LEVEL_PRESSURE, record.getSeaLevelPressure()); + } + + if (record.getObservationTime() != null) { + pdv.setLong(OBSERVATION_TIME, record.getDataTime().getRefTime() + .getTime()); + } + if (record.getVisibility() != null) { + pdv.setFloat(VISIBILITY, record.getVisibility()); + } + if (record.getTemperature() != null) { + pdv.setFloat(TEMPERATURE, record.getTemperature()); + } + if (record.getDewpoint() != null) { + pdv.setFloat(DEWPOINT, record.getDewpoint()); + } + if (record.getWindSpeed() != null) { + pdv.setFloat(WIND_SPEED, record.getWindSpeed()); + } + if (record.getWindGust() != null) { + pdv.setFloat(WIND_GUST, record.getWindGust()); + } + if (record.getAltimeter() != null) { + pdv.setFloat(ALTIMETER, record.getAltimeter()); + } + if (record.getPressChangeChar() != null) { + pdv.setInt(PRESS_CHANGE_CHAR, record.getPressChangeChar() + .intValue()); + } + if (record.getPressChange3Hour() != null) { + pdv.setFloat(PRESS_CHANGE3_HOUR, record.getPressChange3Hour()); + } + + // --------------------------------------LDAD mesonet + // specific------------------------ + + if (record.getReportTime() != null) { + pdv.setLong(REPORT_TIME, record.getReportTime()); + } + if (record.getReceivedTime() != null) { + pdv.setLong(RECEIVED_TIME, record.getReceivedTime().longValue()); + } + if (record.getNumericWMOid() != null) { + pdv.setLong(NUMERICAL_WMO_ID, record.getNumericWMOid()); + } + if (record.getDataPlatformType() != null) { + pdv.setInt(DATA_PLATFORM_TYPE, record.getDataPlatformType() + .intValue()); + } + if (record.getPlatformTrueDirection() != null) { + pdv.setFloat(PLATFORM_TRUE_DIRECTION, + record.getPlatformTrueDirection()); + } + if (record.getPlatformTrueSpeed() != null) { + pdv.setFloat(PLARFORM_TRUE_SPEED, record.getPlatformTrueSpeed()); + } + if (record.getTempChangeTime() != null) { + pdv.setLong(TEMP_CHANGE_TIME, record.getTempChangeTime() + .longValue()); + } + if (record.getWetBulbTemperature() != null) { + pdv.setFloat(WET_BULB_TEMPERATURE, record.getWetBulbTemperature()); + } + if (record.getRhChangeTime() != null) { + pdv.setLong(RH_CHANGE_TIME, record.getRhChangeTime().longValue()); + } + if (record.getStationPressure() != null) { + pdv.setFloat(STATION_PRESSURE, record.getStationPressure()); + } + if (record.getStationPressChangeTime() != null) { + pdv.setLong(STATION_PRESS_CHANGE_TIME, record + .getStationPressChangeTime().longValue()); + } + if (record.getWindDirChangeTime() != null) { + pdv.setLong(WIND_DIR_CHANGE_TIME, record.getWindDirChangeTime() + .longValue()); + } + if (record.getWindSpeedChangeTime() != null) { + pdv.setLong(WIND_SPEED_CHANGE_TIME, record.getWindSpeedChangeTime() + .longValue()); + } + if (record.getWindGustChangeTime() != null) { + pdv.setLong(WIND_GUST_CHANGE_TIME, record.getWindGustChangeTime() + .longValue()); + } + if (record.getWindDirMin() != null) { + pdv.setFloat(WIND_DIR_MIN, record.getWindDirMin()); + } + if (record.getWindDirMax() != null) { + pdv.setFloat(WIND_DIR_MAX, record.getWindDirMax()); + } + if (record.getVisibilityStatus() != null) { + pdv.setString(VISIBILITY_STATUS, record.getVisibilityStatus()); + } + if (record.getTotalCloudCover() != null) { + pdv.setFloat(TOTAL_CLOUD_COVER, record.getTotalCloudCover()); + } + if (record.getCloudBaseHeight() != null) { + pdv.setInt(CLOUD_BASE_HEIGHT, record.getCloudBaseHeight() + .intValue()); + } + if (record.getLowLevelCloudType() != null) { + pdv.setInt(LOW_LEVEL_CLOUD_TYPE, record.getLowLevelCloudType() + .intValue()); + } + if (record.getMidLevelCloudType() != null) { + pdv.setInt(MID_LEVEL_CLOUD_TYPE, record.getMidLevelCloudType() + .intValue()); + } + if (record.getHighLevelCloudType() != null) { + pdv.setInt(HIGH_LEVEL_CLOUD_TYPE, record.getHighLevelCloudType() + .intValue()); + } + if (record.getMinTempRecordPeriod() != null) { + pdv.setInt(MAX_TEMP_RECORD_PERIOD, record.getMinTempRecordPeriod() + .intValue()); + } + if (record.getMaximumTemperature() != null) { + pdv.setFloat(MAXIMUM_TEMPERATURE, record.getMaximumTemperature()); + } + if (record.getMinTempRecordPeriod() != null) { + pdv.setInt(MIN_TEMP_RECORD_PERIOD, record.getMinTempRecordPeriod() + .intValue()); + } + if (record.getMinimumTemperature() != null) { + pdv.setFloat(MINIMUM_TEMPERATURE, record.getMinimumTemperature()); + } + if (record.getPrecipAccum() != null) { + pdv.setFloat(PRECIP_ACCUM, record.getPrecipAccum()); + } + if (record.getPrecipType() != null) { + pdv.setInt(PRECIP_TYPE, record.getPrecipType().intValue()); + } + if (record.getPrecipIntensity() != null) { + pdv.setInt(PRECIP_INTENSITY, record.getPrecipIntensity().intValue()); + } + if (record.getTimeSinceLastPcp() != null) { + pdv.setLong(TIME_SINCE_LAST_PCP, record.getTimeSinceLastPcp() + .longValue()); + } + if (record.getSolarRadiation() != null) { + pdv.setFloat(SOLAR_RADIATION, record.getSolarRadiation()); + } + if (record.getSolarRadChangeTime() != null) { + pdv.setLong(SOLAR_RAD_CHANGE_TIME, record.getSolarRadChangeTime() + .longValue()); + } + if (record.getSeaSurfaceTemp() != null) { + pdv.setFloat(SEA_SURFACE_TEMP, record.getSeaSurfaceTemp()); + } + if (record.getWavePeriod() != null) { + pdv.setFloat(WAVE_PERIOD, record.getWavePeriod()); + } + if (record.getWaveHeight() != null) { + pdv.setFloat(WAVE_HEIGHT, record.getWaveHeight()); + } + if (record.getRelHumidity() != null) { + pdv.setFloat(REL_HUMIDITY, record.getRelHumidity()); + } + if (record.getWindDir() != null) { + pdv.setFloat(WIND_DIR, record.getWindDir()); + } + if (record.getPressure() != null) { + pdv.setFloat(PRESSURE, record.getPressure()); + } + if (record.getSeaLevelPressure() != null) { + pdv.setFloat(SEA_LEVEL_PRESSURE, record.getSeaLevelPressure()); + } + if (record.getPrecipRate() != null) { + pdv.setFloat(PRECIP_RATE, record.getPrecipRate()); + } + if (record.getFuelTemperature() != null) { + pdv.setFloat(FUEL_TEMPERATURE, record.getFuelTemperature()); + } + if (record.getFuelMoisture() != null) { + pdv.setFloat(FUEL_MOISTURE, record.getFuelMoisture()); + } + if (record.getSoilTemperature() != null) { + pdv.setFloat(SOIL_TEMPERATURE, record.getSoilTemperature()); + } + if (record.getSoilMoisture() != null) { + pdv.setFloat(SOIL_MOISTURE, record.getSoilMoisture()); + } + return pdv; + } + + public static MesonetLdadRecord toMesonetLdadRecord(PointDataView pdv) { + MesonetLdadRecord mr = new MesonetLdadRecord(); + mr.setAltimeter(pdv.getNumber(ALTIMETER).floatValue()); + mr.setDewpoint(pdv.getNumber(DEWPOINT).floatValue()); + SurfaceObsLocation loc = new SurfaceObsLocation( + pdv.getString(STATION_ID)); + float lat = pdv.getNumber(LATITUDE).floatValue(); + float lon = pdv.getNumber(LONGITUDE).floatValue(); + loc.assignLocation(lat, lon); + loc.setElevation(pdv.getNumber(ELEVATION).intValue()); + mr.setLocation(loc); + mr.setReportType(pdv.getString(STORAGE_TYPE)); + mr.setProviderId(pdv.getString(PROVIDER_ID)); + mr.setPressChange3Hour(pdv.getNumber(PRESS_CHANGE3_HOUR).floatValue()); + mr.setPressChangeChar((short) pdv.getInt(PRESS_CHANGE_CHAR)); + mr.setSeaLevelPressure(pdv.getNumber(SEA_LEVEL_PRESSURE).floatValue()); + mr.setTemperature(pdv.getNumber(TEMPERATURE).floatValue()); + mr.setVisibility(pdv.getNumber(VISIBILITY).floatValue()); + mr.setWindDir(pdv.getFloat(WIND_DIR)); + mr.setWindGust(pdv.getFloat(WIND_GUST)); + mr.setWindSpeed(pdv.getFloat(WIND_SPEED)); + mr.setDataURI(pdv.getString(DATAURI)); + mr.setReceivedTime(pdv.getNumber(RECEIVED_TIME).doubleValue()); + // ---------------------------------------------------------------------------------- + mr.setTempChangeTime(pdv.getNumber(TEMP_CHANGE_TIME).doubleValue()); + mr.setWetBulbTemperature(pdv.getFloat(WET_BULB_TEMPERATURE)); + mr.setRhChangeTime((Double) pdv.getNumber(RH_CHANGE_TIME)); + mr.setStationPressure(pdv.getFloat(STATION_PRESSURE)); + mr.setStationPressChangeTime((Double) pdv + .getNumber(STATION_PRESS_CHANGE_TIME)); + mr.setWindDirChangeTime((Double) pdv.getNumber(WIND_DIR_CHANGE_TIME)); + mr.setWindSpeedChangeTime((Double) pdv + .getNumber(WIND_SPEED_CHANGE_TIME)); + mr.setWindGustChangeTime((Double) pdv.getNumber(WIND_GUST_CHANGE_TIME)); + mr.setWindDirMin(pdv.getFloat(WIND_DIR_MIN)); + mr.setWindDirMax(pdv.getFloat(WIND_DIR_MAX)); + mr.setVisibilityStatus(pdv.getString(VISIBILITY_STATUS)); + mr.setTotalCloudCover(pdv.getFloat(TOTAL_CLOUD_COVER)); + mr.setCloudBaseHeight((Short) pdv.getNumber(CLOUD_BASE_HEIGHT)); + mr.setLowLevelCloudType((Short) pdv.getNumber(LOW_LEVEL_CLOUD_TYPE)); + mr.setMidLevelCloudType((Short) pdv.getNumber(MID_LEVEL_CLOUD_TYPE)); + mr.setHighLevelCloudType((Short) pdv.getNumber(HIGH_LEVEL_CLOUD_TYPE)); + mr.setMaxTempRecordPeriod((Short) pdv.getNumber(MAX_TEMP_RECORD_PERIOD)); + mr.setMaximumTemperature(pdv.getFloat(MAXIMUM_TEMPERATURE)); + mr.setMinTempRecordPeriod((Short) pdv.getNumber(MIN_TEMP_RECORD_PERIOD)); + mr.setMaximumTemperature(pdv.getFloat(MINIMUM_TEMPERATURE)); + mr.setPrecipAccum(pdv.getFloat(PRECIP_ACCUM)); + mr.setPrecipType((Short) pdv.getNumber(PRECIP_TYPE)); + mr.setPrecipIntensity((Short) pdv.getNumber(PRECIP_INTENSITY)); + mr.setTimeSinceLastPcp((Double) pdv.getNumber(TIME_SINCE_LAST_PCP)); + mr.setSolarRadiation(pdv.getFloat(SOLAR_RADIATION)); + mr.setSolarRadChangeTime((Double) pdv.getNumber(SOLAR_RAD_CHANGE_TIME)); + mr.setSeaSurfaceTemp(pdv.getFloat(SEA_SURFACE_TEMP)); + mr.setWavePeriod(pdv.getFloat(WAVE_PERIOD)); + mr.setWaveHeight(pdv.getFloat(WAVE_HEIGHT)); + mr.setRawMessage(pdv.getString(RAW_MESONET)); + mr.setRelHumidity(pdv.getFloat(REL_HUMIDITY)); + mr.setWindDir(pdv.getFloat(WIND_DIR)); + mr.setPressure(pdv.getFloat(PRESSURE)); + mr.setSeaLevelPressure(pdv.getFloat(SEA_LEVEL_PRESSURE)); + mr.setPrecipRate(pdv.getFloat(PRECIP_RATE)); + mr.setFuelTemperature(pdv.getFloat(FUEL_TEMPERATURE)); + mr.setFuelMoisture(pdv.getFloat(FUEL_MOISTURE)); + mr.setSoilTemperature(pdv.getFloat(SOIL_TEMPERATURE)); + mr.setSoilMoisture(pdv.getFloat(SOIL_MOISTURE)); + return mr; + } + + public static MesonetLdadRecord[] toMesonetLdadRecords( + PointDataContainer container) { + List records = new ArrayList(); + container.setCurrentSz(container.getAllocatedSz()); + for (int i = 0; i < container.getCurrentSz(); i++) { + PointDataView pdv = container.readRandom(i); + records.add(toMesonetLdadRecord(pdv)); + } + return records.toArray(new MesonetLdadRecord[records.size()]); + + } + +} diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/src/com/raytheon/uf/edex/plugin/ldadmesonet/dao/LdadMesonetDao.java b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/src/com/raytheon/uf/edex/plugin/ldadmesonet/dao/LdadMesonetDao.java new file mode 100644 index 0000000000..b7fa03e29b --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/src/com/raytheon/uf/edex/plugin/ldadmesonet/dao/LdadMesonetDao.java @@ -0,0 +1,163 @@ +/** + * 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. + **/ +package com.raytheon.uf.edex.plugin.ldadmesonet.dao; + +import java.util.ArrayList; +import java.util.List; + +import com.raytheon.uf.common.dataplugin.PluginException; +import com.raytheon.uf.common.dataplugin.ldadmesonet.MesonetLdadRecord; +import com.raytheon.uf.common.dataquery.db.QueryParam; +import com.raytheon.uf.common.pointdata.spatial.ObStation; +import com.raytheon.uf.edex.database.DataAccessLayerException; +import com.raytheon.uf.edex.database.query.DatabaseQuery; +import com.raytheon.uf.edex.pointdata.PointDataPluginDao; +import com.raytheon.uf.edex.pointdata.spatial.ObStationDao; + +/** + * Data access object for accessing LDAD MESONET records in the database. + * + *
+ *
+ * SOFTWARE HISTORY
+ *
+ * Date         Ticket#     Engineer    Description
+ * ------------ ----------  ----------- --------------------------
+ * 9/04/09                  vkorolev    Initial creation
+ * 10/09/09     DR2814      vkorolev    Refactor to Point Data Model
+ * Feb 27, 2013 1638        mschenke    Moved ObStationDao to edex pointdata plugin
+ * Aug 15, 2014 3530        bclement    moved from common to edex
+ * Feb 16, 2022 8608        mapeters    Remove populateDataStore override that matched super
+ *
+ * 
+ * + * @author vkorolev + */ +public class LdadMesonetDao extends PointDataPluginDao { + + /** The station dao */ + private ObStationDao obDao = new ObStationDao(); + + public LdadMesonetDao(String pluginName) throws PluginException { + super(pluginName); + } + + public LdadMesonetDao() throws PluginException { + this("ldadmesonet"); + } + + public List queryBySpatialBox(double upperLeftLat, double upperLeftLon, + double lowerRightLat, double lowerRightLon) + throws DataAccessLayerException { + + List stationList = obDao.queryBySpatialBox(upperLeftLat, + upperLeftLon, lowerRightLat, lowerRightLon); + + List stationNames = new ArrayList<>(); + for (ObStation station : stationList) { + stationNames.add(station.getIdentifier()); + } + stationList.clear(); + + DatabaseQuery query = new DatabaseQuery(MesonetLdadRecord.class); + query.addQueryParam("location.stationId", stationNames, + QueryParam.QueryOperand.IN); + return queryByCriteria(query); + } + + public List queryByState(String state, Integer count) + throws DataAccessLayerException { + + List results = obDao.queryByState(state); + + List icaos = new ArrayList<>(); + for (ObStation station : results) { + icaos.add(station.getIdentifier()); + } + + DatabaseQuery query = new DatabaseQuery(MesonetLdadRecord.class, count); + query.addQueryParam("location.stationId", icaos, + QueryParam.QueryOperand.IN); + return queryByCriteria(query); + } + + /** + * Retrieves an ldadMesonet report using the datauri . + * + * @param dataURI + * The dataURI to match against. + * @return The report record if it exists. + */ + public MesonetLdadRecord queryByDataURI(String dataURI) { + MesonetLdadRecord report = null; + List obs = null; + try { + obs = queryBySingleCriteria("dataURI", dataURI); + } catch (DataAccessLayerException e) { + logger.error("Error querying LDAD Mesonet data by URI: " + dataURI, + e); + } + if (obs != null && !obs.isEmpty()) { + report = (MesonetLdadRecord) obs.get(0); + } + return report; + } + + /** + * Queries for to determine if a given data uri exists on the redbook table. + * + * @param dataUri + * The DataURI to find. + * @return An array of objects. If not null, there should only be a single + * element. + */ + public Object[] queryDataUriColumn(final String dataUri) { + + String sql = "select datauri from awips.ldadmesonet where datauri='" + + dataUri + "';"; + + Object[] results = executeSQLQuery(sql); + + return results; + } + + public ObStationDao getObDao() { + return obDao; + } + + public void setObDao(ObStationDao obDao) { + this.obDao = obDao; + } + + @Override + public String[] getKeysRequiredForFileName() { + return new String[] { "dataTime.refTime" }; + } + + @Override + public String getPointDataFileName(MesonetLdadRecord p) { + return "ldadmesonet.h5"; + } + + @Override + public MesonetLdadRecord newObject() { + return new MesonetLdadRecord(); + } +} diff --git a/cave/com.raytheon.viz.awipstools/localization/menus/tools/baseTools-menuL.xml b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/utility/common_static/base/distribution/ldadmesonet.xml similarity index 51% rename from cave/com.raytheon.viz.awipstools/localization/menus/tools/baseTools-menuL.xml rename to edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/utility/common_static/base/distribution/ldadmesonet.xml index 9e3e3e8f76..ad3b39d7a3 100644 --- a/cave/com.raytheon.viz.awipstools/localization/menus/tools/baseTools-menuL.xml +++ b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/utility/common_static/base/distribution/ldadmesonet.xml @@ -2,42 +2,28 @@ - - - - - - \ No newline at end of file + + LDAD\.mesonet\.* + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/utility/common_static/base/purge/ldadmesonetPurgeRules.xml b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/utility/common_static/base/purge/ldadmesonetPurgeRules.xml new file mode 100644 index 0000000000..f305712e99 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.ldadmesonet/utility/common_static/base/purge/ldadmesonetPurgeRules.xml @@ -0,0 +1,36 @@ + + + + + + + 24 + =00-01:00:00 + 00-01:00:00 + + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.qc/.classpath b/edexOsgi/com.raytheon.uf.edex.plugin.qc/.classpath new file mode 100644 index 0000000000..1fa3e6803d --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.qc/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.qc/.project b/edexOsgi/com.raytheon.uf.edex.plugin.qc/.project new file mode 100644 index 0000000000..37b171dac2 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.qc/.project @@ -0,0 +1,34 @@ + + + com.raytheon.uf.edex.plugin.qc + + + + + + org.python.pydev.PyDevBuilder + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + org.python.pydev.pythonNature + + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.qc/.pydevproject b/edexOsgi/com.raytheon.uf.edex.plugin.qc/.pydevproject new file mode 100644 index 0000000000..faf12629d9 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.qc/.pydevproject @@ -0,0 +1,7 @@ + + + + +python 2.5 +Default + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.qc/META-INF/MANIFEST.MF b/edexOsgi/com.raytheon.uf.edex.plugin.qc/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..76044450d6 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.qc/META-INF/MANIFEST.MF @@ -0,0 +1,13 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Qc Plug-in +Bundle-SymbolicName: com.raytheon.uf.edex.plugin.qc +Bundle-Version: 1.18.0.qualifier +Bundle-Vendor: RAYTHEON +Bundle-RequiredExecutionEnvironment: JavaSE-1.8 +Require-Bundle: com.raytheon.edex.common, + com.raytheon.uf.edex.pointdata, + com.raytheon.uf.common.dataplugin.qc, + com.raytheon.uf.common.localization, + ucar.nc2 +Import-Package: com.raytheon.uf.common.status diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.qc/build.properties b/edexOsgi/com.raytheon.uf.edex.plugin.qc/build.properties new file mode 100644 index 0000000000..9d91e04a59 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.qc/build.properties @@ -0,0 +1,7 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + utility/,\ + .,\ + res/,\ + resources/ diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.qc/com.raytheon.uf.edex.plugin.qc.ecl b/edexOsgi/com.raytheon.uf.edex.plugin.qc/com.raytheon.uf.edex.plugin.qc.ecl new file mode 100644 index 0000000000..e69de29bb2 diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.qc/res/pointdata/pdd/ldadmesonet.xml b/edexOsgi/com.raytheon.uf.edex.plugin.qc/res/pointdata/pdd/ldadmesonet.xml new file mode 100644 index 0000000000..98dabd8ea9 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.qc/res/pointdata/pdd/ldadmesonet.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.qc/res/pointdata/pdd/msas.xml b/edexOsgi/com.raytheon.uf.edex.plugin.qc/res/pointdata/pdd/msas.xml new file mode 100644 index 0000000000..86a22c7105 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.qc/res/pointdata/pdd/msas.xml @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.qc/res/pointdata/qcdb.xml b/edexOsgi/com.raytheon.uf.edex.plugin.qc/res/pointdata/qcdb.xml new file mode 100644 index 0000000000..b7e7f6b5ce --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.qc/res/pointdata/qcdb.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.qc/res/spring/qc-common.xml b/edexOsgi/com.raytheon.uf.edex.plugin.qc/res/spring/qc-common.xml new file mode 100644 index 0000000000..3e0f421958 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.qc/res/spring/qc-common.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.qc/res/spring/qc-ingest.xml b/edexOsgi/com.raytheon.uf.edex.plugin.qc/res/spring/qc-ingest.xml new file mode 100644 index 0000000000..56ae4706ae --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.qc/res/spring/qc-ingest.xml @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + qc + + + + + + + java.lang.Throwable + + + + + + + + + + + + + + + + + + + + + + + java.lang.Throwable + + + + + + + + \ No newline at end of file diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.qc/resources/qc.properties b/edexOsgi/com.raytheon.uf.edex.plugin.qc/resources/qc.properties new file mode 100644 index 0000000000..2d0bea424f --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.qc/resources/qc.properties @@ -0,0 +1,2 @@ +# period to scan the QC file drop point for new QC data +qc.cron=0+2,7,12,17,22,27,32,37,42,47,52,57+*+*+*+? \ No newline at end of file diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.qc/src/com/raytheon/uf/edex/plugin/qc/QCScanner.java b/edexOsgi/com.raytheon.uf.edex.plugin.qc/src/com/raytheon/uf/edex/plugin/qc/QCScanner.java new file mode 100644 index 0000000000..4cde543c2d --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.qc/src/com/raytheon/uf/edex/plugin/qc/QCScanner.java @@ -0,0 +1,370 @@ +/** + * 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. + **/ + +package com.raytheon.uf.edex.plugin.qc; + +import java.io.File; +import java.io.FileNotFoundException; +import java.io.Serializable; +import java.util.ArrayList; +import java.util.Collection; +import java.util.Date; +import java.util.HashMap; +import java.util.Iterator; +import java.util.List; +import java.util.Map; +import java.util.regex.Pattern; + +import com.raytheon.uf.common.dataplugin.PluginDataObject; +import com.raytheon.uf.common.dataplugin.qc.QCRecord; +import com.raytheon.uf.common.pointdata.PointDataContainer; +import com.raytheon.uf.common.pointdata.PointDataDescription; +import com.raytheon.uf.common.pointdata.PointDataView; +import com.raytheon.uf.common.pointdata.spatial.SurfaceObsLocation; +import com.raytheon.uf.common.status.IUFStatusHandler; +import com.raytheon.uf.common.status.UFStatus; +import com.raytheon.uf.common.time.DataTime; +import com.raytheon.uf.edex.database.plugin.PluginFactory; +import com.raytheon.uf.edex.plugin.qc.dao.QCDao; +import com.raytheon.uf.edex.plugin.qc.internal.QCPaths; + +import ucar.ma2.Array; +import ucar.ma2.ArrayChar; +import ucar.ma2.DataType; +import ucar.ma2.Section; +import ucar.nc2.Attribute; +import ucar.nc2.NetcdfFile; +import ucar.nc2.Variable; + +/** + * Scans NetCDF files generated by A1 legacy applications and generates QCRecord + * instances that refer to their records. The scan should only occur on one JVM + * in a cluster while the decode can occur on multiple JVMs in a cluster. + * + *
+ * 
+ * SOFTWARE HISTORY
+ * 
+ * Date         Ticket#    Engineer    Description
+ * ------------ ---------- ----------- --------------------------
+ * Dec 03, 2010 4775       D. Friedman Initial version
+ * Mar 07, 2013 15842      D. Friedman Use Java NetCDF library instead of
+ *                                     pupynere
+ * May 16, 2013 1869       bsteffen    Remove DataURI column from qc.
+ * Aug 30, 2013 2298       rjpeter     Make getPluginName abstract
+ * Feb 20, 2014 DR 17098   D. Friedman Filter out invalid lat/lon values.
+ * Jul 23, 2014 3410       bclement    location changed to floats
+ * Jan 03, 2018 6861       njensen     Split on files, decode and store results
+ *                                      as PointDataView on PluginDataObject[]
+ * 
+ * 
+ * + * @author dfriedma + */ +public class QCScanner { + + private static final IUFStatusHandler statusHandler = UFStatus + .getHandler(QCScanner.class); + + private static final Pattern FILE_PATTERN = Pattern.compile("^\\d+_\\d+$"); + + private Integer maxRecordsInChunk; + + /** + * Map of qcType to filename to last mod time. Used to ensure we don't scan + * a file again if it hasn't changed. + */ + private Map> fileLastScannedMap = new HashMap<>(); + + /** + * @return the maxRecordsInChunk + */ + public Integer getMaxRecordsInChunk() { + return maxRecordsInChunk; + } + + /** + * @param maxRecordsInChunk + * the maxRecordsInChunk to set + */ + public void setMaxRecordsInChunk(Integer maxRecordsInChunk) { + this.maxRecordsInChunk = maxRecordsInChunk; + } + + /** + * Information necessary to start a decode. Serialized after the split to + * take advantage of clustering the decodes. + */ + public static class QCFile implements Serializable { + + private static final long serialVersionUID = 1L; + + protected String qcType; + + protected File file; + + protected QCFile(String qcType, File file) { + this.qcType = qcType; + this.file = file; + } + } + + public class QCDirectoryScanner { + private final String qcType; + + private final File directory; + + public QCDirectoryScanner(String qcType, File directory) { + this.qcType = qcType; + this.directory = directory; + } + + /** + * Scan all files in the directory that match the pattern and have been + * modified since we last scanned them. If we did not previously scan + * them, then scan those too. + * + * @return the list of QCFiles that match the pattern and have been + * modified since we last scanned them + */ + public List getFiles() { + List results = new ArrayList<>(); + Map updatedScanMap = new HashMap<>(); + Map innerMap = fileLastScannedMap.get(qcType); + if (innerMap == null) { + innerMap = new HashMap<>(); + } + + for (String fn : directory.list()) { + if (FILE_PATTERN.matcher(fn).matches()) { + try { + File f = new File(directory, fn); + String path = f.getPath(); + Long lastScanned = innerMap.get(path); + if (lastScanned == null + || f.lastModified() > lastScanned) { + QCFile qcf = new QCFile(qcType, f); + results.add(qcf); + lastScanned = f.lastModified(); + } + updatedScanMap.put(path, lastScanned); + } catch (Exception e) { + statusHandler + .error(String.format("error reading %s/%s: %s", + directory, fn, e.getMessage()), e); + } + } + } + + fileLastScannedMap.put(qcType, updatedScanMap); + return results; + } + } + + /** + * Gets an iterator of QC files to process/decode. + * + * @return an iterator of QC files + * @throws FileNotFoundException + */ + public Iterator split() throws FileNotFoundException { + List files = new ArrayList<>(); + Map paths = QCPaths.getPaths(); + for (Map.Entry entry : paths.entrySet()) { + String type = entry.getKey(); + File directory = entry.getValue(); + QCDirectoryScanner scanner = new QCDirectoryScanner(type, + directory); + files.addAll(scanner.getFiles()); + } + + return files.iterator(); + } + + /** + * Scans or "decodes" the QC netcdf file into QCRecords + * + * @param qcFile + * the QC file to scan for records + * @return the PluginDataObjects that were "decoded" + * @throws Exception + */ + public PluginDataObject[] scanFile(QCFile qcFile) throws Exception { + try (NetcdfFile nc = NetcdfFile.open(qcFile.file.getPath())) { + int index = 0; + int totalRecordCount = nc.getUnlimitedDimension().getLength(); + int batchSize = Math.min(getMaxRecordsInChunk(), totalRecordCount); + + String[] idVariablesNames = nc.findGlobalAttribute("idVariables") + .getStringValue().split(","); + String[] timeVariableNames = nc.findGlobalAttribute("timeVariables") + .getStringValue().split(","); + Variable[] idVariables = new Variable[idVariablesNames.length]; + for (int i = 0; i < idVariables.length; ++i) { + idVariables[i] = nc.findVariable(idVariablesNames[i]); + } + Variable vObsTime = nc.findVariable(timeVariableNames[0]); + double vObsTimeFillValue = vObsTime.findAttribute("_FillValue") + .getNumericValue().doubleValue(); + Double vObsTimeMissingValue = null; + Attribute a = vObsTime.findAttribute("missing_value"); + if (a != null) { + vObsTimeMissingValue = a.getNumericValue().doubleValue(); + } + Variable vLat = nc.findVariable("latitude"); + Variable vLon = nc.findVariable("longitude"); + Variable vElev = nc.findVariable("elevation"); + + /* + * There's so many variables in the file that we don't need so we + * pick the ones we do need from the point data description. + */ + QCDao qcDao = (QCDao) PluginFactory.getInstance() + .getPluginDao("qc"); + Map map = new HashMap<>(); + map.put("qcType", qcFile.qcType); + PointDataDescription pdd = qcDao.getPointDataDescription(map); + PointDataContainer pdc = PointDataContainer.build(pdd); + Map variableMap = new HashMap<>(); + for (String name : pdd.getParameterNames()) { + /* + * do not include id variables, we will read those separately + * below because they are 2-dimensional chars (aka Strings) + */ + boolean foundId = false; + for (String idName : idVariablesNames) { + if (idName.equals(name)) { + foundId = true; + break; + } + } + if (!foundId) { + Variable v = nc.findVariable(name); + if (v != null) { + variableMap.put(name, v); + } + } + } + + Map recordMap = new HashMap<>(); + while (index < totalRecordCount) { + batchSize = Math.min(batchSize, totalRecordCount - index); + int[] ofs = new int[] { index }; + int[] len = new int[] { batchSize }; + Array dObsTime = vObsTime.read(ofs, len); + Array dLat = vLat.read(ofs, len); + Array dLon = vLon.read(ofs, len); + Array dElev = vElev.read(ofs, len); + + // get IDs which will become the unique station name + Section sec = new Section(); + sec.appendRange(index, (index + batchSize) - 1); + sec.appendRange(); + ArrayChar[] dIDs = new ArrayChar[idVariables.length]; + for (int i = 0; i < dIDs.length; ++i) { + dIDs[i] = (ArrayChar) idVariables[i].read(sec); + } + + Map nameToArrayMap = new HashMap<>(); + for (Variable v : variableMap.values()) { + Array arr = v.read(ofs, len); + nameToArrayMap.put(v.getName(), arr); + } + + int ri = 0; + while (ri < batchSize) { + PointDataView pdv = pdc.append(); + QCRecord pdo = new QCRecord(); + pdo.setOverwriteAllowed(true); + double obsTime = dObsTime.getDouble(ri); + float lat = dLat.getFloat(ri); + float lon = dLon.getFloat(ri); + if ((obsTime != vObsTimeFillValue) + && ((vObsTimeMissingValue == null) + || (vObsTimeMissingValue != obsTime)) + && Math.abs(lon) <= 180 && Math.abs(lat) <= 90) { + pdo.setDataTime(new DataTime( + new Date((long) (obsTime * 1000)))); + SurfaceObsLocation loc = new SurfaceObsLocation(); + loc.assignLocation(lat, lon); + loc.setElevation(dElev.getInt(ri)); + + /* + * Set up a unique stationId while also setting the id + * variable names with point data values + */ + StringBuilder stationId = new StringBuilder(); + for (ArrayChar idArray : dIDs) { + stationId.append(idArray.getString(ri)); + } + loc.setStationId(stationId.toString()); + for (int i = 0; i < idVariablesNames.length; i++) { + pdv.setString(idVariablesNames[i], + dIDs[i].getString(ri)); + } + + pdo.setLocation(loc); + pdo.setNcSet(qcFile.file.getName()); + pdo.setQcType(qcFile.qcType); + + for (String name : nameToArrayMap.keySet()) { + Array arr = nameToArrayMap.get(name); + DataType dtype = arr.getDataType(); + switch (dtype) { + case CHAR: + pdv.setString(name, + String.valueOf(arr.getChar(ri))); + break; + case INT: + case SHORT: + pdv.setInt(name, arr.getInt(ri)); + break; + case LONG: + pdv.setLong(name, arr.getLong(ri)); + break; + case FLOAT: + case DOUBLE: + pdv.setFloat(name, arr.getFloat(ri)); + break; + default: + throw new IllegalArgumentException( + "QCScanner does not support reading values of type " + + dtype); + } + + } + pdo.setPointDataView(pdv); + recordMap.put(pdo.getDataURI(), pdo); + } + ++index; + ++ri; + + } + + } // end of outer while + + Collection results = recordMap.values(); + int size = results.size(); + statusHandler.info("Decoded " + size + " QC records from " + + qcFile.file.getPath() + ", now storing"); + return results.toArray(new PluginDataObject[size]); + } + } +} diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.qc/src/com/raytheon/uf/edex/plugin/qc/dao/QCDao.java b/edexOsgi/com.raytheon.uf.edex.plugin.qc/src/com/raytheon/uf/edex/plugin/qc/dao/QCDao.java new file mode 100644 index 0000000000..a48d107df8 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.qc/src/com/raytheon/uf/edex/plugin/qc/dao/QCDao.java @@ -0,0 +1,92 @@ +/** + * 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. + **/ + +package com.raytheon.uf.edex.plugin.qc.dao; + +import java.util.HashMap; +import java.util.Map; + +import com.raytheon.uf.common.dataplugin.PluginException; +import com.raytheon.uf.common.dataplugin.qc.QCRecord; +import com.raytheon.uf.common.pointdata.PointDataDescription; +import com.raytheon.uf.edex.plugin.qc.internal.QCPaths; +import com.raytheon.uf.edex.pointdata.PointDataPluginDao; + +/** + * Data access object for retrieving QC mesonet data. + * + *
+ * 
+ * SOFTWARE HISTORY
+ * Date         Ticket#    Engineer    Description
+ * ------------ ---------- ----------- --------------------------
+ * 12/04/2009   3408       bphillip    Initial creation
+ * Aug 15, 2014 3530       bclement    removed commons logging
+ * Apr 16, 2015 4259       njensen     Removed unreachable catch
+ * Jan 04, 2018 6861       njensen     Removed python usage, removed method overrides
+ *                                      so it mostly resembles a normal pointdata plugin
+ * 
+ * 
+ * + * @author bphillip + */ +public class QCDao extends PointDataPluginDao { + + /** Map of plugin names to point data descriptions */ + private static Map pdds = new HashMap<>(); + + static { + pdds = QCPaths.getPointDataDescriptions(); + } + + /** + * Constructs a new QC data access object + * + * @param pluginName + * "qc" + * @throws PluginException + * If errors occur while constructing the data access object + */ + public QCDao(String pluginName) throws PluginException { + super(pluginName); + } + + @Override + public String[] getKeysRequiredForFileName() { + return new String[] { "qcType", "dataTime.refTime" }; + } + + @Override + public String getPointDataFileName(QCRecord p) { + return "qc.h5"; + } + + @Override + public QCRecord newObject() { + return new QCRecord(); + } + + @Override + public PointDataDescription getPointDataDescription( + Map obj) { + return pdds.get(obj.get("qcType").toString()); + } + +} diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.qc/src/com/raytheon/uf/edex/plugin/qc/internal/QCPaths.java b/edexOsgi/com.raytheon.uf.edex.plugin.qc/src/com/raytheon/uf/edex/plugin/qc/internal/QCPaths.java new file mode 100644 index 0000000000..45bd9e92d8 --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.qc/src/com/raytheon/uf/edex/plugin/qc/internal/QCPaths.java @@ -0,0 +1,123 @@ +/** + * 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. + **/ + +package com.raytheon.uf.edex.plugin.qc.internal; + +import java.io.File; +import java.io.FileNotFoundException; +import java.io.IOException; +import java.io.InputStream; +import java.util.HashMap; +import java.util.Map; + +import com.raytheon.uf.common.pointdata.PointDataDescription; +import com.raytheon.uf.common.serialization.SerializationException; +import com.raytheon.uf.edex.core.EDEXUtil; + +/** + * This class should only be used by the QC plug-ins. + * + *
+ * 
+ * SOFTWARE HISTORY
+ * 
+ * Date          Ticket#  Engineer  Description
+ * ------------- -------- --------- --------------------------------------------
+ * ???           ???      ???       Initial creation
+ * Aug 15, 2014  3530     bclement  moved from common to edex
+ * Jul 15, 2016  5744     mapeters  Use common_static instead of edex_static
+ *                                  in getPythonScriptPath()
+ * Jan 05, 2018  6861     njensen   Removed python support
+ *                                  Simplified getPointDataDescriptions()
+ * 
+ * 
+ * + */ +public class QCPaths { + + /** The directory containing the raw QC mesonet data */ + private static final String QC_RAW_DIR; + + static { + QC_RAW_DIR = EDEXUtil.getEdexData() + File.separator + + System.getProperty("HDF5_PATH"); + } + + public static Map getPaths() throws FileNotFoundException { + Map paths = new HashMap<>(); + File baseDir = new File(QC_RAW_DIR); + if (baseDir.exists()) { + File[] files = baseDir.listFiles(); + if (files == null) { + throw new FileNotFoundException( + "Unable to read files in directory: " + baseDir); + } + for (File f : files) { + paths.put(f.getName(), f); + } + } else { + throw new FileNotFoundException( + "Unable to open directory: " + baseDir); + } + return paths; + } + + public static Map getPointDataDescriptions() { + Map pdds = new HashMap<>(); + String mesonetPath = "/res/pointdata/pdd/ldadmesonet.xml"; + String msasPath = "/res/pointdata/pdd/msas.xml"; + + try (InputStream is = QCPaths.class.getResourceAsStream(mesonetPath)) { + PointDataDescription desc; + try { + desc = PointDataDescription.fromStream(is); + pdds.put("ldadmesonet", desc); + } catch (SerializationException e) { + throw new RuntimeException( + "Error reading pointdata description from " + + mesonetPath, + e); + } + } catch (IOException e) { + // ignore + } + + try (InputStream is = QCPaths.class.getResourceAsStream(msasPath)) { + PointDataDescription desc; + try { + desc = PointDataDescription.fromStream(is); + pdds.put("msas", desc); + } catch (SerializationException e) { + throw new RuntimeException( + "Error reading pointdata description from " + msasPath, + e); + } + } catch (IOException e) { + // ignore + } + + return pdds; + } + + public static String getBaseDir() { + return QC_RAW_DIR; + } + +} diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.qc/utility/common_static/base/path/qcPathKeys.xml b/edexOsgi/com.raytheon.uf.edex.plugin.qc/utility/common_static/base/path/qcPathKeys.xml new file mode 100644 index 0000000000..eddffb6f5c --- /dev/null +++ b/edexOsgi/com.raytheon.uf.edex.plugin.qc/utility/common_static/base/path/qcPathKeys.xml @@ -0,0 +1,32 @@ + + + + + + + qcType + 0 + + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/META-INF/MANIFEST.MF b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/META-INF/MANIFEST.MF index dbae66e83e..b6cad14045 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/META-INF/MANIFEST.MF +++ b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/META-INF/MANIFEST.MF @@ -16,7 +16,8 @@ Require-Bundle: com.raytheon.edex.plugin.satellite, com.raytheon.uf.edex.core, com.raytheon.uf.common.datastorage, com.raytheon.uf.common.geospatial, - javax.xml.bind + javax.xml.bind, + ar.com.hjg.pngj;bundle-version="2.1.1" Export-Package: com.raytheon.uf.edex.plugin.satellite.gini, com.raytheon.uf.edex.plugin.satellite.gini.lookup Import-Package: com.raytheon.uf.common.wmo diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/src/com/raytheon/uf/edex/plugin/satellite/gini/GiniSatelliteDecoder.java b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/src/com/raytheon/uf/edex/plugin/satellite/gini/GiniSatelliteDecoder.java index 82b064ceb1..5ae0037fbe 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/src/com/raytheon/uf/edex/plugin/satellite/gini/GiniSatelliteDecoder.java +++ b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/src/com/raytheon/uf/edex/plugin/satellite/gini/GiniSatelliteDecoder.java @@ -20,9 +20,11 @@ package com.raytheon.uf.edex.plugin.satellite.gini; +import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.IOException; +import java.io.InputStream; import java.io.RandomAccessFile; import java.nio.ByteBuffer; import java.util.Calendar; @@ -32,6 +34,8 @@ import java.util.regex.Matcher; import java.util.zip.DataFormatException; import java.util.zip.Inflater; +import ar.com.hjg.pngj.ImageLineByte; +import ar.com.hjg.pngj.PngReaderByte; import com.raytheon.edex.plugin.satellite.SatelliteDecoderException; import com.raytheon.edex.util.satellite.SatSpatialFactory; import com.raytheon.uf.common.dataplugin.PluginDataObject; @@ -99,7 +103,9 @@ import com.raytheon.uf.edex.plugin.satellite.gini.lookup.NumericLookupTable; * replaced database lookups with in memory tables * Apr 15, 2014 4388 bsteffen Set Fill Value. * Feb 18, 2016 4838 skorolev Corrected image rotation for scanMode = 3. + * Jun 23, 2016 mjames@ucar Handle pngg2gini'd FNEXRAD gini files. * Dec 01, 2016 5970 njensen Use WMO_HEADER_PATTERN instead of WMOHeaderFinder + * Oct 20, 2017 mjames@ucar Decode Unidata PNG-compressed imagery. * Sep 23, 2021 8608 mapeters Handle PDO.traceId changes * * @@ -116,6 +122,10 @@ public class GiniSatelliteDecoder { private static final String SAT_HDR_TT = "TI"; + private static final int UCAR = 99; + + private static final int UCAR_PRODUCT_OFFSET = 100; + private static final int GINI_HEADER_SIZE = 512; private static final int INITIAL_READ = GINI_HEADER_SIZE + 128; @@ -250,7 +260,7 @@ public class GiniSatelliteDecoder { record = new SatelliteRecord(); - if (isCompressed(byteBuffer)) { + if (isZlibCompressed(byteBuffer)) { /* * If the data is compressed, we assume it came from the SBN * and will have a reasonable size such that we can have two @@ -262,7 +272,9 @@ public class GiniSatelliteDecoder { - byteBuffer.position()]; f.seek(byteBuffer.position()); f.readFully(data); - byte[][] retVal = decompressSatellite(data); + + byte[][] retVal = decompressZlibSatellite(data); + byteBuffer = ByteBuffer.wrap(retVal[0]); tempBytes = retVal[1]; } else { @@ -272,13 +284,36 @@ public class GiniSatelliteDecoder { */ byteBuffer.compact(); byteBuffer.flip(); + + int compressionFlag = byteBuffer.get(42); + // Unidata PNG compression flag + if (compressionFlag == -128) { + + byte[] pngdata = new byte[(int) file.length() - offsetOfDataInFile]; + f.seek(offsetOfDataInFile); + f.readFully(pngdata); + + tempBytes = decompressPngSatellite(pngdata); + + } } // get the scanning mode int scanMode = byteBuffer.get(37); + // read the creating entity + byte entityByte = byteBuffer.get(1); + String entity = creatingEntityTable.lookup(entityByte); + if (entity == null) { + throw new UnrecognizedDataException( + "Unknown satellite entity id: " + entityByte); + } + record.setCreatingEntity(entity); + // read the source byte sourceByte = byteBuffer.get(0); + if (entityByte == UCAR) sourceByte = (byte) (UCAR_PRODUCT_OFFSET+byteBuffer.get(0)); + String source = sourceTable.lookup(sourceByte); if (source == null) { throw new UnrecognizedDataException( @@ -286,17 +321,10 @@ public class GiniSatelliteDecoder { } record.setSource(source); - // read the creating entity - byte entityByte = byteBuffer.get(1); - String entity = creatingEntityTable.lookup(entityByte); - if (entity == null) { - throw new UnrecognizedDataException( - "Unknown satellite entity id: " + entityByte); - } - record.setCreatingEntity(entity); - // read the sector ID byte sectorByte = byteBuffer.get(2); + if (entityByte == UCAR) sectorByte = (byte) (UCAR_PRODUCT_OFFSET+byteBuffer.get(2)); + String sector = sectorIdTable.lookup(sectorByte); if (sector == null) { throw new UnrecognizedDataException( @@ -305,7 +333,8 @@ public class GiniSatelliteDecoder { record.setSectorID(sector); // read the physical element - byte physByte = byteBuffer.get(3); + int physByte = byteBuffer.get(3); + if (entityByte == UCAR) physByte = (int) (UCAR_PRODUCT_OFFSET+byteBuffer.get(3)); String physElem = physicalElementTable.lookup(physByte); if (physElem == null) { throw new UnrecognizedDataException( @@ -316,12 +345,20 @@ public class GiniSatelliteDecoder { // read the units String unit = unitTable.lookup(byteBuffer.get(3)); + if (entityByte == UCAR) { + unit = unitTable.lookup((int) (UCAR_PRODUCT_OFFSET+byteBuffer.get(3))); + } if (unit != null) { record.setUnits(unit); } // read the century intValue = 1900 + byteBuffer.get(8); + // TODO: update this with png inflate + // correction for pngg2gini + if (entityByte == UCAR && byteBuffer.get(8) < 100) + intValue = 2000 + byteBuffer.get(8); + calendar.set(Calendar.YEAR, intValue); // read the month of the year @@ -598,13 +635,13 @@ public class GiniSatelliteDecoder { } /** - * Checks to see if the current satellite product is compressed. - * + * Checks to see if the current satellite product is zlib compressed. + * * Assumes messageData is a byte[]-backed ByteBuffer. * * @return A boolean indicating if the file is compressed or not */ - private boolean isCompressed(ByteBuffer messageData) { + private boolean isZlibCompressed(ByteBuffer messageData) { boolean compressed = true; byte[] placeholder = new byte[10]; Inflater decompressor = new Inflater(); @@ -621,13 +658,40 @@ public class GiniSatelliteDecoder { } /** - * Method to handle compressed satellite data. + * Method to handle Unidata PNG compressed satellite data. * * @param messageData * @return * @throws DecoderException */ - private byte[][] decompressSatellite(byte[] messageData) + private byte[] decompressPngSatellite(byte[] messageData) + throws SatelliteDecoderException { + + InputStream stream = new ByteArrayInputStream(messageData); + PngReaderByte png = new PngReaderByte(stream); + + ByteArrayOutputStream bos = new ByteArrayOutputStream(MAX_IMAGE_SIZE); + byte[] inflated = null; + + for (int row=0;row< png.getImgInfo().rows;row++){ + ImageLineByte line = png.readRowByte(); + byte [] buf = line.getScanlineByte(); + bos.write(buf, 0, buf.length); + } + + inflated = bos.toByteArray(); + bos = null; + return inflated; + } + + /** + * Method to handle zlib compressed satellite data. + * + * @param messageData + * @return + * @throws DecoderException + */ + private byte[][] decompressZlibSatellite(byte[] messageData) throws SatelliteDecoderException { byte[] retVal = null; diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/distribution/satellite.gini.xml b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/distribution/satellite.gini.xml index ce315b3ac1..316407886b 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/distribution/satellite.gini.xml +++ b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/distribution/satellite.gini.xml @@ -38,7 +38,8 @@ --> - + TI[CGT][A-WYZ].. .... + .*NEXRCOMP.* diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/creatingEntities.xml b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/creatingEntities.xml index fb6d1c0e90..0fe8d58dc6 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/creatingEntities.xml +++ b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/creatingEntities.xml @@ -25,7 +25,7 @@ of the file. --> - + @@ -46,4 +46,5 @@ + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/physicalElements.xml b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/physicalElements.xml index 9bff228ee0..b10cf158d9 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/physicalElements.xml +++ b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/physicalElements.xml @@ -89,4 +89,18 @@ + + + + + + + + + + + + + + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/sectorIds.xml b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/sectorIds.xml index 312e369c57..3d989d8936 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/sectorIds.xml +++ b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/sectorIds.xml @@ -36,4 +36,5 @@ + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/sources.xml b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/sources.xml index 96f63fdc3d..1c744278a0 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/sources.xml +++ b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/sources.xml @@ -26,4 +26,5 @@ --> + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/units.xml b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/units.xml index df09d573a5..5d7991d28d 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/units.xml +++ b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.gini/utility/common_static/base/satellite/gini/lookuptables/units.xml @@ -42,4 +42,18 @@ + + + + + + + + + + + + + + diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.text/src/com/raytheon/uf/edex/plugin/text/dao/StdTextProductDao.java b/edexOsgi/com.raytheon.uf.edex.plugin.text/src/com/raytheon/uf/edex/plugin/text/dao/StdTextProductDao.java index e21423877f..0dcbb52215 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.text/src/com/raytheon/uf/edex/plugin/text/dao/StdTextProductDao.java +++ b/edexOsgi/com.raytheon.uf.edex.plugin.text/src/com/raytheon/uf/edex/plugin/text/dao/StdTextProductDao.java @@ -126,6 +126,10 @@ import com.raytheon.uf.edex.plugin.text.impl.TextDBStaticData; * Nov 09, 2021 22859 zalberts Added additional sort by datacrc to * AFOS_QUERY_STMT for consistent results * when reftime and inserttime are equal. + * Sep 13, 2023 tiffanym@@ucar Force text workstation requests to look at the + * operational stdtextproducts db table instead + * of practicestdtxtproducts db table when CAVE + * is running in practice mode (Unidata default) * * * @@ -237,10 +241,8 @@ public class StdTextProductDao extends CoreDao { * true for operational table, false for practice table */ public StdTextProductDao(boolean operationalModeFlag) { - super(DaoConfig.forClass("fxa", - (operationalModeFlag ? OperationalStdTextProduct.class - : PracticeStdTextProduct.class))); - this.operationalMode = operationalModeFlag; + super(DaoConfig.forClass("fxa", OperationalStdTextProduct.class)); + this.operationalMode = true; } /** @@ -1073,9 +1075,7 @@ public class StdTextProductDao extends CoreDao { public List doInTransaction( TransactionStatus status) { Session sess = getCurrentSession(); - Criteria crit = sess.createCriteria(operationalMode - ? OperationalStdTextProduct.class - : PracticeStdTextProduct.class); + Criteria crit = sess.createCriteria(OperationalStdTextProduct.class); ProjectionList fields = Projections.projectionList(); fields.add(Projections.property(CCC_ID)); fields.add(Projections.property(ProdNNN_ID)); @@ -1598,7 +1598,6 @@ public class StdTextProductDao extends CoreDao { * @return StdTextProduct, an */ private StdTextProduct getStdTextProductInstance() { - return this.operationalMode ? new OperationalStdTextProduct() - : new PracticeStdTextProduct(); + return new OperationalStdTextProduct(); } } diff --git a/localization/utility/common_static/site/OAX/alarms/DefaultSiteAlarms.xml b/localization/utility/common_static/site/OAX/alarms/DefaultSiteAlarms.xml new file mode 100644 index 0000000000..38e0906aa9 --- /dev/null +++ b/localization/utility/common_static/site/OAX/alarms/DefaultSiteAlarms.xml @@ -0,0 +1,2 @@ + + diff --git a/rpms/awips2.edex/Installer.edex-configuration/component.spec b/rpms/awips2.edex/Installer.edex-configuration/component.spec index e6390449b7..30e36291ff 100644 --- a/rpms/awips2.edex/Installer.edex-configuration/component.spec +++ b/rpms/awips2.edex/Installer.edex-configuration/component.spec @@ -93,7 +93,8 @@ if [ $? -ne 0 ]; then fi # remove the test logback configuration used for development -rm -f ${RPM_BUILD_ROOT}/awips2/edex/conf/logback-test.xml +# We don't want to remove the test logback, because it's used for the new modes we create +#rm -f ${RPM_BUILD_ROOT}/awips2/edex/conf/logback-test.xml if [ $? -ne 0 ]; then exit 1 fi diff --git a/rpms/awips2.edex/Installer.edex/ndm/MTR.goodness b/rpms/awips2.edex/Installer.edex/ndm/MTR.goodness index d35d81aaf9..c1b6fc1ae1 100644 --- a/rpms/awips2.edex/Installer.edex/ndm/MTR.goodness +++ b/rpms/awips2.edex/Installer.edex/ndm/MTR.goodness @@ -447,6 +447,7 @@ 0 K1CW 41.5806 -103.573 1370 500 0 K1D1 45.23053 -96.56596 340 500 0 K1D7 45.29258 -97.51379 565 500 + 0 K1D8 44.85657 -98.53123 399 500 0 K1DM 47.37602 -109.814 1093 500 0 K1DN 47.79468 -101.298 634 500 0 K1DW 41.36167 -103.79408 1540 500 @@ -497,7 +498,6 @@ 0 K1S5 46.3271 -119.9704 234 2500 72614 K1V4 44.4200 -72.0200 217 16939 0 K1V6 38.4284 -105.106 1659 500 - 0 K1YT 46.6667 -120.45 438 500 0 K2G2 40.36061 -80.70169 365 500 0 K2G9 40.03887 -79.01500 693 500 0 K2J3 32.98594 -82.38481 100 500 @@ -524,8 +524,9 @@ 0 K2IS 26.73517 -81.05106 6 500 0 K2J9 30.59787 -84.55743 69 500 0 K2M2 35.23431 -87.25794 285 500 + 0 K2M8 35.27848 -89.93300 75 500 0 K2P2 45.38825 -86.92404 199 500 - 0 K2R2 39.7468 -86.4752 273 500 + 0 K2R2 39.74678 -86.47517 274 500 0 K2R9 28.82499 -97.86557 88 500 0 K2V5 40.10032 -102.24096 1118 500 0 K2V6 40.10420 -102.71300 1261 500 @@ -544,7 +545,6 @@ 0 K3F3 32.07278 -93.76561 99 500 0 K3HT 46.4400 -109.8400 1268 843 0 K3I2 38.9146 -82.0986 196 500 - 0 K3J7 33.5977 -83.139 206 500 0 K3K3 37.922 -101.746 1013 500 0 K3K8 37.22333 -99.33167 636 500 0 K3KM 37.7500 -97.2000 433 500 @@ -556,7 +556,6 @@ 0 K3R7 30.2427 -92.6735 7 500 0 K3S8 42.5101 -123.388 345 500 0 K3T5 29.91 -96.95 99 200 - 0 K3TH 47.6100 -115.3700 725 565 0 K3U3 46.15341 -112.86773 1534 500 0 K40G 35.6500 -112.1300 1829 317 0 K41U 39.3313 -111.6127 1676 2500 @@ -566,9 +565,11 @@ 0 K48A 32.40066 -83.27841 115 500 0 K48I 38.6870 -80.6518 387 500 0 K49A 34.6282 -84.5266 453 2500 + 0 K49T 32.77172 -96.80206 146 500 0 K49Y 43.68 -92.18 389 500 0 K4A6 34.6887 -86.0059 198 2500 0 K4A9 34.474 -85.721 267 500 + 0 K4B8 41.68933 -72.86469 62 500 0 K4BL 37.6200 -109.4700 1840 541 0 K4BM 39.05024 -105.51436 3432 500 0 K4C0 29.78 -93.18 -0 500 @@ -594,22 +595,27 @@ 0 K5A6 33.46499 -89.7302 111 2500 0 K5C1 29.7239 -98.6946 422 500 0 K5H4 47.7912 -99.93175 490 500 + 0 K5K2 38.45146 -101.75008 1100 500 0 K5R8 30.4411 -93.4736 25 500 0 K5SM 39.426 -107.379 3232 500 0 K5T9 28.8571 -100.5135 270 2500 + 0 K60R 30.36714 -96.11294 70 500 0 K63S 48.54539 -117.88079 574 500 0 K65S 48.72597 -116.29517 712 500 0 K66R 29.6415 -96.5160 74 2500 0 K6A1 32.5674 -84.25075 203 500 0 K6A2 33.227 -84.275 292 500 0 K6B0 43.9848 -73.0959 149 500 + 0 K6B4 43.01611 -75.16954 404 500 0 K6B9 42.91396 -76.44077 316 500 0 K6I2 37.6335 -85.2418 266 2500 0 K6L4 37.8557 -81.9159 508 500 0 K6P9 32.43172 -98.59475 450 500 0 K6R3 30.3564 -95.0080 46 500 0 K6R6 30.0465 -102.2132 708 8000 + 0 K6S0 45.80648 -109.97826 1370 500 0 K6S2 43.9828 -124.1113 16 500 + 0 K6S8 45.70518 -108.76077 1080 500 0 K7A8 35.9454 -81.9962 837 500 0 K74V 40.27842 -110.05139 1576 500 0 K75S 48.5100 -122.3300 43 500 @@ -617,6 +623,7 @@ 0 K77M 42.3000 -113.3700 1435 500 0 K77S 43.93075 -123.00667 165 500 0 K79J 31.32 -86.41 94 500 + 0 K79S 47.84419 -110.63686 874 500 0 K7BM 38.799 -106.218 2995 500 0 K7L2 46.2206 -100.2456 542 500 0 K7LI 38.6100 -112.3000 1656 500 @@ -624,6 +631,7 @@ 0 K7R3 29.7000 -91.1000 2 500 0 K7R4 29.7800 -92.1300 5 500 0 K7R8 28.3000 -91.9800 1 500 + 0 K7S0 47.56717 -114.10108 941 500 0 K7W4 37.9658 -77.7459 107 2500 0 K7W6 35.56204 -75.95566 2 500 0 K8A3 36.41350 -85.31044 418 500 @@ -651,12 +659,16 @@ 0 K9K8 37.66903 -98.12389 489 500 0 K9L2 34.97 -117.87 701 500 0 K9MN 44.02 -92.48 335 500 + 0 K9S5 45.87811 -111.56944 1246 500 + 0 K9S9 45.45414 -119.69028 498 500 72653 K9V9 43.8000 -99.3200 530 16981 + 0 K9Y1 47.39133 -102.77181 685 500 0 KA08 32.5105 -87.3848 67 2500 0 KA39 32.99055 -111.91890 398 500 0 KAAA 40.15885 -89.33893 182 500 0 KAAF 29.728 -85.027 6 500 0 KAAO 37.7461 -97.2211 433 10000 + 0 KAAS 37.35828 -85.30942 281 500 0 KAAT 41.491 -120.564 1331 500 72517 KABE 40.6600 -75.4300 114 27966 0 KABH 38.7578 -104.3083 1840 500 @@ -832,6 +844,7 @@ 0 KBEC 37.6939 -97.2149 429 500 74490 KBED 42.4700 -71.2900 41 9109 0 KBEH 42.1400 -86.4400 196 21867 + 0 KBFA 45.16584 -84.92411 219 500 0 KBFD 41.8000 -78.6400 653 11544 72566 KBFF 41.8800 -103.6000 1206 28020 0 KBFI 47.5400 -122.3000 5 8298 @@ -1054,6 +1067,7 @@ 0 KCPF 37.38736 -83.26161 383 500 0 KCPK 36.66562 -76.32066 6 500 0 KCPM 33.88992 -118.24381 30 500 + 0 KCPP 33.59797 -83.13826 210 500 72569 KCPR 42.9300 -106.4700 1622 18370 0 KCPS 38.5707 -90.1562 126 9746 0 KCPT 32.354 -97.434 260 500 @@ -1114,6 +1128,7 @@ 0 KCZT 28.52225 -99.8236 182 500 0 KCZZ 32.6200 -116.4700 802 8571 0 KD07 45.032565 -102.020024 787 500 + 0 KD09 48.83047 -100.41731 512 500 0 KD25 46.1202 -89.8822 491 500 0 KD36 46.7200 -92.0400 186 1601 0 KD39 45.7066 -94.9334 379 500 @@ -1232,6 +1247,7 @@ 0 KE41 31.19775 -101.47540 825 500 0 KE42 36.22100 -101.19450 942 500 0 KE74 32.8300 -109.6800 900 4126 + 0 KE77 32.6364 -110.6472 997 500 0 KEAN 42.05553 -104.92861 1456 500 0 KEAR 40.7300 -99.0000 649 5564 0 KEAT 47.4100 -120.2000 379 10361 @@ -1316,6 +1332,7 @@ 0 KEVU 40.3525 -94.9150 351 500 72432 KEVV 38.0500 -87.5300 118 27940 0 KEVW 41.27 -111.03 2183 2489 + 0 KEVY 39.52103 -75.72367 21 500 0 KEWB 41.6900 -70.9700 23 21791 0 KEWK 38.05708 -97.27523 467 10632 0 KEWN 35.072853 -77.043021 6 9320 @@ -1346,6 +1363,7 @@ 0 KFCI 37.40644 -77.52483 72 500 0 KFCM 44.8400 -93.4700 276 15191 72468 KFCS 38.6900 -104.7700 1789 1899 + 0 KFCT 46.66942 -120.45597 420 500 0 KFDK 39.4177 -77.3743 92 500 0 KFDR 34.3500 -98.9800 383 12000 0 KFDW 34.3155 -81.1088 176 500 @@ -1661,6 +1679,7 @@ 0 KHZX 46.619 -93.310 374 500 0 KHZY 41.779 -80.697 277 500 0 KI16 37.600 -81.559 544 500 + 0 KI18 38.92978 -81.81947 231 500 0 KI19 39.69103 -83.99199 289 500 0 KI23 39.57040 -83.42052 299 500 0 KI35 36.8593 -83.35847 473 500 @@ -2111,6 +2130,7 @@ 0 KMYV 39.1100 -121.5700 19 4517 0 KMYZ 39.8564 -96.6307 391 500 0 KMZG 27.72694 -96.19111 -0 500 + 0 KMZJ 32.5098 -111.3253 577 500 0 KMZZ 40.4899 -85.6797 262 500 0 KN00 43.3600 -76.3900 145 4840 0 KN03 42.5926 -76.21488 365 500 @@ -2401,7 +2421,7 @@ 0 KPVF 38.7242 -120.7533 788 500 0 KPVG 36.780 -76.4488 7 500 0 KPVJ 34.711 -97.223 295 500 - 0 KPVU 40.2300 -111.7200 1369 11201 + 0 KPVU 40.2239 -111.7253 1369 11201 0 KPVW 34.163093 -101.722317 1028 500 0 KPWA 35.5400 -97.6500 396 12406 0 KPWC 46.7200 -94.3800 395 11808 @@ -2499,6 +2519,7 @@ 0 KRUE 35.26 -93.09 123 800 0 KRUG 48.39036 -100.02427 472 500 0 KRUT 43.5400 -72.9500 240 7438 + 0 KRVF 45.53542 -112.30228 1460 500 0 KRVJ 32.05949 -82.15357 60 500 0 KRVL 40.67739 -77.62683 250 500 0 KRVS 36.0400 -95.9800 191 13341 @@ -2524,10 +2545,13 @@ 0 KS25 47.796583 -103.255194 643 500 0 KS32 47.42277 -98.10587 434 500 0 KS33 44.6702 -121.1551 743 2500 + 0 KS34 47.47356 -114.90708 752 500 0 KS39 44.2878 -120.9052 991 2500 + 0 KS40 46.21336 -119.79556 215 500 0 KS52 48.42495 -120.14589 520 500 0 KS58 28.5300 -90.5800 1 500 0 KS59 48.28333 -115.490 794 500 + 0 KS71 48.59211 -109.25061 734 500 0 KS85 48.15356 -104.50406 595 500 0 KSAA 41.4435 -106.8275 2138 500 72483 KSAC 38.5200 -121.5000 6 10196 @@ -2721,6 +2745,7 @@ 0 KTFP 27.913 -97.212 5 500 0 KTGI 37.82587 -75.99766 2 500 0 KTHA 35.380 -86.2467 330 500 + 0 KTHM 47.57350 -115.28066 752 565 0 KTHV 39.9200 -76.8700 148 13396 0 KTIF 41.962 -100.569 892 500 0 KTIP 40.29148 -88.14736 225 500 @@ -2790,9 +2815,12 @@ 0 KU31 39.5100 -117.0900 2014 1119 0 KU42 40.62 -111.9929 1404 2500 0 KU52 38.23058 -112.67542 1787 500 + 0 KU55 37.84522 -112.39194 2061 500 74420 KU67 40.3000 -110.0500 1556 500 0 KU68 44.91167 -108.4455 1248 500 + 0 KU69 40.19375 -110.38298 1777 500 0 KU78 42.6600 -111.5800 1781 3101 + 0 KU96 37.43531 -110.56428 1340 500 0 KUAO 45.2490 -122.7660 60 4621 0 KUBE 45.50597 -91.981087 378 500 0 KUCP 41.0253 -80.4134 327 500 @@ -2935,6 +2963,7 @@ 72781 KYKM 46.5682 -120.5441 335 2500 0 KYKN 42.9200 -97.3800 398 7581 72525 KYNG 41.2700 -80.6700 361 27269 + 0 KZER 40.70675 -76.37375 527 500 0 KZPH 28.228 -82.1559 27 500 0 KZZV 39.94609 -81.89315 274 7083 78482 MDBH 18.22 -71.10 26 500 @@ -3201,7 +3230,7 @@ 0 PHHN 20.784 -156.014 23 500 0 PHJH 21.0200 -156.6300 40 4654 91178 PHJR 21.32 -158.07 15 500 -91281 PHKO 19.6500 -156.0000 9 18447 +91281 PHKO 19.73877 -156.04563 15 18447 91165 PHLI 21.9800 -159.3500 45 26405 0 PHLU 21.22 -156.97 8 500 91186 PHMK 21.1500 -157.1000 137 5223 diff --git a/rpms/awips2.edex/Installer.edex/ndm/afos2awips.txt b/rpms/awips2.edex/Installer.edex/ndm/afos2awips.txt index 3ffadf0e66..86e670dcd6 100644 --- a/rpms/awips2.edex/Installer.edex/ndm/afos2awips.txt +++ b/rpms/awips2.edex/Installer.edex/ndm/afos2awips.txt @@ -656,6 +656,7 @@ ALBMTRPBG SAUS70 KPBG ALBMTRRME SAUS71 KBGM ALBMTRSYR SAUS41 KBGM ALBMTRUCA SAUS41 KALY +ALBMTRVSF SAUS41 KBTV ALBMTTPBG SXUS41 KBTV ALBMTTRME SXUS41 KBGM ALBNOWALY FPUS71 KALY @@ -1755,6 +1756,7 @@ ARBFWNAPX SHUS83 KAPX ARBFWNGRR SHUS83 KGRR ARBFWOGRR SHUS63 KGRR ARBFWSAPX FNUS73 KAPX +ARBFWSDTX FNUS73 KDTX ARBFWSGRR FNUS73 KGRR ARBFWSMQT FNUS73 KMQT ARBFZLAPX UXUS43 KAPX @@ -4995,6 +4997,7 @@ CHIFWMILX FNUS83 KILX CHIFWMLOT FNUS83 KLOT CHIFWNILX SHUS83 KILX CHIFWNLOT SHUS83 KLOT +CHIFWSDVN FNUS73 KDVN CHIFWSILX FNUS73 KILX CHIFWSLOT FNUS73 KLOT CHIFZLDVN UXUS43 KDVN @@ -5220,6 +5223,7 @@ CHISVSLOT WWUS53 KLOT CHISYNLOT NZUS97 KLOT CHITAFBMI FTUS43 KILX CHITAFCMI FTUS43 KILX +CHITAFCPS FTUS43 KLSX CHITAFDEC FTUS43 KILX CHITAFDPA FTUS43 KLOT CHITAFMDW FTUS43 KLOT @@ -7307,6 +7311,7 @@ DSMFWEDMX FEUS43 KDMX DSMFWFDMX FNUS53 KDMX DSMFWLDMX FNUS83 KDMX DSMFWMDMX FNUS83 KDMX +DSMFWSDMX FNUS73 KDMX DSMFWWDMX FNUS63 KDMX DSMHCMDMX NGUS83 KDMX DSMHMLDMX SRUS53 KDMX @@ -8356,7 +8361,7 @@ FTWADRFWD WOUS44 KFWD FTWAFDFWD FXUS64 KFWD FTWAFMFWD FOUS54 KFWD FTWAFPFWD FLUS44 KFWD -FTWALGDFW NZUS97 KDWD +FTWALGDFW NZUS97 KZFW FTWAQAFWD AEUS74 KFWD FTWAQIFWD AEUS74 KFWD FTWASAFWD AEUS44 KFWD @@ -8910,6 +8915,8 @@ GTFCF6HVR CXUS55 KTFX GTFCF6MLS CXUS55 KBYZ GTFCF6MSO CXUS55 KMSO GTFCF6SHR CXUS55 KBYZ +GTFCLABHK CXUS55 KBYZ +GTFCLIBHK CDUS45 KBYZ GTFCLIBIL CDUS45 KBYZ GTFCLIBTM CDUS45 KMSO GTFCLICTB CDUS45 KTFX @@ -8922,6 +8929,7 @@ GTFCLIHVR CDUS45 KTFX GTFCLIMLS CDUS45 KBYZ GTFCLIMSO CDUS45 KMSO GTFCLISHR CDUS45 KBYZ +GTFCLMBHK CXUS55 KBYZ GTFCLMBIL CXUS55 KBYZ GTFCLMBTM CXUS55 KMSO GTFCLMFCA CXUS55 KMSO @@ -8946,6 +8954,7 @@ GTFDMOTFX WOUS45 KTFX GTFDPABLX SDUS85 KBYZ GTFDPAGGW SDUS85 KGGW GTFDPATFX SDUS85 KTFX +GTFDSMBHK CXUS45 KBYZ GTFDSMBIL CXUS45 KBYZ GTFDSMFCA CXUS45 KMSO GTFDSMGGW CXUS45 KGGW @@ -9076,6 +9085,7 @@ GTFMISGPI AXUS45 KMSO GTFMISHLN AXUS45 KTFX GTFMISSTO AXUS45 KTFX GTFMISTFX AXUS45 KTFX +GTFMSMBHK CSUS45 KBYZ GTFMSMBIL CSUS45 KBYZ GTFMSMFCA CSUS45 KMSO GTFMSMGGW CSUS45 KGGW @@ -10050,7 +10060,6 @@ HFORETRAN NZXX99 PHFO HFORFRBCS FRPA34 PHFO HFORFRFFN FROC33 PHFO HFORFRJON FROC31 PHFO -HFORFRKSF FRPN31 PHFO HFORFRKWA FROC32 PHFO HFORFRNLA FRPA36 PHFO HFORFRSLA FRPA35 PHFO @@ -10573,7 +10582,6 @@ INDCEMIND WOUS43 KIND INDCEMIN WOUS43 KIND INDCEMIWX WOUS43 KIWX INDCF6BMG CXUS53 KIND -INDCF6EVV CXUS53 KPAH INDCF6EYE CXUS53 KIND INDCF6FWA CXUS53 KIWX INDCF6GEZ CXUS53 KIND @@ -10590,7 +10598,6 @@ INDCLAAOH CXUS53 KIWX INDCLABEH CXUS53 KIWX INDCLABMG CXUS53 KIND INDCLADFI CXUS53 KIWX -INDCLAEVV CXUS53 KPAH INDCLAEYE CXUS53 KIND INDCLAFWA CXUS53 KIWX INDCLAGEZ CXUS53 KIND @@ -10606,7 +10613,6 @@ INDCLIAOH CDUS43 KIWX INDCLIBEH CDUS43 KIWX INDCLIBMG CDUS43 KIND INDCLIDFI CDUS43 KIWX -INDCLIEVV CDUS43 KPAH INDCLIEYE CDUS43 KIND INDCLIFWA CDUS43 KIWX INDCLIGEZ CDUS43 KIND @@ -10623,7 +10629,6 @@ INDCLMAOH CXUS53 KIWX INDCLMBEH CXUS53 KIWX INDCLMBMG CXUS55 KIND INDCLMDFI CXUS53 KIWX -INDCLMEVV CXUS53 KPAH INDCLMEYE CXUS55 KIND INDCLMFWA CXUS53 KIWX INDCLMGEZ CXUS55 KIND @@ -10642,7 +10647,6 @@ INDCLSAOH CXUS53 KIWX INDCLSBEH CXUS53 KIWX INDCLSBMG CXUS53 KIND INDCLSDFI CXUS53 KIWX -INDCLSEVV CXUS53 KPAH INDCLSEYE CXUS53 KIND INDCLSFWA CXUS53 KIWX INDCLSGEZ CXUS53 KIND @@ -10715,6 +10719,7 @@ INDFWMIWX FNUS83 KIWX INDFWNIND SHUS83 KIND INDFWOIN SHUS63 KIND INDFWSIND FNUS73 KIND +INDFWSIWX FNUS73 KIWX INDHCMIND NGUS83 KIND INDHCMIWX NGUS83 KIWX INDHDPIWX AGUS43 KIWX @@ -10726,6 +10731,7 @@ INDHMWIWX WOUS43 KIWX INDHRRIND NZUS01 KIND INDHWOIND FLUS43 KIND INDHWOIWX FLUS43 KIWX +INDHYDIND SXUS53 KIND INDHYMIND CSUS43 KIND INDHYMIWX CSUS43 KIWX INDLAEIND WOUS43 KIND @@ -12439,6 +12445,7 @@ LBBRWSSJT AWUS84 KSJT LBBSADELP AWUS54 KEPZ LBBSAFLUB NZUS02 KLUB LBBSAFMAF FNUS84 KMAF +LBBSAFSJT NZUS02 KSJT LBBSAMELP AWUS64 KEPZ LBBSAQLUB NZUS02 KLUB LBBSCDEPZ CXUS64 KEPZ @@ -19188,6 +19195,7 @@ OKCSVSOUN WWUS54 KOUN OKCSVSTSA WWUS54 KTSA OKCTAFBVO FTUS44 KTSA OKCTAFCSM FTUS44 KOUN +OKCTAFDUA FTUS44 KOUN OKCTAFFSM FTUS44 KTSA OKCTAFFYV FTUS44 KTSA OKCTAFLAW FTUS44 KOUN @@ -19496,6 +19504,7 @@ OMAFWNGID SHUS83 KGID OMAFWNLBF SHUS83 KLBF OMAFWNOAX SHUS83 KOAX OMAFWONE SHUS63 KOAX +OMAFWSGID FNUS73 KGID OMAFWSLBF FNUS73 KLBF OMAFWSOAX FNUS73 KOAX OMAFZLLBF UXUS43 KLBF @@ -19606,8 +19615,8 @@ OMARECOAX SXUS43 KOAX OMARERAIA SXUS75 KCYS OMARERBFF SXUS75 KCYS OMARERCDR SXUS75 KCYS -OMARERGID SXUS73 KGID OMARERGRI SXUS73 KGID +OMARERHSI SXUS73 KGID OMARERLBF SXUS73 KLBF OMARERLNK SXUS73 KOAX OMARERNOP SXUS73 KLBF @@ -22936,8 +22945,12 @@ RNOCF6P68 CXUS56 KLKN RNOCF6RNO CXUS55 KREV RNOCF6TPH CXUS55 KLKN RNOCF6WMC CXUS55 KLKN +RNOCLADAG CXUS55 KVEF +RNOCLADRA CXUS55 KVEF RNOCLADVF CXUS55 KVEF +RNOCLAEED CXUS55 KVEF RNOCLAP68 CXUS55 KLKN +RNOCLAVGT CXUS55 KVEF RNOCLIDVF CDUS45 KVEF RNOCLIEKO CDUS45 KLKN RNOCLIELY CDUS45 KLKN @@ -22945,15 +22958,23 @@ RNOCLILAS CDUS45 KVEF RNOCLIP68 CDUS45 KLKN RNOCLIRNO CDUS45 KREV RNOCLIWMC CDUS45 KLKN +RNOCLMDAG CXUS55 KVEF RNOCLMDVF CXUS55 KVEF +RNOCLMDRA CXUS55 KVEF +RNOCLMEED CXUS55 KVEF RNOCLMEKO CXUS55 KLKN RNOCLMELY CXUS55 KLKN RNOCLMLAS CXUS55 KVEF RNOCLMP68 CXUS55 KLKN RNOCLMRNO CXUS55 KREV +RNOCLMVGT CXUS55 KVEF RNOCLMWMC CXUS55 KLKN +RNOCLSDAG CXUS55 KVEF +RNOCLSDRA CXUS55 KVEF RNOCLSDVF CXUS55 KVEF +RNOCLSEED CXUS55 KVEF RNOCLSP68 CXUS55 KLKN +RNOCLSVGT CXUS55 KVEF RNOCMMRNO CSUS55 KREV RNOCMMTVL CSUS55 KREV RNOCMMWMC CSUS55 KLKN @@ -24175,6 +24196,8 @@ SDFCEMKY WOUS43 KLMK SDFCEMLMK WOUS43 KLMK SDFCEMPAH WOUS43 KPAH SDFCF6BWG CXUS53 KLMK +SDFCF6CGI CXUS53 KPAH +SDFCF6EVV CXUS53 KPAH SDFCF6FFT CXUS53 KLMK SDFCF6JKL CXUS53 KJKL SDFCF6LEX CXUS53 KLMK @@ -24200,6 +24223,7 @@ SDFCLAPOF CXUS53 KPAH SDFCLASDF CXUS53 KLMK SDFCLIBWG CDUS43 KLMK SDFCLICGI CDUS43 KPAH +SDFCLIEVV CDUS43 KPAH SDFCLIFFT CDUS43 KLMK SDFCLIJAK CDUS43 KJKL SDFCLIJKL CDUS43 KJKL @@ -24216,6 +24240,7 @@ SDFCLIPOF CDUS43 KPAH SDFCLISDF CDUS43 KLMK SDFCLMBWG CXUS53 KLMK SDFCLMCGI CXUS55 KPAH +SDFCLMEVV CXUS53 KPAH SDFCLMJAK CXUS55 KJKL SDFCLMJKL CXUS53 KJKL SDFCLMLEX CXUS53 KLMK @@ -24417,6 +24442,7 @@ SDFRDGLMK FOUS43 KLMK SDFRECJKL SXUS43 KJKL SDFRECLMK SXUS43 KLMK SDFRECPAH SXUS43 KPAH +SDFRERCGI SXUS73 KPAH SDFREREVV SXUS73 KPAH SDFRERJAK SXUS73 KJKL SDFRERJKL SXUS73 KJKL @@ -26731,7 +26757,6 @@ STLCEMLSX WOUS43 KLSX STLCEMMO WOUS43 KLSX STLCEMSGF WOUS43 KSGF STLCF6CDJ CXUS53 KEAX -STLCF6CGI CXUS53 KPAH STLCF6COU CXUS53 KLSX STLCF6CPS CXUS53 KLSX STLCF6DMO CXUS53 KEAX @@ -26753,7 +26778,6 @@ STLCF6UIN CXUS53 KLSX STLCF6UNO CXUS53 KSGF STLCF6VIH CXUS53 KSGF STLCLACDJ CXUS53 KEAX -STLCLACGI CXUS53 KPAH STLCLACOU CXUS53 KLSX STLCLACPS CXUS53 KLSX STLCLADMO CXUS53 KEAX @@ -26813,7 +26837,6 @@ STLCLMUIN CXUS53 KLSX STLCLMUNO CXUS53 KSGF STLCLMVIH CXUS53 KSGF STLCLSCDJ CXUS53 KEAX -STLCLSCGI CXUS53 KPAH STLCLSCOU CXUS53 KLSX STLCLSCPS CXUS53 KLSX STLCLSDMO CXUS53 KEAX @@ -27253,11 +27276,13 @@ SWXALTXMF WOXX01 KWNP SWXALTXX1 WOXX02 KWNP SWXALTZ45 WOXX01 KWNP SWXCURIND AXXX83 KWNP +SWXDAYDIS FXXX12 KWNP SWXDAYDSF FXXX01 KWNP SWXDAYEVT AXXX80 KWNP SWXDAYIND AXXX81 KWNP SWXDAYOBS AXXX82 KWNP SWXDAYPRE FXXX04 KWNP +SWXDAYTDF FXXX10 KWNP SWXMONCYC FOXX08 KWNP SWXNOTICE NWXX01 KWNP SWXSAANG1 NWXX02 KWNP @@ -27627,7 +27652,10 @@ TOPFWNGLD SHUS83 KGLD TOPFWNICT SHUS83 KICT TOPFWNTOP SHUS83 KTOP TOPFWOKS SHUS63 KTOP +TOPFWSDDC FNUS73 KDDC TOPFWSGLD FNUS73 KGLD +TOPFWSICT FNUS73 KICT +TOPFWSTOP FNUS73 KTOP TOPFZLDDC UXUS43 KDDC TOPFZLTOP UXUS43 KTOP TOPGREEN NZUS43 KTOP diff --git a/rpms/awips2.edex/Installer.edex/ndm/afosMasterPIL.txt b/rpms/awips2.edex/Installer.edex/ndm/afosMasterPIL.txt index 01d684475b..25d5dad979 100644 --- a/rpms/awips2.edex/Installer.edex/ndm/afosMasterPIL.txt +++ b/rpms/awips2.edex/Installer.edex/ndm/afosMasterPIL.txt @@ -736,6 +736,7 @@ ALBMTR1B1 ALBMTR1V4 ALBMTR5B2 ALBMTR6B0 +ALBMTR6B4 ALBMTR6B9 ALBMTRALB ALBMTRAQW @@ -1832,6 +1833,7 @@ ARBMTRARB ARBMTRAZO ARBMTRBAX ARBMTRBEH +ARBMTRBFA ARBMTRBIV ARBMTRBTL ARBMTRCAD @@ -2452,7 +2454,6 @@ ATLMTR18A ATLMTR27A ATLMTR2J3 ATLMTR2J5 -ATLMTR3J7 ATLMTR48A ATLMTR49A ATLMTR6A1 @@ -2473,6 +2474,7 @@ ATLMTRBQK ATLMTRCCO ATLMTRCKF ATLMTRCNI +ATLMTRCPP ATLMTRCSG ATLMTRCVC ATLMTRCXU @@ -3261,10 +3263,12 @@ BISMTR5H4 BISMTR7L2 BISMTR96D BISMTR9D7 +BISMTR9Y1 BISMTRBAC BISMTRBIS BISMTRBPP BISMTRBWP +BISMTRD09 BISMTRD50 BISMTRD55 BISMTRD57 @@ -3955,6 +3959,7 @@ BOSMSMBDL BOSMSMBOS BOSMSMORH BOSMSMPVD +BOSMTR4B8 BOSMTRACK BOSMTRBAF BOSMTRBDL @@ -6047,6 +6052,7 @@ CRWMTRDWU CRWMTREKN CRWMTRHTS CRWMTRI16 +CRWMTRI18 CRWMTRJRO CRWMTRPKB CRWMTRUNI @@ -8672,6 +8678,7 @@ FSDMSMSUX FSDMTR0D8 FSDMTR1D1 FSDMTR1D7 +FSDMTR1D8 FSDMTR2WX FSDMTR8D3 FSDMTR9V9 @@ -8922,6 +8929,7 @@ FTWADRFWD FTWAFDFWD FTWAFMFWD FTWAFPFWD +FTWALGDFW FTWAQAFWD FTWAQIFWD FTWAVAFWD @@ -9143,6 +9151,7 @@ FTWMSMDFW FTWMSMHLR FTWMSMNFW FTWMTR0F2 +FTWMTR49T FTWMTR4F2 FTWMTR6P9 FTWMTRACT @@ -9438,6 +9447,7 @@ GTFCF6MLS GTFCF6MSO GTFCF6OLF GTFCF6SHR +GTFCLABHK GTFCLABIL GTFCLABTM GTFCLAGGW @@ -9449,6 +9459,7 @@ GTFCLALVM GTFCLAMLS GTFCLAMSO GTFCLASHR +GTFCLIBHK GTFCLIBIL GTFCLIBTM GTFCLIBZN @@ -9462,6 +9473,7 @@ GTFCLILVM GTFCLIMLS GTFCLIMSO GTFCLISHR +GTFCLMBHK GTFCLMBIL GTFCLMBTM GTFCLMGGW @@ -9484,6 +9496,7 @@ GTFDMOGGW GTFDMOMSO GTFDMOMT GTFDMOTFX +GTFDSMBHK GTFDSMBIL GTFDSMGGW GTFDSMGPI @@ -9608,6 +9621,7 @@ GTFMISHLN GTFMISMSO GTFMISSTO GTFMISTFX +GTFMSMBHK GTFMSMBIL GTFMSMGGW GTFMSMGPI @@ -9635,7 +9649,12 @@ GTFMTR3DU GTFMTR3HT GTFMTR3U3 GTFMTR4U6 +GTFMTR6S0 +GTFMTR6S8 +GTFMTR79S +GTFMTR7S0 GTFMTR8S0 +GTFMTR9S5 GTFMTRBIL GTFMTRBTM GTFMTRBZN @@ -9663,10 +9682,14 @@ GTFMTRP69 GTFMTRPO1 GTFMTRPWD GTFMTRRPX +GTFMTRRVF +GTFMTRS34 GTFMTRS59 +GTFMTRS71 GTFMTRS85 GTFMTRSBX GTFMTRSDY +GTFMTRTHM GTFMTRWEY GTFMTRWYS GTFNOWBYZ @@ -10591,7 +10614,6 @@ HFOPWSCP8 HFOPWSCP9 HFORERHFO HFORERPPG -HFORFRKSF HFORFWHFO HFORHWAS HFORHWHFO @@ -11638,7 +11660,6 @@ INDCEMIN INDCEMIND INDCEMIWX INDCF6BMG -INDCF6EVV INDCF6EYE INDCF6FWA INDCF6GEZ @@ -11669,7 +11690,6 @@ INDCLIAOH INDCLIBEH INDCLIBMG INDCLIDFI -INDCLIEVV INDCLIEYE INDCLIFWA INDCLIGEZ @@ -11686,7 +11706,6 @@ INDCLMAOH INDCLMBEH INDCLMBMG INDCLMDFI -INDCLMEVV INDCLMEYE INDCLMFWA INDCLMGEZ @@ -11778,6 +11797,7 @@ INDHMWIWX INDHRRIND INDHWOIND INDHWOIWX +INDHYDIND INDHYMIND INDHYMIWX INDLAEIN @@ -15318,6 +15338,7 @@ LBBRWRSJT LBBRWRTX LBBRWSLUB LBBRWSSJT +LBBSAFSJT LBBSFPTX LBBSFTAMA LBBSFTEPZ @@ -19455,6 +19476,7 @@ MEMMTR15M MEMMTR1M5 MEMMTR2A0 MEMMTR2M2 +MEMMTR2M8 MEMMTR4M9 MEMMTR6R6 MEMMTR8A3 @@ -34667,6 +34689,7 @@ OKCSVSOUN OKCSVSTSA OKCTAFBVO OKCTAFCSM +OKCTAFDUA OKCTAFFSM OKCTAFFYV OKCTAFLAW @@ -35058,8 +35081,8 @@ OMARERAIA OMARERBBW OMARERBFF OMARERCDR -OMARERGID OMARERGRI +OMARERHSI OMARERIML OMARERLBF OMARERLNK @@ -35726,6 +35749,7 @@ PDXMTR4S2 PDXMTR6S2 PDXMTR77S PDXMTR92S +PDXMTR9S9 PDXMTRAST PDXMTRBDN PDXMTRBKE @@ -35735,6 +35759,7 @@ PDXMTRCVO PDXMTRCZK PDXMTRDLS PDXMTREUG +PDXMTRFCT PDXMTRGCD PDXMTRHIO PDXMTRHMS @@ -35758,6 +35783,7 @@ PDXMTRRRW PDXMTRS12 PDXMTRS33 PDXMTRS39 +PDXMTRS40 PDXMTRSLE PDXMTRSPB PDXMTRSXT @@ -36267,6 +36293,7 @@ PHLMTRCKZ PHLMTRCXY PHLMTRDOV PHLMTRDYL +PHLMTREVY PHLMTRFIG PHLMTRFWN PHLMTRGED @@ -36307,6 +36334,7 @@ PHLMTRVAY PHLMTRWRI PHLMTRWWD PHLMTRXLL +PHLMTRZER PHLMWSPHI PHLMWWPHI PHLNOWCTP @@ -36742,6 +36770,7 @@ PHXMTRCMR PHXMTRD68 PHXMTRDMA PHXMTRDUG +PHXMTRE77 PHXMTRFHU PHXMTRFLG PHXMTRGCN @@ -36752,6 +36781,7 @@ PHXMTRIGM PHXMTRINW PHXMTRJTC PHXMTRLUF +PHXMTRMZJ PHXMTRNYL PHXMTRP08 PHXMTRPAN @@ -38617,7 +38647,10 @@ RNOCF6RNO RNOCF6TPH RNOCF6TVL RNOCF6WMC +RNOCLADAG RNOCLADVF +RNOCLADRA +RNOCLAEED RNOCLAEKO RNOCLAELY RNOCLALAS @@ -38625,6 +38658,7 @@ RNOCLAP68 RNOCLARNO RNOCLATPH RNOCLATVL +RNOCLAVGT RNOCLAWMC RNOCLIDVF RNOCLIEKO @@ -38635,7 +38669,10 @@ RNOCLIRNO RNOCLITPH RNOCLITVL RNOCLIWMC +RNOCLMDAG RNOCLMDVF +RNOCLMDRA +RNOCLMEED RNOCLMEKO RNOCLMELY RNOCLMLAS @@ -38643,13 +38680,18 @@ RNOCLMP68 RNOCLMRNO RNOCLMTPH RNOCLMTVL +RNOCLMVGT RNOCLMWMC +RNOCLSDAG RNOCLSDVF +RNOCLSDRA +RNOCLSEED RNOCLSEKO RNOCLSELY RNOCLSP68 RNOCLSTPH RNOCLSTVL +RNOCLSVGT RNOCLSWMC RNOCMMRNO RNOCMMTVL @@ -39508,6 +39550,7 @@ SATMTR3R0 SATMTR3T5 SATMTR5C1 SATMTR5T9 +SATMTR60R SATMTR66R SATMTR6R3 SATMTR8T6 @@ -40027,6 +40070,8 @@ SDFCEMKY SDFCEMLMK SDFCEMPAH SDFCF6BWG +SDFCF6CGI +SDFCF6EVV SDFCF6FFT SDFCF6JKL SDFCF6LEX @@ -40052,6 +40097,7 @@ SDFCLAPOF SDFCLASDF SDFCLIBWG SDFCLICGI +SDFCLIEVV SDFCLIFFT SDFCLIJAK SDFCLIJKL @@ -40068,6 +40114,7 @@ SDFCLIPOF SDFCLISDF SDFCLMBWG SDFCLMCGI +SDFCLMEVV SDFCLMJAK SDFCLMJKL SDFCLMLEX @@ -40217,6 +40264,7 @@ SDFMTR1A6 SDFMTR27K SDFMTR2I0 SDFMTR6I2 +SDFMTRAAS SDFMTRBRY SDFMTRBWG SDFMTRBYL @@ -42174,6 +42222,13 @@ SLCCRFSTR SLCCRFUG SLCCRFUPC SLCCRFUT +SLCCWALC1 +SLCCWALC2 +SLCCWALC3 +SLCCWALC4 +SLCCWALC5 +SLCCWALC6 +SLCCWSZLC SLCDGTSLC SLCDMOSLC SLCDMOUT @@ -42293,6 +42348,9 @@ SLCMTRU24 SLCMTRU28 SLCMTRU42 SLCMTRU52 +SLCMTRU55 +SLCMTRU69 +SLCMTRU96 SLCMTRVEL SLCNOWSLC SLCNPWSLC @@ -42549,7 +42607,6 @@ STLCEMLSX STLCEMMO STLCEMSGF STLCF6CDJ -STLCF6CGI STLCF6COU STLCF6CPS STLCF6DMO @@ -43681,6 +43738,7 @@ TOPMTR36K TOPMTR3AU TOPMTR3K3 TOPMTR3K8 +TOPMTR5K2 TOPMTR8K2 TOPMTR9K7 TOPMTR9K8 diff --git a/rpms/awips2.edex/Installer.edex/ndm/maritimeStationInfo.txt b/rpms/awips2.edex/Installer.edex/ndm/maritimeStationInfo.txt index de7b40cdd1..c55cd6a1ea 100644 --- a/rpms/awips2.edex/Installer.edex/ndm/maritimeStationInfo.txt +++ b/rpms/awips2.edex/Installer.edex/ndm/maritimeStationInfo.txt @@ -47,12 +47,16 @@ 0000000000|41049| 27.5 | -62.94 | 0|Atlantic (South) |US|BOY 0000000000|41065| 32.802| -79.619| 0|CAP2WAVE, Capers Nearshore Waves |US|BOY 0000000000|41066| 32.528| -79.661| 0|19 NM SE Charleston, SC Harbor CORMP|US|BOY +0000000000|41068| 27.593| -80.189| 0|9 NM NE Ft Pierce Inlet, FL CORMP |US|BOY +0000000000|41069| 29.289| -80.803| 0|14 NM NE Ponce Inlet, FL CORMP |US|BOY +0000000000|41070| 29.289| -80.803| 0|PNCWAVE, CORMP |US|BOY 0000000000|41076| 32.536| -79.659| 0|CHR60WAVE |US|BOY 0000000000|41108| 33.721| -78.015| 0|Wilmington Harbor NC Scripps |US|BOY 0000000000|41110| 34.141| -77.709| -0|Masonboro Inlet, NC CORMP |US|BOY 0000000000|41112| 30.72 | -81.29 | 0|Kings Bay, GA(132) |US|BOY 0000000000|41113| 28.40 | -80.53 | -0|Cape Canav Nrshore, FL Scripps CDIP |US|BOY 0000000000|41114| 27.60 | -80.20 | -0|Fort Pierce, FL (134) Scripps CDIP |US|BOY +0000000000|41117| 30.000| -81.080| -0|St Augustine Nrshore, FL Scripps |US|BOY 0000000000|41140| 17.769| -64.723| -0|Chistiansted, St. Croix, VI SCRIPPS |US|BOY 0000000000|42001| 25.900| -89.667| 0|10D08 /V MID GULF |US|BOY 0000000000|42002| 26.06 | -93.65 | 0|10D10 /V W GULF |US|BOY @@ -230,6 +234,7 @@ 0000000000|45186| 42.368| -87.795| 176|Waukegan, IL, U of IL |US|BOY 0000000000|45187| 42.491| -87.779| 176|Winthrop Harbor, IL, U of IL |US|BOY 0000000000|45198| 41.892| -87.563| 176|Chicago Pier, IL, U of IL |US|BOY +0000000000|45210| 44.055| -87.050| -0|Rawley Point East, WI (269) |US|BOY 0000000000|46001| 56.23 |-147.90 | 0|DN25 /D GULF OF AK |US|BOY 0000000000|46002| 42.527|-130.260| 0|6N04 /D OREGON |US|BOY 0000000000|46004| 50.93 |-136.10 | -0|Middle Nomad |CN|BOY diff --git a/rpms/awips2.edex/Installer.edex/ndm/metarStationInfo.txt b/rpms/awips2.edex/Installer.edex/ndm/metarStationInfo.txt index c7301d1001..1f0433f95b 100644 --- a/rpms/awips2.edex/Installer.edex/ndm/metarStationInfo.txt +++ b/rpms/awips2.edex/Installer.edex/ndm/metarStationInfo.txt @@ -544,7 +544,7 @@ 0000071226|CXHP | 55.40 |-116.483| 602|High Prairie AGDM, ALTA |CN|MTR 0000071344|CXHR | 51.183|-112.5 | 971|Hussar AGDM, AB |CN|MTR 0000071027|CXIB | 46.67 | -60.40 | 8|Ingonish Beach CS, NS |CN|SAO -0000071159|CXJM | 61.35 |-120.78 | 227|Jean Marie, NW |CN|SAO +0000071159|CXJM | 61.35 |-120.78 | 227|Jean Marie, NT |CN|SAO 0000071299|CXKA | 49.60 | -82.65 | 218|Kapuskasing CDA, ON |CN|SAO 0000000000|CXKE | 45.00 | -75.63 | 99|Kemptville, ON |CN|MTR 0000071301|CXKI | 48.15 | -80.0 | 324|Kirkland Lake CS ON |CN|SAO @@ -994,6 +994,7 @@ 0000000000|K1CW | 41.5806 |-103.573| 1370|Gering, NE |US|MTR 0000000000|K1D1 | 45.23053|-96.56596| 340|Milbank Muni Airport, Milbank, SD |US|MTR 0000000000|K1D7 | 45.29258|-97.51379| 565|Webster Muni Airport, Webster, SD |US|MTR +0000000000|K1D8 | 44.85657|-98.53123| 399|Redfield Muni Arpt, Redfield, SD |US|MTR 0000000000|K1DM | 47.37602|-109.814| 1093|Denton, MT |US|MTR 0000000000|K1DN | 47.79468|-101.298| 634|Max, ND |US|MTR 0000000000|K1DW | 41.36167|-103.79408| 1540|11.5m NW Kimball, NE |US|MTR @@ -1049,7 +1050,6 @@ 0000072614|K1V4 | 44.42 | -72.02 | 217|St. Johnsbury, VT |US|MTR 0000000000|K1V6 | 38.4284|-105.106| 1659|Fremont Cnty AP, Canon City, CO |US|MTR 0000074004|K1Y7 | 32.85 |-114.40 | 98|Yuma Proving Ground, AZ |US|MTR -0000000000|K1YT | 46.6667|-120.45| 438|Vagabond Army Airfield, Yakima, WA |US|MTR 0000000000|K2G2 | 40.36061|-80.70169| 365|Jefferson Cnty AP, Steubenville, OH|US|MTR 0000000000|K2G9 | 40.03887|-79.01500| 693|Somerset Cnty AP, Somerset, PA |US|MTR 0000000000|K2J3 | 32.98594|-82.38481| 100|Louisville Muni AP, Louisville, GA|US|MTR @@ -1081,8 +1081,9 @@ 0000000000|K2IS | 26.73517|-81.05106| 6|Clewiston Airglades AP, Clewiston, FL|US|MTR 0000000000|K2J9 | 30.59787| -84.55743| 69|Quincy Muni, Quincy, FL |US|MTR 0000000000|K2M2 | 35.23431|-87.25794| 285|Lawrence Cnty AP, Lawrenceburg,TN |US|MTR +0000000000|K2M8 | 35.27848|-89.93300| 75|Charles W Baker Arpt, Millington, TN|US|MTR 0000000000|K2P2 | 45.38825| -86.92404| 199|Washington Island AP, Washington Island, WI|US|MTR -0000000000|K2R2 | 39.747| -86.475| 273|Hendricks Cnty AP, Indianapolis, IN |US|MTR +0000000000|K2R2 | 39.74678|-86.47517| 274|Hendricks Cnty AP, Indianapolis, IN|US|MTR 0000000000|K2R9 | 28.82499| -97.86557| 88|Kenedy Regional Airport, Kenedy, TX|US|MTR 0000000000|K2V5 | 40.10032|-102.24096| 1118|Wray Muni, Wray, CO |US|MTR 0000000000|K2V6 | 40.10420|-102.71300| 1261|Yuma Minicipal AP, Yuma, CO |US|MTR @@ -1108,7 +1109,6 @@ 0000000000|K3FC | 40.09 | -95.60 | 445|FALLS CITY, NE |US|MTR 0000000000|K3HT | 46.44 |-109.84 | 1268|HARLOWTON, MT |US|MTR 0000000000|K3I2 | 38.915| -82.099| 196|Mason Cnty AP, Pt Pleasant, WV |US|MTR -0000000000|K3J7 | 33.598| -83.139| 206|Greene Cnty Rgnl AP, Greensboro, GA |US|MTR 0000000000|K3K3 | 37.922|-101.746| 1013|Syracuse, KS |US|MTR 0000000000|K3K8 | 37.22333|-99.33167| 636|Coldwater, KS |US|MTR 0000000000|K3KM | 37.75 | -97.20 | 433|WICHITA, KS |US|MTR @@ -1124,7 +1124,6 @@ 0000072650|K3SE | 43.18 | -95.15 | 404|SPENCER, IA |US|MTR 0000000000|K3SZ | 38.93 | -90.43 | 133|St. Charles, MO |US|MTR 0000000000|K3T5 | 29.91 | -96.95 | 99|La Grange/Fayette Regnl, TX |US|MTR -0000000000|K3TH | 47.61 |-115.37 | 725|THOMPSON FALLS, MT |US|MTR 0000000000|K3U3 | 46.15341|-112.86773| 1534|Bowman Field Arpt, Anaconda, MT |US|MTR 0000000000|K3V9 | 39.29 |-106.87 | 2270|ASPEN, CO |US|MTR 0000000000|K40B | 46.62 | -69.52 | 314|CLAYTON LAKE, ME |US|MTR @@ -1139,9 +1138,11 @@ 0000000000|K48A | 32.40066|-83.27841| 115|Cochran AP, Cochran, GA |US|MTR 0000000000|K48I | 38.687| -80.652| 387|Braxton Cnty AP, Sutton, WV |US|MTR 0000000000|K49A | 34.6282| -84.5266| 453|Gilmer Cnty AP, Ellijay, GA |US|MTR +0000000000|K49T | 32.77172|-96.80206| 146|Dallas CBD Heliport, Dallas, TX |US|MTR 0000000000|K49Y | 43.68 | -92.18 | 389|Preston/Fillmore Co, MN |US|MTR 0000000000|K4A6 | 34.6887| -86.0059| 198|Scottsboro Muni, Scottsboro, AL |US|MTR 0000000000|K4A9 | 34.474| -85.721| 267|Isbell Fld AP, Fort Payne, AL |US|MTR +0000000000|K4B8 | 41.68933|-72.86469| 62|Robertson Fld Arpt, Plainville, CT |US|MTR 0000000000|K4BL | 37.62 |-109.47 | 1840|BLANDING, UT |US|MTR 0000000000|K4BM | 39.05024|-105.51436| 3432|Wilkerson Pass, CO |US|MTR 0000000000|K4BQ | 45.44 |-105.40 | 922|BROADUS, MT |US|MTR @@ -1180,10 +1181,12 @@ 0000072516|K5B5 | 42.89 | -73.25 | 252|Bennington/Wm H Morse State, VT |US|MTR 0000000000|K5C1 | 29.724| -98.695| 422|Boerne Stage Field AP, Boerne, TX |US|MTR 0000000000|K5H4 | 47.791| -99.932| 490|Harvey Muni, Harvey, ND |US|MTR +0000000000|K5K2 | 38.45146| -101.75008| 1100|Tribune Muni Arpt, Tribune, KS |US|MTR 0000000000|K5R0 | 28.22 | -93.75 | 26|EAST ADDITION B3, TX |US|MTR 0000000000|K5R8 | 30.4411| -93.4736| 25|De Quincy Industrial Air Park, LA |US|MTR 0000000000|K5SM | 39.426|-107.379| 3232|Sunlight, CO (Pass) |US|MTR 0000000000|K5T9 | 28.8571|-100.5135|270|Maverick Cnty Int AP, Eagle Pass, TX|US|MTR +0000000000|K60R | 30.36714| -96.11294| 70|Navasota Muni Arprt, Navasota, TX |US|MTR 0000000000|K62Y | 47.11 | -91.75 | 328|TWO HARBORS, MN |US|MTR 0000072787|K63S | 48.54539|-117.88079| 574|Colville AP, Colville, WA |US|MTR 0000000000|K65S | 48.726|-116.295| 712|Boundary Cnty AP, Bonners Ferry, ID |US|MTR @@ -1192,6 +1195,7 @@ 0000000000|K6A2 | 33.227| -84.275| 292|Griffin-Spaldg Cnty AP, Griffin, GA |US|MTR 0000000000|K6B0 | 43.9848| -73.0959| 149|Middlebury State AP, Middlebury, VT|US|MTR 0000000000|K6B1 | 43.28 | -70.92 | 104|Rochester, NH |US|MTR +0000000000|K6B4 | 43.01611|-75.16954| 404|Frankfort-Highland Arpt, NY |US|MTR 0000000000|K6B9 | 42.91396| -76.44077| 316|Skaneateles Aero Drome, Skaneateles, NY|US|MTR 0000000000|K6I2 | 37.6335| -85.2418| 266|Lebanon-Springf AP, Springfield, KY|US|MTR 0000000000|K6L4 | 37.8557| -81.9159| 508|Logan Cnty AP, Logan, WV |US|MTR @@ -1200,7 +1204,9 @@ 0000000000|K6R0 | 30.34 | -89.82 | 8|Slidell, LA |US|MTR 0000000000|K6R3 | 30.356| -95.008| 46|Cleveland Muni, Cleveland, TX |US|MTR 0000000000|K6R6 | 30.0465|-102.2132| 708|Dryden/Terrell Co, TX |US|MTR +0000000000|K6S0 | 45.80648|-109.97826| 1370|Howard Field AP, Big Timber, MT |US|MTR 0000000000|K6S2 | 43.9828|-124.1113| 16|Florence Muni, Florence, OR |US|MTR +0000000000|K6S8 | 45.70518|-108.76077| 1080|Laurel Muni Airport, Laurel, MT |US|MTR 0000000000|K6V1 | 40.55 |-101.65 | 1003|IMPERIAL, NE |US|MTR 0000000000|K6V8 | 38.51 |-107.88 | 1752|MONTROSE, CO |US|MTR 0000000000|K7A8 | 35.9454|-81.9962| 837|Avery Cnty AP, Spruce Pine, NC |US|MTR @@ -1210,6 +1216,7 @@ 0000000000|K77M | 42.30 |-113.37 | 1435|MALTA, ID |US|MTR 0000000000|K77S | 43.93075|-123.00667| 165|Hobby Field AP, Creswell, OR |US|MTR 0000000000|K79J | 31.32 | -86.41 | 94|Andalusia/Opp AP, AL |US|MTR +0000000000|K79S | 47.84419|-110.63686| 874|Fort Benton Arpt, Fort Benton, MT|US|MTR 0000000000|K7B5 | 28.09 | -93.21 | 1|WEST CAMERON 587, LA |US|MTR 0000000000|K7BM | 38.799|-106.218| 2995|Cottonwood Pass, CO |US|MTR 0000000000|K7G2 | 41.78 | -80.70 | 282|Ashtabula Co, OH |US|MTR @@ -1220,6 +1227,7 @@ 0000000000|K7R3 | 29.70 | -91.10 | 2|AMELIA/LAKE PALO, LA |US|MTR 0000000000|K7R4 | 29.78 | -92.13 | 5|INTRACOASTAL CIT, LA |US|MTR 0000000000|K7R8 | 28.30 | -91.98 | 1|SOUTH MARSH ISLA, LA |US|MTR +0000000000|K7S0 | 47.56717|-114.10108| 941|Ronan Airport, Ronan, MT |US|MTR 0000000000|K7W4 | 37.9658| -77.7459| 107|Lake Anna AP, Bumpass, VA |US|MTR 0000000000|K7W6 | 35.56204|-75.95566| 2|Hyde County Airport, Engelhard, NC |US|MTR 0000000000|K8A3 | 36.41350|-85.31044| 418|Livingston Muni AP, Livingston, TN|US|MTR @@ -1256,13 +1264,17 @@ 0000000000|K9L0 | 33.46 |-117.69 | 15|DANA POINT, CA |US|MTR 0000000000|K9L2 | 34.97 |-117.87 | 701|N Aux Airfld, Edwards AFB, CA |US|MTR 0000000000|K9MN | 44.02 | -92.48 | 335|St Marys Hosp Helipad, Rochester, MN|US|MTR +0000000000|K9S5 | 45.87811|-111.56944|1246|Three Forks Arpt, Three Forks, MT|US|MTR +0000000000|K9S9 | 45.45414|-119.69028| 498|Lexington Airport, Lexington, OR |US|MTR 0000072653|K9V9 | 43.80 | -99.32 | 530|CHAMBERLAIN, SD |US|MTR +0000000000|K9Y1 | 47.39133|-102.77181| 685|Weydahl Field, Killdeer, ND |US|MTR 0000000000|KA06 | 34.05 |-118.24 | 71|Los Angeles Civic Center, CA |US|MTR 0000000000|KA08 | 32.5105| -87.3848| 67|Vaiden Fld AP, Marion, AL |US|MTR 0000000000|KA39 | 32.99055| -111.91890| 398|Ak-Chin Regional AP, Maricopa, AZ|US|MTR 0000000000|KAAA | 40.15885|-89.33893| 182|Lincoln/Logan Co, IL |US|MTR 0000000000|KAAF | 29.728| -85.027| 6|Apalachicola Muni, FL |US|MTR 0000000000|KAAO | 37.7461|-97.2211| 433|Wichita/Col James Jabara, KS |US|MTR +0000000000|KAAS | 37.35828|-85.30942| 281|Taylor Cnty Arpt, Dallas, TX |US|MTR 0000000000|KAAT | 41.491|-120.564| 1331|Alturas Muni, CA |US|MTR 0000072517|KABE | 40.66 | -75.43 | 114|Allentown-Bethlehem, PA |US|MTR 0000000000|KABH | 38.75777|-104.308296|1840|Bullseye, USAF Acad, Ellicott,CO|US|MTR @@ -1444,6 +1456,7 @@ 0000000000|KBEC | 37.6939|-97.2149| 429|Beech Factory Airport, Wichita, KS |US|MTR 0000074490|KBED | 42.47 | -71.29 | 41|Bedford/Laurence G Hanscom, MA |US|MTR 0000000000|KBEH | 42.14 | -86.44 | 196|BENTON HARBOR/RO, MI |US|MTR +0000000000|KBFA | 45.16584|-84.92411| 219|Boyne Mntn Arpt, Boyne Falls, MI |US|MTR 0000000000|KBFD | 41.80 | -78.64 | 653|BRADFORD REGIONA, PA |US|MTR 0000072566|KBFF | 41.88 |-103.60 | 1206|SCOTTSBLUFF/HEIL, NE |US|MTR 0000000000|KBFI | 47.53 |-122.30 | 5|Seattle/Boeing Fld/King Co Intl, WA |US|MTR @@ -1677,6 +1690,7 @@ 0000000000|KCPF | 37.38736|-83.26161| 383|Wendell H Ford AP, Hazard, KY |US|MTR 0000000000|KCPK | 36.66562|-76.32066| 6|Chesapeake Muni, VA |US|MTR 0000000000|KCPM | 33.88992| -118.24381| 30|Compton/Woodley AP, Compton, CA |US|MTR +0000000000|KCPP | 33.59797|-83.13826|210|Greene Cnty Rgnl AP, Greensboro, GA|US|MTR 0000072569|KCPR | 42.93 |-106.47 | 1622|CASPER/NATRONA I, WY |US|MTR 0000000000|KCPS | 38.571| -90.156| 126|St Louis DT AP, Cahokia/St Louis, IL|US|MTR 0000000000|KCPT | 32.354| -97.434| 260|Cleburne Muni, Cleburne, TX |US|MTR @@ -1738,6 +1752,7 @@ 0000000000|KCZT | 28.52225| -99.8236|182|Dimmit Cnty AP, Carrizo Sprgs, TX |US|MTR 0000000000|KCZZ | 32.62 |-116.47 | 802|CAMPO, CA |US|MTR 0000000000|KD07 | 45.032565|-102.020024| 787|Faith Muni, SD |US|MTR +0000000000|KD09 | 48.83047|-100.41731| 512|Bottineau Cnty Arpt, Bottineau, ND|US|MTR 0000000000|KD25 | 46.1202| -89.8822| 491|Manitowish Waters AP, WI |US|MTR 0000000000|KD36 | 46.72 | -92.04 | 186|Duluth/Sky Harbor, MN |US|MTR 0000000000|KD39 | 45.707| -94.933| 379|Sauk Centre Muni, MN |US|MTR @@ -1861,6 +1876,7 @@ 0000000000|KE41 | 31.19775|-101.47540| 825|Reagan Cnty AP, Big Lake, TX |US|MTR 0000000000|KE42 | 36.22100|-101.19450| 942|Samuel B Cornelius, Spearman, TX |US|MTR 0000000000|KE74 | 32.83 |-109.68 | 900|SAFFORD, AZ |US|MTR +0000000000|KE77 | 32.6364|-110.6472| 997|San Manuel Arpt, San Manuel, AZ |US|MTR 0000000000|KEAN | 42.05553| -104.92861| 1456|Phifer Airfield, Wheatland, WY |US|MTR 0000000000|KEAR | 40.73 | -99.00 | 649|KEARNEY, NE |US|MTR 0000000000|KEAT | 47.41 |-120.20 | 379|WENATCHEE/PNGBRN, WA |US|MTR @@ -1950,6 +1966,7 @@ 0000000000|KEVU | 40.353| -94.915| 351|Missouri Rgnl AP, Maryville, MO |US|MTR 0000072432|KEVV | 38.05 | -87.53 | 118|EVANSVILLE/DRESS, IN |US|MTR 0000000000|KEVW | 41.27 |-111.03 | 2183|Evanston-Uninta Co Burns Fld, WY |US|MTR +0000000000|KEVY | 39.52103|-75.72367| 21|Summit Airport, Middletown, DE |US|MTR 0000000000|KEWB | 41.69 | -70.97 | 23|NEW BEDFORD, MA |US|MTR 0000000000|KEWK | 38.05708|-97.27523| 467|NEWTON (AWOS), KS |US|MTR 0000000000|KEWN | 35.072853|-77.043020| 6|NEW BERN, NC |US|MTR @@ -1981,6 +1998,7 @@ 0000000000|KFCI | 37.40644| -77.52483| 72|Chesterfield Cnty AP, Richmond, VA|US|MTR 0000000000|KFCM | 44.84 | -93.47 | 276|Minneapolis/Flying Cloud, MN |US|MTR 0000072468|KFCS | 38.69 |-104.77 | 1789|FORT CARSON/BUTT, CO |US|MTR +0000000000|KFCT | 46.66942| -120.45597|420|Vagabond Army Heliport, Yakima, WA|US|MTR 0000000000|KFDK | 39.418| -77.374| 92|Frederick Muni Apt, MD |US|MTR 0000000000|KFDR | 34.35 | -98.98 | 383|Frederick Muni, OK |US|MTR 0000000000|KFDW | 34.315| -81.109| 176|Winnsboro, SC |US|MTR @@ -2318,6 +2336,7 @@ 0000000000|KHZX | 46.619| -93.310| 374|Isedor Iverson AP, McGregor, MN |US|MTR 0000000000|KHZY | 41.779| -80.697| 277|Ashtabula Co, OH |US|MTR 0000000000|KI16 | 37.600| -81.559| 544|Kee Fld AP, Pineville, WV |US|MTR +0000000000|KI18 | 38.92978| -81.81947| 231|Jackson Cnty Arpt, Ravenswood, WV|US|MTR 0000000000|KI19 | 39.69103| -83.99199| 289|Greene Co-Lewis Jackson AP, Dayton, OH|US|MTR 0000000000|KI23 |39.57040|-83.42052| 299|Fayette County Airport, OH |US|MTR 0000000000|KI26 | 37.82 | -87.69 | 117|HENDERSON CITY, KY |US|MTR @@ -2796,6 +2815,7 @@ 0000000000|KMYZ | 39.8564| -96.6307| 391|Marysville Muni, Marysville, KS |US|MTR 0000000000|KMZG | 27.7269| -96.191| -0|Mustang Island A85A, TX |US|MTR 0000000000|KMZH | 46.42 | -92.80 | 328|Moose Lake/Carlton Co, MN |US|MTR +0000000000|KMZJ | 32.5098| -111.3253| 577|Pinal Airpark, Marana, AZ |US|MTR 0000000000|KMZZ | 40.490| -85.680| 262|Marion Muni, Marion, IN |US|MTR 0000000000|KN00 | 43.36 | -76.39 | 145|Fulton, NY |US|MTR 0000000000|KN03 | 42.5926| -76.2149| 365|Chase Fld, Cortland, NY |US|MTR @@ -3118,7 +3138,7 @@ 0000000000|KPVF | 38.724|-120.753| 788|Placerville, CA |US|MTR 0000000000|KPVG | 36.780| -76.4488| 7|Hampton Rds Exec AP, Norfolk, VA |US|MTR 0000000000|KPVJ | 34.711| -97.223| 295|Pauls Valley Muni, OK |US|MTR -0000000000|KPVU | 40.23 |-111.72 | 1369|PROVO, UT |US|MTR +0000000000|KPVU | 40.2239|-111.7253| 1369|PROVO, UT |US|MTR 0000000000|KPVW | 34.163|-101.722| 1028|Hale Cnty AP, Plainview, TX |US|MTR 0000000000|KPWA | 35.54 | -97.65 | 396|WILEY POST FIELD, OK |US|MTR 0000000000|KPWC | 46.72 | -94.38 | 395|Pine River Regional, MN |US|MTR @@ -3225,6 +3245,7 @@ 0000072618|KRUM | 44.54 | -70.53 | 205|RUMFORD, ME |US|MTR 0000000000|KRUQ | 35.646| -80.520| 236|Salisbury/Rowan Co, NC |US|MTR 0000000000|KRUT | 43.54 | -72.95 | 240|Rutland-Southern Vermont Rgnl, VT |US|MTR +0000000000|KRVF | 45.53542|-112.30228|1460|Ruby Valley Fld AP, Twin Bridges, MT|US|MTR 0000000000|KRVJ | 32.05949| -82.15357| 60|Swinton Smith Field, Reidsville, GA|US|MTR 0000000000|KRVS | 36.04 | -95.98 | 191|TULSA RIVERSIDE ARPT, OK |US|MTR 0000000000|KRVL | 40.67739|-77.62683| 250|Reedsville, PA |US|MTR @@ -3256,11 +3277,14 @@ 0000000000|KS29 | 38.54 |-106.05 | 2282|SALIDA/ALEXANDER, CO |US|MTR 0000000000|KS32 | 47.4228| -98.1059| 434|Cooperstown Muni, Cooperstown, ND |US|MTR 0000000000|KS33 | 44.6702|-121.1551| 743|Madras, OR |US|MTR +0000000000|KS34 | 47.47356|-114.90708| 752|Plains Airport, Plains, MT |US|MTR 0000000000|KS39 | 44.2878|-120.9052|991|Prineville AP, Prineville, OR |US|MTR +0000000000|KS40 | 46.21336|-119.79556|215|Prosser Airport, Prosser, WA |US|MTR 0000000000|KS52 | 48.42495|-120.14589| 520|Methow Valley AP, Winthrop, WA |US|MTR 0000000000|KS58 | 28.53 | -90.58 | 1|SOUTH TIMBALIER, LA |US|MTR 0000000000|KS59 | 48.28333| -115.490| 794|Libby Airport, Libby, MT |US|MTR 0000000000|KS65 | 28.50 | -91.20 | 2|SHIP SHOAL 198G, LA |US|MTR +0000000000|KS71 | 48.59211| -109.25061| 734|Edgar G Obie Arpt, Chinook, MT |US|MTR 0000000000|KS85 | 48.15356|-104.50406| 595|Big Sky Field AP, Culbertson, MT |US|MTR 0000000000|KS88 | 48.16 |-122.15 | 42|ARLINGTON, WA |US|MTR 0000000000|KSAA | 41.4435|-106.8275|2138|Shively Fld AP, Saratoga, WY |US|MTR @@ -3466,6 +3490,7 @@ 0000000000|KTFP | 27.913| -97.212| 5|T P McCampbell AP, Ingleside, TX |US|MTR 0000000000|KTGI | 37.82587| -75.99766| 2|Tangier Island AP, Tangier, VA |US|MTR 0000000000|KTHA | 35.380| -86.2467| 330|Tullahoma Rgnl, Tullahoma, TN |US|MTR +0000000000|KTHM | 47.57350|-115.28066| 752|Thompson Falls Airport, MT |US|MTR 0000000000|KTHV | 39.92 | -76.87 | 148|York, PA |US|MTR 0000000000|KTIF | 41.962|-100.569| 892|Thomas Cnty AP, Thedford, NE |US|MTR 0000072354|KTIK | 35.43 | -97.38 | 394|TINKER AFB, OK |US|MTR @@ -3539,11 +3564,14 @@ 0000000000|KU31 | 39.51 |-117.09 | 2014|AUSTIN, NV |US|MTR 0000000000|KU42 | 40.62 |-111.9929| 1404|S Valley Rgnl AP, Salt Lake Cty, UT|US|MTR 0000000000|KU52 | 38.23058|-112.67542| 1787|Beaver Muni Airport, Beaver, UT |US|MTR +0000000000|KU55 | 37.84522|-112.39194| 2061|Panguitch Muni AP, Panguitch, UT|US|MTR 0000074420|KU67 | 40.30 |-110.05 | 1556|ROOSEVELT, UT |US|MTR 0000000000|KU68 | 44.9117|-108.4455|1248|N Big Horn AP, Cowley/Lov/Byr, WY |US|MTR +0000000000|KU69 | 40.19375|-110.38298|1777|Duchesne Muni AP, Duchesne, UT |US|MTR 0000000000|KU71 | 40.48 |-109.53 | 1612|VERNAL, UT |US|MTR 0000000000|KU73 | 42.73 |-114.46 | 1234|Jerome, ID |US|MTR 0000000000|KU78 | 42.66 |-111.58 | 1781|SODA SPRINGS, ID |US|MTR +0000000000|KU96 | 37.43531|-110.56428| 1340|Cal Black Arpt, Halls Crossing, UT|US|MTR 0000000000|KUAO | 45.2490|-122.7660| 60|Aurora, OR |US|MTR 0000000000|KUBE | 45.50597| -91.98109| 378|Cumberland Muni, Cumberland, WI |US|MTR 0000072385|KUCC | 36.96 |-116.05 | 1195|YUCCA FLAT, NV |US|MTR @@ -3698,6 +3726,7 @@ 0000000000|KYKN | 42.92 | -97.38 | 398|Yankton, SD |US|MTR 0000072525|KYNG | 41.27 | -80.67 | 361|YOUNGSTOWN MUNI, OH |US|MTR 0000072280|KYUM | 32.66 |-114.60 | 63|YUMA INTL AIRPORT, AZ |US|MTR +0000000000|KZER | 40.70675| -76.37375| 527|Schuylkill Arpt, Pottsville, PA |US|MTR 0000000000|KZPH | 28.228| -82.1559| 27|Zephyrhills Muni, Zephyrhills, FL |US|MTR 0000000000|KZSE | 47.28 |-122.18 | 99|Auburn, WA |US|MTR 0000000000|KZZV | 39.94609|-81.89315| 274|Zanesville, OH |US|MTR @@ -4019,7 +4048,7 @@ 0000000000|PHHN | 20.784|-156.144| 23|Hana, HI |US|MTR 0000000000|PHJH | 21.02 |-156.63 | 40|Lahaina/West Maui, HI |US|MTR 0000091178|PHJR | 21.32 |-158.07 | 15|Kalaeloa, HI |US|MTR -0000091281|PHKO | 19.65 |-156.00 | 9|Kailua Kona, HI |US|MTR +0000091281|PHKO | 19.73877|-156.04563| 15|Kailua Kona, HI |US|MTR 0000091165|PHLI | 21.98 |-159.35 | 45|Lihue, HI |US|MTR 0000000000|PHLU | 21.22 |-156.97 | 8|Kalaupapa, HI |US|MTR 0000091186|PHMK | 21.15 |-157.10 | 137|Kaunakakai Molokai, HI |US|MTR diff --git a/rpms/awips2.edex/Installer.edex/ndm/modelBufrStationInfo.txt b/rpms/awips2.edex/Installer.edex/ndm/modelBufrStationInfo.txt index cd28c8d1b0..97ba6f0442 100644 --- a/rpms/awips2.edex/Installer.edex/ndm/modelBufrStationInfo.txt +++ b/rpms/awips2.edex/Installer.edex/ndm/modelBufrStationInfo.txt @@ -1219,7 +1219,7 @@ 0000725715 |KHDN | 40.480 |-107.220 |2012 | HAYDEN/YAMPA_(AWOS) CO |US|10 0000725717 |KRIL | 39.530 |-107.730 |1678 | RIFLE CO |US|10 0000725720 |KSLC | 40.780 |-111.970 |1288 | SALT_LAKE_CITY_INTL UT |US|12 -0000725724 |KPVU | 40.220 |-111.720 |1369 | PROVO_MUNI_(AWOS) UT |US|10 +0000725724 |KPVU | 40.224 |-111.725 |1369 | PROVO_MUNI_(AWOS) UT |US|10 0000725744 |KRKS | 41.600 |-109.070 |2060 | ROCK_SPRINGS______& WY |US|10 0000725745 |KRWL | 41.800 |-107.200 |2077 | RAWLINS_MUNICIPAL WY |US|10 0000725750 |KOGD | 41.200 |-112.020 |1362 | OGDEN-HINCKLEY_MUNI UT |US|10 diff --git a/rpms/awips2.edex/Installer.edex/ndm/national_category_table.template b/rpms/awips2.edex/Installer.edex/ndm/national_category_table.template index 9b3ca7bb28..8a4db4141c 100644 --- a/rpms/awips2.edex/Installer.edex/ndm/national_category_table.template +++ b/rpms/awips2.edex/Installer.edex/ndm/national_category_table.template @@ -902,6 +902,7 @@ K1CN BIS K1CW OMA K1D1 FSD K1D7 FSD +K1D8 FSD K1DM GTF K1DN BIS K1DW OMA @@ -990,6 +991,7 @@ K2I8 CLE K2IS MIA K2J9 BHM K2M2 MEM +K2M8 MEM K2P2 MKE K2PJ CAE K2R2 IND @@ -1020,7 +1022,6 @@ K3HA CHI K3HE ARB K3HT GTF K3I2 CRW -K3J7 ATL K3K3 TOP K3K8 TOP K3KM TOP @@ -1035,7 +1036,6 @@ K3S8 PDX K3SE DSM K3SZ STL K3T5 SAT -K3TH GTF K3U3 GTF K3V9 DEN K3WO MKE @@ -1052,9 +1052,11 @@ K46U CYS K48A ATL K48I CRW K49A ATL +K49T FTW K49Y MSP K4A6 HUN K4A9 HUN +K4B8 BOS K4BK PDX K4BL SLC K4BM DEN @@ -1092,9 +1094,11 @@ K5B5 ALB K5C1 SAT K5H4 BIS K5J0 PDX +K5K2 TOP K5R8 NEW K5SM DEN K5T9 SAT +K60R SAT K60S SEA K63S SEA K65S BOI @@ -1103,6 +1107,7 @@ K6A1 ATL K6A2 ATL K6A3 RDU K6B0 ALB +K6B4 ALB K6B9 ALB K6I2 SDF K6L4 CRW @@ -1110,7 +1115,9 @@ K6P9 FTW K6R0 NEW K6R3 SAT K6R6 LBB +K6S0 GTF K6S2 PDX +K6S8 GTF K6V3 WBC K6V8 DEN K74V SLC @@ -1120,6 +1127,7 @@ K76S SEA K77M BOI K77S PDX K79J BHM +K79S GTF K7A8 CAE K7B5 NEW K7BM DEN @@ -1132,6 +1140,7 @@ K7R1 NEW K7R3 NEW K7R4 NEW K7R8 NEW +K7S0 GTF K7W4 WBC K7W6 RDU K8A3 MEM @@ -1162,12 +1171,16 @@ K9K7 TOP K9K8 TOP K9L2 LAX K9MN MSP +K9S5 GTF +K9S9 PDX K9V9 FSD +K9Y1 BIS KA08 BHM KA39 PHX KAAA CHI KAAF BHM KAAO TOP +KAAS SDF KAAT SFO KABE PHL KABH DEN @@ -1360,6 +1373,7 @@ KBEA SAT KBEC TOP KBED BOS KBEH ARB +KBFA ARB KBFD PHL KBFF OMA KBFI SEA @@ -1602,6 +1616,7 @@ KCPC RDU KCPF SDF KCPK WBC KCPM LAX +KCPP ATL KCPR CYS KCPS CHI KCPT FTW @@ -1664,6 +1679,7 @@ KCZL ATL KCZT SAT KCZZ LAX KD07 FSD +KD09 BIS KD25 MKE KD36 MSP KD39 MSP @@ -1791,6 +1807,7 @@ KE38 LBB KE41 LBB KE42 LBB KE74 PHX +KE77 PHX KEAN CYS KEAR OMA KEAT SEA @@ -1885,6 +1902,7 @@ KEVM MSP KEVU STL KEVV IND KEVW CYS +KEVY PHL KEWB BOS KEWK TOP KEWN RDU @@ -1920,6 +1938,7 @@ KFCH SFO KFCI WBC KFCM MSP KFCS DEN +KFCT PDX KFCX WBC KFDK WBC KFDR OKC @@ -2265,6 +2284,7 @@ KHZR NEW KHZX MSP KHZY CLE KI16 CRW +KI18 CRW KI19 CLE KI23 CLE KI26 SDF @@ -2767,6 +2787,7 @@ KMYV SFO KMYZ TOP KMZG NEW KMZH MSP +KMZJ PHX KMZZ IND KN00 BUF KN03 ALB @@ -3208,6 +3229,7 @@ KRUE LIT KRUG BIS KRUQ CAE KRUT ALB +KRVF GTF KRVJ ATL KRVL PHL KRVS OKC @@ -3236,11 +3258,14 @@ KS25 BIS KS29 DEN KS32 BIS KS33 PDX +KS34 GTF KS39 PDX +KS40 PDX KS47 PDX KS52 SEA KS58 NEW KS59 GTF +KS71 GTF KS85 GTF KSAA CYS KSAC SFO @@ -3453,6 +3478,7 @@ KTFP SAT KTFX GTF KTGI WBC KTHA MEM +KTHM GTF KTHV PHL KTIF OMA KTIK OKC @@ -3530,11 +3556,14 @@ KU28 SLC KU31 RNO KU42 SLC KU52 SLC +KU55 SLC KU67 SLC KU68 CYS +KU69 SLC KU71 SLC KU73 BOI KU78 BOI +KU96 SLC KUAO PDX KUBE MKE KUCC RNO @@ -3704,6 +3733,7 @@ KZAU CHI KZBW BOS KZDC WBC KZDV DEN +KZER PHL KZFW FTW KZHN HFO KZHU SAT diff --git a/rpms/awips2.edex/Installer.edex/ndm/prodList.txt b/rpms/awips2.edex/Installer.edex/ndm/prodList.txt index 9564d3597b..8e750b73ba 100644 --- a/rpms/awips2.edex/Installer.edex/ndm/prodList.txt +++ b/rpms/awips2.edex/Installer.edex/ndm/prodList.txt @@ -1,7 +1,10 @@ # Updates: -# 10/25/2021 Implement RC 17698 -# 04/21/2021 stop collecting products 34, 136, 171, +# 10/25/2021 scn21-96 Implement RC 17698 +# 04/21/2021 scn21-36 stop collecting products 34, 136, 171, # 19, 20, and 27 +# 08/14/2023 scn23-09 Stop collecting products 78, 80, 81, 82 +# 138, 174, and 175 +# 10/16/2023 reverted removal of product 81 # # productId elevAngle prodCategory Partial WMO Id 2 0 GSM NXUS6 @@ -27,12 +30,8 @@ 66 0 NML SDUS6 67 0 NLA SDUS6 75 0 FTM NOUS6 - 78 0 N1P SDUS3 - 80 0 NTP SDUS5 81 0 DPA SDUS5 - 82 0 SPD SDUS6 90 0 NHL SDUS6 - 138 0 DSP SDUS5 141 0 NMD SDUS3 152 0 RSL SDUS6 94 -2 NXQ SDUS6 @@ -184,7 +183,5 @@ 169 0 OHA SDUS8 170 0 DAA SDUS8 172 0 DTA SDUS8 - 174 0 DOD SDUS6 - 175 0 DSD SDUS6 176 0 DPR SDUS8 177 0 HHC SDUS8 diff --git a/rpms/awips2.edex/Installer.edex/ndm/textCCChelp.txt b/rpms/awips2.edex/Installer.edex/ndm/textCCChelp.txt index 153f60ee85..70e6ba9777 100644 --- a/rpms/awips2.edex/Installer.edex/ndm/textCCChelp.txt +++ b/rpms/awips2.edex/Installer.edex/ndm/textCCChelp.txt @@ -304,6 +304,7 @@ 1CW Gering, NE 1D1 Milbank Muni Airport, Milbank, SD 1D7 Webster Muni Airport, Webster, SD +1D8 Redfield Muni Airport, Redfield, SD 1DM Denton, MT 1DN Max, ND 1DW 11.5m NW Kimball, NE @@ -413,6 +414,7 @@ 2J5 Millen Airport, Millen, GA 2J9 Quincy Muni, Quincy, FL 2M2 Lawrence County Airport, Lawrenceburg, TN +2M8 Charles W Baker Airport, Millington, TN 2P2 Washington Island AP, Washington Island, WI 2P3 Paynesville Muni, MN 2R2 Hendricks Cnty AP, Indianapolis, IN @@ -459,7 +461,6 @@ 3HA Chicago, IL 3HT Harlowton, MT 3I2 Mason Cnty AP, Pt Pleasant, WV -3J7 Greene Cnty Rgnl AP, Greensboro, GA 3K3 Syracuse, KS 3K8 Coldwater, KS 3KK Kankakee, IL @@ -477,7 +478,6 @@ 3SE Spencer, IA 3SZ St. Charles, MO 3T5 La Grange/Fayette Regnl, TX -3TH Thompson Falls, MT 3U3 Bowman Field Airport, Anaconda, MT 3V6 Crested Butte, CO 3V9 Aspen, CO @@ -509,10 +509,12 @@ 49A Gilmer Cnty AP, Ellijay, GA 49D Cloquet, MN 49J Hilton Head Island, SC +49T Dallas CBD Heliport, Dallas, TX 49Y Preston/Fillmore Co, MN 4A6 Scottsboro Muni, Scottsboro, AL 4A9 Isbell Fld AP, Fort Payne, AL 4B4 Meriden, CT +4B8 Robertson Field Airport, Plainville, CT 4BK Brookings, OR 4BL Blanding, UT 4BM Wilkerson Pass, CO @@ -570,6 +572,7 @@ 5HN Cape Hinchinbrook, AK 5HR Hayes River, AK 5J0 Grant Cnty Rgnl, John Day, OR +5K2 Tribune Municipal Airport, Tribune, KS 5MK Mount McKinley National Park, AK 5NV Nunivak Island, AK 5PX Paxson, AK @@ -590,6 +593,7 @@ 603 Bulletin No. 603 604 Bulletin No. 604 60M OBS ERL WND 14K FT +60R Navasota Muni Airport, Navasota, TX 60Y Slayton Muni, Slayton, MN 62M 12 HR RGL WND 12K FT 62Y Two Harbors, MN @@ -599,6 +603,7 @@ 6A1 Butler Muni, Butler, GA 6A2 Griffin, GA 6B0 Middlebury State AP, Middlebury, VT +6B4 Frankfort-Highland Airport, NY 6B9 Skaneateles Aero Drome, Skaneateles, NY 6I2 Lebanon-Springfield AP, Springfield, KY 6L4 Logan Cnty AP, Logan, WV @@ -606,7 +611,9 @@ 6P9 Cook Canyon Ranch AP, Ranger, TX 6R3 Cleveland Muni, Cleveland, TX 6R6 Dryden/Terrell Co, TX +6S0 Howard Field Airport, Big Timber, MT 6S2 Florence Muni, Florence, OR +6S8 Laurel Muni Airport, Laurel, MT 6V1 Imperial, NE 6V3 Richlands/Tazewell Co, VA 6V8 Montrose, CO @@ -619,6 +626,7 @@ 77M Malta, ID 77S Hobby Field Airport, Creswell, OR 79J Andalusia/Opp, AL +79S Fort Benton Airport, Fort Benton, MT 7A8 Avery Cnty AP, Spruce Pine, NC 7B5 West Cameron 587, LA 7BM Cottonwood Pass, CO @@ -631,6 +639,7 @@ 7R3 Amelia/Lake Palourd, LA 7R4 Intracoastal City, LA 7R8 Offshr S.Marsh Is Block 23, LA +7S0 Ronan Airport, Ronan, MT 7W4 Lake Anna AP, Bumpass, VA 7W6 Hyde County Airport, Engelhard, NC 80A 00H ERL 850 mb Plot File @@ -670,7 +679,10 @@ 9L2 North Aux Airfld, Edwards AFB, CA 9MN St Marys Hosp Helipad, Rochester, MN 9R9 Block 245 SAWRS, Offshr Vermilion Area +9S5 Three Forks Airport, Three Forks, MT +9S9 Lexington Airport, Lexington, OR 9V9 Chamberlain, SD +9Y1 Weydahl Field, Killdeer, ND A08 Vaiden Fld AP, Marion, AL A39 Ak-Chin Regional AP, Maricopa, AZ AAA K-Lincoln/Logan Co, IL; U-Almaty, RA @@ -679,6 +691,7 @@ AAF Apalachicola Muni, FL AAO Wichita/Col James Jabara, KS AAP Port Alexander, AK AAQ P-Palmer Muni, AK; NTWC-National Tsunami Warning Ctr, AK +AAS Taylor County Airport, Dallas, TX AAT Alturas Muni, CA AB1 Southern Alberta AB2 Central and Northern Alberta @@ -1044,6 +1057,7 @@ BEC Beech Factory Airport, Wichita, KS BED Bedford, MA BEH Benton Harbor, MI BET Bethel, AK +BFA Boyne Mountain Airport, Boyne Falls, MI BFD Bradford, PA BFF Scottsbluff, NE BFI Seattle/Boeing Fld/King Co Intl, WA @@ -1338,6 +1352,7 @@ CPC Whiteville/Columbus Co Muni, NC CPF Wendell H Ford AP, Hazard, KY CPK Chesapeake Muni, VA CPM Compton/Woodley AP, Compton, CA +CPP Greene County Regional Airport, Greensboro, GA CPP F-Pointe-Noire, CG, W Africa CPR Casper, WY CPS St Louis DT AP, Cahokia/East Saint Louis, IL @@ -1413,6 +1428,7 @@ CZL TB David Fld AP, Calhoun, GA CZT Dimmit Cnty AP, Carrizo Springs, TX CZZ Campo, CA D07 Faith Muni, SD +D09 Bottineau Municipal Airport, Bottineau, ND D25 Manitowish Waters AP, Manitowish Waters, WI D39 Sauk Centre Muni, MN D45 Warroad, MN @@ -1558,6 +1574,7 @@ E38 Casparis Muni, Alpine, TX E41 Reagan County Airport, Big Lake, TX E42 Samuel B Cornelius Airport, Spearman, TX E74 Safford, AZ +E77 San Manuel Airport, San Manuel, AZ EAN Phifer Airfield, Wheatland, WY EAR Kearney, NE EAT Wenatchee, WA @@ -1683,6 +1700,7 @@ EVT Space Weather Event Reports EVU NW Missouri Rgnl AP, Maryville, MO EVV Evansville, IN EVW Evanston, WY +EVY Summit Airport, Middletown, DE EWB New Bedford, MA EWK Newton, KS EWN New Bern, NC @@ -1727,6 +1745,7 @@ FCL Clarks Point AP, Clarks Point, AK FCM Flying Cloud Airport, MN FCS Fort Carson, Colorado Springs, CO FCX Roanoke/Blacksburg, VA WSR-88D +FCT Vagabond Army Heliport, Yakima, WA FDK Frederick Muni Apt, MD FDR Frederick, OK FDW Winnsboro, SC @@ -2163,8 +2182,9 @@ HZX Isedor Iverson AP, McGregor, MN HZY Ashtabula Co, OH I14 Indianapolis, IN I16 Kee Fld AP, Pineville, WV -I19 Greene Co-Lewis Jackson AP, Dayton, OH +I18 Jackson Cnty Airport, Ravenswood, WV I18 New Castle, IN +I19 Greene Co-Lewis Jackson AP, Dayton, OH I23 Fayette County Airport, OH I35 Tucker-Guthrie Mem AP, Harlan, KY I63 Mt. Sterling Muni, IL @@ -3077,6 +3097,7 @@ MYZ Marysville Muni, Marysville, KS MZC Zacatecas Arpt, MX MZG Mustang Island A85A, TX MZH K-Moose Lake/Carlton Co, MN; M-Ixtapa-Zihuatanejo, MX +MZJ Pinal Airpark, Marana, AZ MZO Manzanillo Intl, MX MZP Zapopan, MX MZZ Marion, IN @@ -3677,6 +3698,7 @@ RUI Ruidoso, NM RUM Rumford, ME RUQ Salisbury/Rowan Co, NC RUT Rutland-Southern Vermont Rgnl, VT +RVF Ruby Valley Field Airport, Twin Bridges, MT RVJ Swinton Smith Field, Reidsville, GA RVL Reedsville, PA RVS Tulsa Riverside Arpt, OK @@ -3708,12 +3730,15 @@ S25 Watford City Muni, ND S29 Salida, CO S32 Cooperstown Muni, Cooperstown, ND S33 Madras Muni, Madras, OR +S34 Plains Airport, Plains, MT S39 Prineville AP, Prineville, OR +S40 Prosser Airport, Prosser, WA S47 Tillamook, OR S52 Methow Valley AP, Winthrop, WA S58 South Timbalier, LA S59 Libby Airport, Libby, MT S65 Ship Shoal 198G, LA +S71 Edgar G Obie Airport, Chinook, MT S86 Sandpoint, ID S85 Big Sky Field Airport, Culbertson, MT S88 Arlington, WA @@ -3996,6 +4021,7 @@ TFP T P McCampbell AP, Ingleside, TX TFX WFO Great Falls, MT TGI Tangier Island AP, Tangier, VA THA Tullahoma Rgnl, Tullahoma, TN +THM Thompson Falls Airport, MT THR Threats Assessment THV York, PA TIF Thomas Cnty AP, Thedford, NE @@ -4102,10 +4128,13 @@ U28 Green River, UT U31 Austin, NV U42 S Valley Rgnl AP, Salt Lake City, UT U52 Beaver Municipal Airport, Beaver, UT +U55 Panguitch Municipal Airport, Panguitch, UT U67 Roosevelt, UT U68 North Big Horn Cnty AP, Cowley/Lovell/Byron, WY +U69 Duchesne Municipal Airport, Duchesne, UT U71 Vernal, UT U78 Soda Springs, ID +U96 Cal Black Memorial Airport, Halls Crossing, UT UAO Aurora, OR UBE Cumberland Muni, Cumberland, WI UCC Yucca Flat, NV @@ -5047,6 +5076,7 @@ ZCR C-Charlo Auto, NB ZDC Washington, DC CWSU ZDV Denver, CO CWSU ZEM Eastmain River Arpt, QC +ZER Schuylkill Airport, Pottsville, PA ZFA Faro Arpt, YK ZFM Ft McPherson Arpt, NT ZFN Ft Norman Arpt, NT diff --git a/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.conf b/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.conf index 5bf94f8e55..e68c62cecb 100644 --- a/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.conf +++ b/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.conf @@ -115,6 +115,7 @@ REQUEST EXP "WwWind" idd.unidata.ucar.edu # ESPL/PSD Profilers #REQUEST NGRID "^YAU[CDLMPQS]" idd.unidata.ucar.edu # MRMS-NOAAPort REQUEST FSL2 "HRRR\.Smoke" idd.unidata.ucar.edu # HRRR Smoke REQUEST SPARE|NIMAGE|EXP "GLMF" idd.unidata.ucar.edu # GLM via NWS/ISatSS +REQUEST EXP "RAWS.*" 10.0.0.233 #RAWS mesonet data # #REQUEST WMO ".*" initial-secondary-host.another.domain diff --git a/rpms/awips2.upc/Installer.ldm/patch/etc/pqact.conf.priority b/rpms/awips2.upc/Installer.ldm/patch/etc/pqact.conf.priority index 49852626a3..6395b63724 100644 --- a/rpms/awips2.upc/Installer.ldm/patch/etc/pqact.conf.priority +++ b/rpms/awips2.upc/Installer.ldm/patch/etc/pqact.conf.priority @@ -16,7 +16,8 @@ # GOES16 GLM data coming from Unidata's IDD via Texas Tech # CIRA RGB GOES Satellite products added # 20230321 20.3.2 Update WW3 regex lines so we get the data - +# 20231004 20.3.2 Add RAWS data +# Add additioanl NBM data # USPLN LIGHTNING USPLN1EX FILE -close -edex /awips2/data_store/lightning/%Y%m%d%H%M.uspln @@ -94,6 +95,11 @@ IDS|DDPLUS ^(UA(US|PA|NT)..) (.{4}) (..)(..)(..) IDS|DDPLUS ^(UB.{4}) (.{4}) (..)(..)(..) FILE -overwrite -close -edex /awips2/data_store/pirep/\1_\2_\3\4\5_(seq) # +# RAWS +# +EXP ^RAWS ...... (raws_ldad_)(........)(..)(..)(.xml) + FILE -overwrite -close -edex /awips2/data_store/ldadmesonet/\2/\3/\1\2\3\4\5 +# # ACARS # #ANY ^(IUAX0[12]) (....) (..)(..)(..) @@ -1075,5 +1081,5 @@ NGRID ^OUTA98 KWNB (......)[^!]*!grib2 # # National Blend of Models # -NGRID|HDS ^(Y.A...) (KWE[AB]) (..)(..)(..) +NGRID|HDS ^(Y.A...) (KWE[ABGIHLO]) (..)(..)(..) FILE -close /awips2/data_store/grid/(\3:yyyy)(\3:mm)\3/\4/NationalBlend/staging/NationalBlend_\3\4\5-concat-%Y%m%d_%H%M.grib2 diff --git a/rpms/awips2.upc/Installer.ldm/patch/etc/pqact.grids b/rpms/awips2.upc/Installer.ldm/patch/etc/pqact.grids index 077d0e4c75..39dc5008bb 100644 --- a/rpms/awips2.upc/Installer.ldm/patch/etc/pqact.grids +++ b/rpms/awips2.upc/Installer.ldm/patch/etc/pqact.grids @@ -16,6 +16,7 @@ # GOES16 GLM data coming from Unidata's IDD via Texas Tech # CIRA RGB GOES Satellite products added # 20230321 20.3.2 Update WW3 regex lines so we get the data +# 20231004 20.3.2 Add additioanl NBM data # # ------------------------------------------ # - Global Ensemble Forecast System (GEFS) - @@ -750,5 +751,5 @@ NGRID ^OUTA98 KWNB (......)[^!]*!grib2 # # National Blend of Models # -NGRID|HDS ^(Y.A...) (KWE[AB]) (..)(..)(..) +NGRID|HDS ^(Y.A...) (KWE[ABGIHLO]) (..)(..)(..) FILE -close /awips2/data_store/grid/(\3:yyyy)(\3:mm)\3/\4/NationalBlend/staging/NationalBlend_\3\4\5-concat-%Y%m%d_%H%M.grib2 diff --git a/rpms/awips2.upc/Installer.ldm/patch/etc/pqact.main b/rpms/awips2.upc/Installer.ldm/patch/etc/pqact.main index 8e1d05b33a..ac3424b4d9 100644 --- a/rpms/awips2.upc/Installer.ldm/patch/etc/pqact.main +++ b/rpms/awips2.upc/Installer.ldm/patch/etc/pqact.main @@ -16,6 +16,7 @@ # GOES16 GLM data coming from Unidata's IDD via Texas Tech # CIRA RGB GOES Satellite products added # 20230321 20.3.2 Update WW3 regex lines so we get the data +# 20231004 20.3.2 Add RAWS data # USPLN LIGHTNING USPLN1EX @@ -94,6 +95,11 @@ IDS|DDPLUS ^(UA(US|PA|NT)..) (.{4}) (..)(..)(..) IDS|DDPLUS ^(UB.{4}) (.{4}) (..)(..)(..) FILE -overwrite -close -edex /awips2/data_store/pirep/\1_\2_\3\4\5_(seq) # +# RAWS +# +EXP ^RAWS ...... (raws_ldad_)(........)(..)(..)(.xml) + FILE -overwrite -close -edex /awips2/data_store/ldadmesonet/\2/\3/\1\2\3\4\5 +# # ACARS # #ANY ^(IUAX0[12]) (....) (..)(..)(..)