diff --git a/.gitignore b/.gitignore index f82039fb96..d04d450486 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,12 @@ -bin/ .metadata/ +.gitignore ldm/Debug test-bin/ testbin/ testBin/ bin-test/ +bin +*.swp *.class *.pyo *.pyc diff --git a/cave/com.raytheon.uf.viz.alertviz/src/com/raytheon/uf/viz/alertviz/internal/LogMessageDAO.java b/cave/com.raytheon.uf.viz.alertviz/src/com/raytheon/uf/viz/alertviz/internal/LogMessageDAO.java index 75248005a7..c1bd078f5a 100644 --- a/cave/com.raytheon.uf.viz.alertviz/src/com/raytheon/uf/viz/alertviz/internal/LogMessageDAO.java +++ b/cave/com.raytheon.uf.viz.alertviz/src/com/raytheon/uf/viz/alertviz/internal/LogMessageDAO.java @@ -54,6 +54,8 @@ import com.raytheon.uf.viz.core.localization.LocalizationManager; * ------------ ---------- ----------- -------------------------- * Sep 11, 2008 1433 chammack Initial creation * Feb 11, 2016 5314 dgilling Add loadByRowOffset. + * Jul 11, 2016 5746 dgilling Better control multi-threaded access to + * Connection. * * * @author chammack @@ -240,83 +242,80 @@ public class LogMessageDAO { oldDir.renameTo(newDir); } - public void save(StatusMessage sm) throws AlertvizException { + public synchronized void save(StatusMessage sm) throws AlertvizException { Container.logInternal(sm); - synchronized (this) { - boolean errorOccurred = false; - ResultSet rs = null; - try { - Connection conn = getConnection(); - if (saveStatement == null) { - saveStatement = conn - .prepareStatement(INSERT_PREPARED_STATEMENT); - } - saveStatement.setTimestamp(1, new Timestamp(sm.getEventTime() - .getTime())); - saveStatement.setString(2, sm.getCategory()); - saveStatement.setInt(3, sm.getPriority().ordinal()); - saveStatement.setString(4, sm.getMessage()); - saveStatement.setString(5, sm.getDetails()); - saveStatement.setString(6, sm.getSourceKey()); - saveStatement.executeUpdate(); + boolean errorOccurred = false; + ResultSet rs = null; + try { + Connection conn = getConnection(); + if (saveStatement == null) { + saveStatement = conn + .prepareStatement(INSERT_PREPARED_STATEMENT); + } - if (getLastStatement == null) { - getLastStatement = conn - .prepareStatement(SELECT_LAST_INSERT_ID); - } + saveStatement.setTimestamp(1, new Timestamp(sm.getEventTime() + .getTime())); + saveStatement.setString(2, sm.getCategory()); + saveStatement.setInt(3, sm.getPriority().ordinal()); + saveStatement.setString(4, sm.getMessage()); + saveStatement.setString(5, sm.getDetails()); + saveStatement.setString(6, sm.getSourceKey()); + saveStatement.executeUpdate(); - rs = getLastStatement.executeQuery(); - if (rs.next()) { - int id = rs.getInt(1); - sm.setPk(id); - } - conn.commit(); - } catch (Exception e) { - errorOccurred = true; - throw new AlertvizException("Save failed", e); - } finally { - if (errorOccurred) { - closeStatement(saveStatement); - saveStatement = null; - closeStatement(getLastStatement); - getLastStatement = null; - closeConnection(); - } + if (getLastStatement == null) { + getLastStatement = conn.prepareStatement(SELECT_LAST_INSERT_ID); + } + + rs = getLastStatement.executeQuery(); + if (rs.next()) { + int id = rs.getInt(1); + sm.setPk(id); + } + conn.commit(); + } catch (Exception e) { + errorOccurred = true; + throw new AlertvizException("Save failed", e); + } finally { + if (errorOccurred) { + closeStatement(saveStatement); + saveStatement = null; + closeStatement(getLastStatement); + getLastStatement = null; + closeConnection(); } } } - public void acknowledge(StatusMessage sm, String username) + public synchronized void acknowledge(StatusMessage sm, String username) throws AlertvizException { PreparedStatement updateStatement = null; - synchronized (this) { - boolean errorOccurred = false; - try { - Connection conn = getConnection(); - updateStatement = conn.prepareStatement(ACKNOWLEDGE); + boolean errorOccurred = false; + try { + Connection conn = getConnection(); + updateStatement = conn.prepareStatement(ACKNOWLEDGE); - long ackTime = System.currentTimeMillis(); - updateStatement.setTimestamp(1, new Timestamp(ackTime)); - updateStatement.setString(2, username); - updateStatement.setInt(3, sm.getPk()); - updateStatement.executeUpdate(); - sm.setAcknowledgedBy(username); - sm.setAcknowledgedAt(new Date(ackTime)); - conn.commit(); - } catch (SQLException e) { - errorOccurred = true; - throw new AlertvizException("Acknowledge Failed", e); - } finally { - closeStatement(updateStatement); - if (errorOccurred) { - closeConnection(); - } + long ackTime = System.currentTimeMillis(); + updateStatement.setTimestamp(1, new Timestamp(ackTime)); + updateStatement.setString(2, username); + updateStatement.setInt(3, sm.getPk()); + updateStatement.executeUpdate(); + sm.setAcknowledgedBy(username); + sm.setAcknowledgedAt(new Date(ackTime)); + conn.commit(); + } catch (SQLException e) { + errorOccurred = true; + throw new AlertvizException("Acknowledge Failed", e); + } finally { + closeStatement(updateStatement); + if (errorOccurred) { + closeConnection(); } + } } - public StatusMessage loadByPk(int pk) throws AlertvizException { + public synchronized StatusMessage loadByPk(int pk) throws AlertvizException { ResultSet rs = null; PreparedStatement statement = null; boolean errorOccurred = false; @@ -355,7 +354,8 @@ public class LogMessageDAO { * If an error occurred retrieving the message from the message * store. */ - public StatusMessage loadByRowOffset(int index) throws AlertvizException { + public synchronized StatusMessage loadByRowOffset(int index) + throws AlertvizException { ResultSet rs = null; PreparedStatement statement = null; boolean errorOccurred = false; @@ -383,7 +383,8 @@ public class LogMessageDAO { } } - public StatusMessage[] load(int count) throws AlertvizException { + public synchronized StatusMessage[] load(int count) + throws AlertvizException { ResultSet rs = null; Statement statement = null; boolean errorOccurred = false; @@ -406,8 +407,8 @@ public class LogMessageDAO { } } - public StatusMessage[] load(int count, Timestamp filter, Order order) - throws AlertvizException { + public synchronized StatusMessage[] load(int count, Timestamp filter, + Order order) throws AlertvizException { ResultSet rs = null; PreparedStatement statement = null; boolean errorOccurred = false; @@ -441,7 +442,7 @@ public class LogMessageDAO { } } - public StatusMessage[] load(int count, Category[] filter) + public synchronized StatusMessage[] load(int count, Category[] filter) throws AlertvizException { ResultSet rs = null; Statement statement = null; @@ -480,7 +481,8 @@ public class LogMessageDAO { } } - public Collection purge(Timestamp filter) throws AlertvizException { + public synchronized Collection purge(Timestamp filter) + throws AlertvizException { boolean errorOccurred = false; Connection conn = getConnection(); @@ -514,7 +516,7 @@ public class LogMessageDAO { * * @return Total number of messages. */ - public int getMessageCount() throws AlertvizException { + public synchronized int getMessageCount() throws AlertvizException { ResultSet rs = null; Statement statement = null; boolean errorOccurred = false; diff --git a/cave/com.raytheon.uf.viz.d2d.nsharp/plugin.xml b/cave/com.raytheon.uf.viz.d2d.nsharp/plugin.xml index 565b572887..e587fc78a3 100644 --- a/cave/com.raytheon.uf.viz.d2d.nsharp/plugin.xml +++ b/cave/com.raytheon.uf.viz.d2d.nsharp/plugin.xml @@ -18,7 +18,7 @@ restorable="false" class="com.raytheon.uf.viz.d2d.nsharp.display.D2DNSharpPaletteWindow" id="com.raytheon.uf.viz.d2d.nsharp.display.D2DNSharpPaletteWindow" - name="NSHARP(D2D)"/> + name="NSHARP"/> diff --git a/cave/com.raytheon.uf.viz.d2d.nsharp/src/com/raytheon/uf/viz/d2d/nsharp/display/D2DNsharpObservedSoundingDialogContents.java b/cave/com.raytheon.uf.viz.d2d.nsharp/src/com/raytheon/uf/viz/d2d/nsharp/display/D2DNsharpObservedSoundingDialogContents.java index c9970b0265..2736f098cc 100644 --- a/cave/com.raytheon.uf.viz.d2d.nsharp/src/com/raytheon/uf/viz/d2d/nsharp/display/D2DNsharpObservedSoundingDialogContents.java +++ b/cave/com.raytheon.uf.viz.d2d.nsharp/src/com/raytheon/uf/viz/d2d/nsharp/display/D2DNsharpObservedSoundingDialogContents.java @@ -30,11 +30,11 @@ import gov.noaa.nws.ncep.ui.nsharp.NsharpConstants; import gov.noaa.nws.ncep.ui.nsharp.NsharpStationInfo; import com.raytheon.uf.viz.d2d.nsharp.display.map.D2DNsharpMapResource; -import java.sql.Timestamp; import java.text.DateFormatSymbols; import java.util.ArrayList; import java.util.Arrays; import java.util.Calendar; +import java.util.Date; import java.util.TimeZone; import org.eclipse.swt.SWT; @@ -99,10 +99,10 @@ public class D2DNsharpObservedSoundingDialogContents { Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("GMT")); ldDia.startWaitCursor(); for (Object timeLine : timeLines.getTimeLines()) { - Timestamp synoptictime = (Timestamp) timeLine; + Date synoptictime = (Date) timeLine; if (synoptictime != null) { // need to format synoptictime to GMT time string. - // Timestamp.toString produce a local time Not GMT time + // Date.toString produce a local time Not GMT time cal.setTimeInMillis(synoptictime.getTime()); String dayOfWeek = defaultDays[cal .get(Calendar.DAY_OF_WEEK)]; @@ -148,14 +148,14 @@ public class D2DNsharpObservedSoundingDialogContents { // Note: A same station may have many reports for (int i = 0; i < stnInfoAry.length; i++) { NcSoundingStnInfo stnInfo = stnInfoAry[i]; - Timestamp synoptictime = null; + Date synoptictime = null; stnInfoStr = stnInfo.getStnId(); if (stnInfoStr == null || stnInfoStr.length() < 1) stnInfoStr = "*"; lat = stnInfo.getStationLatitude(); lon = stnInfo.getStationLongitude(); // elv = stnInfo.getStationElevation(); - synoptictime = (Timestamp) stnInfo.getSynopTime(); + synoptictime = (Date) stnInfo.getSynopTime(); // convert to Nsharp's own station info struct NsharpStationInfo stn = new NsharpStationInfo(); diff --git a/cave/com.raytheon.uf.viz.d2d.nsharp/src/com/raytheon/uf/viz/d2d/nsharp/display/map/D2DNsharpMapResourceData.java b/cave/com.raytheon.uf.viz.d2d.nsharp/src/com/raytheon/uf/viz/d2d/nsharp/display/map/D2DNsharpMapResourceData.java index 3ec9f85d88..c0c2f3273d 100644 --- a/cave/com.raytheon.uf.viz.d2d.nsharp/src/com/raytheon/uf/viz/d2d/nsharp/display/map/D2DNsharpMapResourceData.java +++ b/cave/com.raytheon.uf.viz.d2d.nsharp/src/com/raytheon/uf/viz/d2d/nsharp/display/map/D2DNsharpMapResourceData.java @@ -19,8 +19,6 @@ */ package com.raytheon.uf.viz.d2d.nsharp.display.map; -import gov.noaa.nws.ncep.ui.nsharp.display.map.NsharpMapResource; -import gov.noaa.nws.ncep.ui.nsharp.display.map.NsharpMapResourceData; import gov.noaa.nws.ncep.viz.common.ui.Markers.MarkerState; import gov.noaa.nws.ncep.viz.common.ui.Markers.MarkerTextSize; import gov.noaa.nws.ncep.viz.common.ui.Markers.MarkerType; diff --git a/cave/com.raytheon.uf.viz.d2d.ui/plugin.xml b/cave/com.raytheon.uf.viz.d2d.ui/plugin.xml index 8fbb8632f3..d5eb1207f5 100644 --- a/cave/com.raytheon.uf.viz.d2d.ui/plugin.xml +++ b/cave/com.raytheon.uf.viz.d2d.ui/plugin.xml @@ -436,20 +436,6 @@ - - - - - - - - + + + + + + + + + + + + + - - - - + menuText="METAR MSLP Plot" id="MetarPlot"> diff --git a/cave/com.raytheon.viz.radar/META-INF/MANIFEST.MF b/cave/com.raytheon.viz.radar/META-INF/MANIFEST.MF index ef24ac9286..ff608b1985 100644 --- a/cave/com.raytheon.viz.radar/META-INF/MANIFEST.MF +++ b/cave/com.raytheon.viz.radar/META-INF/MANIFEST.MF @@ -46,7 +46,12 @@ Require-Bundle: org.eclipse.core.runtime;bundle-version="3.8.0", com.raytheon.uf.common.inventory;bundle-version="1.14", com.raytheon.viz.core.contours;bundle-version="1.14", com.raytheon.uf.viz.core.point;bundle-version="1.15.0", - com.raytheon.uf.viz.productbrowser.datalisting;bundle-version="1.15.0" -Import-Package: com.raytheon.viz.core.rsc, - com.raytheon.viz.core.rsc.jts + com.raytheon.uf.viz.productbrowser.datalisting;bundle-version="1.15.0", + gov.noaa.nws.ncep.viz.common;bundle-version="1.15.0" +Import-Package: com.raytheon.uf.viz.core.maps.rsc, + com.raytheon.viz.core.rsc, + com.raytheon.viz.core.rsc.jts, + gov.noaa.nws.ncep.ui.pgen.display, + gov.noaa.nws.ncep.ui.pgen.elements, + gov.noaa.nws.ncep.ui.pgen.tools Bundle-ClassPath: com.raytheon.viz.radar.jar 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..3f10563b2d --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/nexradAvailability.xml @@ -0,0 +1,66 @@ + + + + + + + + + + + + + PLAN_VIEW + + + + + + + + + + + + + + 88D.lpi + WSR-88D Station Locs + + + + + + + + + + + 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..be0be0dac4 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_eeri.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..1f3f37ef72 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_fqkw.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..12463ae9d0 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_fqwa.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..1a988e3fa3 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kabr.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..3883fa3cf1 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kabx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..9c78fbc7dd --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kakq.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..528dd00994 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kama.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..c83e5f8db5 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kamx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..3b677e9584 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kapx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..81e0c67386 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_karx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..dffe85a855 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_katx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..992f305afa --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbbx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..99dbdf9bdd --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbgm.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..cafedea441 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbhx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..c6dfaae1df --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbis.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..ccdabeac94 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbix.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..232013aeaf --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kblx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..2105ab7c93 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbmx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..25e9b2a440 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbox.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..d9ab6a015b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbro.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..d5d8931733 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbuf.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..af84fa3c79 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kbyx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..bf3be671f3 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcae.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..c19c696c61 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcbw.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..7c4bcbf801 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcbx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..d5c705b9ef --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kccx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..1295062ebd --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcle.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..8308c48ae1 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kclx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..5aa54ba7de --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcri.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..ee86ee78c7 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcrp.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..40bb091e06 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcxx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..f480f163e3 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kcys.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..7a992fb3c3 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdax.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..e15eaba32b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kddc.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..a241375bb3 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdfx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..98c2c5bfea --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdgx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..a567fb9278 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdix.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..b648849427 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdlh.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..378dc447b3 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdmx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..d89bdc9115 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdox.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..80d098dca4 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdtx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..5a98d660fc --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdvn.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..38f893b0cf --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kdyx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..79ee6286a6 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_keax.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..c8f4789aa7 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kemx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..14863ff225 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kenx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..6647c5f042 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_keox.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..503e101b6f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kepz.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..8ba3530d08 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kesx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..16c258f27a --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kevx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..3f44781fff --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kewx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..c30b2b1aa1 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_keyx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..93cb64520f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfcx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..3e003756e2 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfdr.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..17ea4686a1 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfdx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..2b4784b8b9 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kffc.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..0076e0402b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfsd.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..b1e14baf74 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfsx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..341e82a388 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kftg.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..02531407d5 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kfws.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..49fabfba1a --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kggw.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..198e52f230 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgjx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..ade91159a3 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgld.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..e52de84c9c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgrb.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..f9bb2c9f21 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgrk.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..6071b3aeba --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgrr.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..d9000ef48b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgsp.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..93cadab288 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgwx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..bff0003615 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kgyx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..8aae4a9a39 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khdx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..5323c7e805 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khgx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..19f32f37c2 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khnx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..09444b66ba --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khpx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..bc74c6f982 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_khtx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..ac5dae319e --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kict.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..4c7ecef0b5 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kicx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..e399bc3b1a --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kiln.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..cf04fd50aa --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kilx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..3b2d49d33e --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kind.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..b00ad1a361 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kinx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..3ad691f925 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kiwa.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..48f8f2a489 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kiwx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..6f97d1577c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kjax.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..e6f225a538 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kjgx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..f5599dc2c1 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kjkl.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..9c44e6d29f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klbb.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..db2bf7bd9c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klch.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..9da0c0b6bb --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klgx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..15d42fed5c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klix.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..d177befa7b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klnx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..9108818e13 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klot.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..f41316816e --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klrx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..c57528a0d5 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klsx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..769f30ecc9 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kltx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..54e5d48d05 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klvx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..9de7f32bd7 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klwx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..16987c5705 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_klzk.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..c0b8f2dfd0 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmaf.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..fb8ff1de7f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmax.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..e311e3653a --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmbx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..3c906c45aa --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmhx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..ee68f7a82a --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmkx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..2d805c28e9 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmlb.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..afd088e2b3 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmob.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..09f92d2544 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmpx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..3ad22edeee --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmqt.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..c212eb93d4 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmrx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..bd1d849a60 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmsx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..10585cecff --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmtx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..f37cc4677b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmux.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..29ba3d1187 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmvx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..41768f3b50 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kmxx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..4e706641ce --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_knkx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..04b835a75d --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_knqa.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..59d7d1ffde --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_koax.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..3323472563 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kohx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..7ab477d4dd --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kokx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..535a2e6ff6 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kotx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..9a681e257b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpah.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..3246edb4ee --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpbz.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..d94e8d39a0 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpdt.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..6b10db8cdf --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpoe.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..5aa5733c47 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kpux.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..3ba8b1ec08 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_krax.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..7530701ceb --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_krgx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..b42dfee2a8 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kriw.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..d7ff798b11 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_krlx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..edb333e91f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_krtx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..1bebf07362 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksfx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..d4302d07d6 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksgf.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..ee58bf0f82 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kshv.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..bbe41705f0 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksjt.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..332913f540 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksox.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..ee7a1d2908 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ksrx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..ba479ce0dd --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktbw.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..e45f7dce85 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktfx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..6057abe3d6 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktlh.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..593c22180c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktlx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..0b04cdaea3 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktwx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..11c0d2a678 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ktyx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..5e826cb0f9 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kudx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..414102c1ff --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kuex.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..90761ade05 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvax.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..4320116cd7 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvbx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..9e0423e923 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvnx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..eb80665d42 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvtx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..52b3650940 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kvwx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..0901bc5305 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_kyux.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..aa0ea534b0 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_lpla.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..dcb1534b25 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pabc.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..94809e5ee7 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pacg.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..d21112aa60 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_paec.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..57e674811f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pahg.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..0eb96b3780 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_paih.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..7e91830c9e --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pakc.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..0e1de4b6d8 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_papd.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..6df8c038b0 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_pgua.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..a505d8f63b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_phki.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..70772a99a0 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_phkm.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..7e81317710 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_phmo.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..431166bce6 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_phwa.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..d51ffd470d --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_rkjk.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..88ff36e98b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_rksg.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..90c18f1412 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_rodn.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..408348f4ed --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tadw.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..306bd4d803 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tatl.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..95881d2d8b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tbna.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..c7eb823cd0 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tbos.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..b401312de5 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tbwi.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..2ab3b55875 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tclt.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..fdf6fb0028 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tcmh.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..7e9d7ba85e --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tcvg.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..d094f13609 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tdal.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..74500dd7d8 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tday.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..680b0fdaee --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tdca.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..e8ded251f4 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tden.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..297f06e47a --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tdfw.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..bffafb7b19 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tdtw.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..30b969db22 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tewr.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..20dd0e00f3 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tfll.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..155843670a --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_thou.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..b62b5bc59f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tiad.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..d05bc35a2c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tiah.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..9b3e01fe67 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tich.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..6c53b395bb --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tids.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..85ec4345f8 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tjfk.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..38f3aadd34 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tjua.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..0d79fd0b70 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tlas.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..9c26e738f7 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tlve.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..eec6f81cb4 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmci.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..3f8dddd9e3 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmco.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..04258526fa --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmdw.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..0d2cfc52c2 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmem.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..bac1eb1211 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmia.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..57e63c3025 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmke.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..a81e47d5c5 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmsp.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..1f728f9e2c --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tmsy.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..a265fada27 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tokc.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..eb0a2a8d56 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tord.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..67fb2dc9af --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tpbi.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..7a372a481f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tphl.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..f206004926 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tphx.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..4e853df3ac --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tpit.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..639a6b856f --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tpsf.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..9d2316f3f9 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_trdu.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..2f4316d2ba --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tsdf.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..5104417a27 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tsju.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..7cac32f10b --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tslc.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..c8d3a7b2f3 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_tstl.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..71f7be4748 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ttpa.xml @@ -0,0 +1,300 @@ + + + + + + + + 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..fc84543e66 --- /dev/null +++ b/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_ttul.xml @@ -0,0 +1,300 @@ + + + + + + + + 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/baseRadarMenu.xml b/cave/com.raytheon.viz.radar/localization/menus/radar/baseRadarMenu.xml index eaa8788108..58a4f9e3d3 100755 --- a/cave/com.raytheon.viz.radar/localization/menus/radar/baseRadarMenu.xml +++ b/cave/com.raytheon.viz.radar/localization/menus/radar/baseRadarMenu.xml @@ -7,6 +7,11 @@ ________________________Omaha,_NE_68106 ________________________402.291.0100 See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for further_licensing_information. --> + + + @@ -19,7 +24,7 @@ id="RadarMenuTwdrRadarsSubMenu"> - 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", "94"); + variableSubstitutions.put("product2", "99"); + + 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) { + IMapDescriptor desc = (IMapDescriptor) mapEditor + .getActiveDisplayPane().getRenderableDisplay() + .getDescriptor(); + gc = new GeodeticCalculator(desc.getCRS()); + gc.setStartingGeographicPoint(pt.x, pt.y); + for (RadarStation selectPoint : points) { + + gc.setDestinationGeographicPoint(selectPoint.getLon(), + selectPoint.getLat()); + double dist; + try { + dist = gc.getOrthodromicDistance(); + if (dist < minDistance) { + minDistance = dist; + thePoint = selectPoint; + } + } catch (Exception e) { + statusHandler.handle( + Priority.ERROR,"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..e97858512e --- /dev/null +++ b/cave/com.raytheon.viz.radar/src/com/raytheon/viz/radar/rsc/map/RadarMapResource.java @@ -0,0 +1,357 @@ +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; + +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 like 'K%' ;"; + 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); + } + + } + + /* + // generate symbol for picked stn to mark X + if (this.pickedPoint.getLon() != null) { + double lon, lat; + lon = this.pickedPoint.getLon(); + lat = this.pickedPoint.getLat(); + } + */ + } + + 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 { + // System.out.println("RadarMapResource: project "); + } + + 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..abdd80d328 --- /dev/null +++ b/cave/com.raytheon.viz.radar/src/com/raytheon/viz/radar/rsc/map/RadarMapResourceData.java @@ -0,0 +1,118 @@ +package com.raytheon.viz.radar.rsc.map; + +import gov.noaa.nws.ncep.viz.common.ui.Markers.MarkerState; +import gov.noaa.nws.ncep.viz.common.ui.Markers.MarkerTextSize; +import gov.noaa.nws.ncep.viz.common.ui.Markers.MarkerType; + +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 MarkerState markerState = MarkerState.MARKER_ONLY; + + private MarkerType markerType = MarkerType.OCTAGON; + + private Float markerSize = 1.5f; + + private Integer markerWidth = 2; + + private MarkerTextSize markerTextSize = MarkerTextSize.MEDIUM; + + private String mapName = "NEXRAD"; + + private MarkerType stnMarkerType = MarkerType.LARGE_X; + + public MarkerType getStnMarkerType() { + return stnMarkerType; + } + + 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.markerState.equals(rdata.getMarkerState()) + && this.markerType.equals(rdata.getMarkerType()) + && this.markerSize.equals(rdata.getMarkerSize()) + && this.markerWidth.equals(rdata.getMarkerWidth()) + && this.markerTextSize.equals(rdata.getMarkerTextSize()) + && this.stnMarkerType.equals(rdata.getStnMarkerType())) + return true; + + return false; + } + + public MarkerState getMarkerState() { + return markerState; + } + + public void setMarkerState(MarkerState markerState) { + this.markerState = markerState; + } + + public MarkerType getMarkerType() { + return markerType; + } + + public void setMarkerType(MarkerType markerType) { + this.markerType = markerType; + } + + 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 MarkerTextSize getMarkerTextSize() { + return markerTextSize; + } + + public void setMarkerTextSize(MarkerTextSize markerTextSize) { + this.markerTextSize = markerTextSize; + } + + public String getMapName() { + return mapName; + } + + public void setMapName(String mapName) { + this.mapName = mapName; + } +} diff --git a/cave/com.raytheon.viz.radar/src/com/raytheon/viz/radar/ui/RadarDisplayManager.java b/cave/com.raytheon.viz.radar/src/com/raytheon/viz/radar/ui/RadarDisplayManager.java index eaf5841ae5..70c35a7765 100644 --- a/cave/com.raytheon.viz.radar/src/com/raytheon/viz/radar/ui/RadarDisplayManager.java +++ b/cave/com.raytheon.viz.radar/src/com/raytheon/viz/radar/ui/RadarDisplayManager.java @@ -47,6 +47,7 @@ import com.raytheon.viz.radar.rsc.image.RadarSRMResource.SRMSource; * Date Ticket# Engineer Description * ------------ ---------- ----------- -------------------------- * May 13, 2015 4461 bsteffen Add option for sails. + * Jul 13, 2016 ASM #18863 D. Friedman Synchronize getInstance. * * * @@ -120,7 +121,7 @@ public class RadarDisplayManager { private RadarDisplayControls currentValues; - private static RadarDisplayManager manager = null; + private static volatile RadarDisplayManager manager = null; private RadarDisplayManager() { configListeners = new ArrayList(); @@ -142,11 +143,17 @@ public class RadarDisplayManager { * @return */ public static RadarDisplayManager getInstance() { - if (manager == null) { - manager = new RadarDisplayManager(); - manager.retrieveDefaultSettings(); + RadarDisplayManager result = manager; + if (result == null) { + synchronized (RadarDisplayManager.class) { + result = manager; + if (result == null) { + result = manager = new RadarDisplayManager(); + result.retrieveDefaultSettings(); + } + } } - return manager; + return result; } /** diff --git a/cave/com.raytheon.viz.satellite/localization/menus/satellite/regionalSatellite.xml b/cave/com.raytheon.viz.satellite/localization/menus/satellite/regionalSatellite.xml index 70c049db00..d5263f8afa 100644 --- a/cave/com.raytheon.viz.satellite/localization/menus/satellite/regionalSatellite.xml +++ b/cave/com.raytheon.viz.satellite/localization/menus/satellite/regionalSatellite.xml @@ -16,7 +16,7 @@ - + @@ -46,7 +46,7 @@ - + @@ -69,7 +69,7 @@ - + @@ -99,7 +99,7 @@ - + @@ -122,7 +122,7 @@ - + @@ -155,11 +155,11 @@ + menuText="Puerto Rico Regional 6.7-6.5 micron IR (WV)" id="irWindow"> - + @@ -196,7 +196,7 @@ - + @@ -226,7 +226,7 @@ - + \ No newline at end of file diff --git a/deltaScripts/16.2.2/DR5254/alter_cwa_drop_datauri.sh b/deltaScripts/16.2.2/DR5254/alter_cwa_drop_datauri.sh index c538b24982..821c7ac35e 100755 --- a/deltaScripts/16.2.2/DR5254/alter_cwa_drop_datauri.sh +++ b/deltaScripts/16.2.2/DR5254/alter_cwa_drop_datauri.sh @@ -3,16 +3,18 @@ # multi-column unique constraint PSQL="/awips2/psql/bin/psql" +DBUSER=awips echo "INFO: Altering table cwa" -${PSQL} -U awips -d metadata << EOF +${PSQL} -U ${DBUSER} -d metadata << EOF begin transaction; delete from cwa where eventid is null; alter table cwa drop constraint if exists uk_cwa_datauri_fields, drop column if exists datauri, alter eventid set not null, - add constraint uk_cwa_datauri_fields unique (reftime, eventid); + add constraint uk_cwa_datauri_fields unique (reftime, forecasttime, eventid); +drop index if exists cwa_refTimeIndex; commit transaction; EOF diff --git a/deltaScripts/16.2.2/DR5285/alter_tcs_drop_datauri.sh b/deltaScripts/16.2.2/DR5285/alter_tcs_drop_datauri.sh index edb78befe5..eb605b7380 100755 --- a/deltaScripts/16.2.2/DR5285/alter_tcs_drop_datauri.sh +++ b/deltaScripts/16.2.2/DR5285/alter_tcs_drop_datauri.sh @@ -3,15 +3,17 @@ # multi-column unique constraint PSQL="/awips2/psql/bin/psql" +DBUSER=awips echo "INFO: Altering table tcs" -${PSQL} -U awips -d metadata << EOF +${PSQL} -U ${DBUSER} -d metadata << EOF begin transaction; alter table tcs drop constraint if exists uk_tcs_datauri_fields, drop column if exists datauri, add constraint uk_tcs_datauri_fields unique - (reftime, producttype, latitude, longitude, stationid); + (reftime, forecasttime, producttype, latitude, longitude, stationid); +drop index if exists tcs_refTimeIndex; commit transaction; EOF diff --git a/deltaScripts/16.2.2/DR5286/alter_tcg_drop_datauri.sh b/deltaScripts/16.2.2/DR5286/alter_tcg_drop_datauri.sh index 20d62c8477..ff70425a44 100755 --- a/deltaScripts/16.2.2/DR5286/alter_tcg_drop_datauri.sh +++ b/deltaScripts/16.2.2/DR5286/alter_tcg_drop_datauri.sh @@ -3,17 +3,19 @@ # multi-column unique constraint TABLE=tcg +DBUSER=awips PSQL="/awips2/psql/bin/psql" echo "INFO: Altering table ${TABLE}" -${PSQL} -U awips -d metadata << EOF +${PSQL} -U ${DBUSER} -d metadata << EOF begin transaction; alter table ${TABLE} drop constraint if exists uk_${TABLE}_datauri_fields, drop column if exists datauri, add constraint uk_${TABLE}_datauri_fields unique - (reftime, producttype, modelname, latitude, longitude, stationid); + (reftime, forecasttime, producttype, modelname, latitude, longitude, stationid); +drop index if exists tcg_refTimeIndex; commit transaction; EOF diff --git a/deltaScripts/16.2.2/DR5309/alter_bufrsigwx_drop_datauri.sh b/deltaScripts/16.2.2/DR5309/alter_bufrsigwx_drop_datauri.sh index 73117a61dd..e3c4715dfe 100755 --- a/deltaScripts/16.2.2/DR5309/alter_bufrsigwx_drop_datauri.sh +++ b/deltaScripts/16.2.2/DR5309/alter_bufrsigwx_drop_datauri.sh @@ -3,12 +3,13 @@ # new multi-column unique constraint TABLE=bufrsigwx +DBUSER=awips PSQL="/awips2/psql/bin/psql" echo "INFO: Altering table ${TABLE}" -${PSQL} -U awips -d metadata << EOF +${PSQL} -U ${DBUSER} -d metadata << EOF begin transaction; delete from ${TABLE} where wxLayer is null @@ -21,6 +22,8 @@ alter table ${TABLE} alter wxType set not null, alter key set not null, add constraint uk_${TABLE}_datauri_fields unique - (reftime, wxLayer, wxType, key); + (reftime, forecasttime, wxLayer, wxType, key); +-- "bufrswigwx" not a typo. name was misspelled when the index was created. +drop index if exists bufrswigwx_refTimeIndex; commit transaction; EOF diff --git a/deltaScripts/16.2.2/DR5733/_update_fssobs_slp_values.py b/deltaScripts/16.2.2/DR5733/_update_fssobs_slp_values.py new file mode 100755 index 0000000000..4ae421499e --- /dev/null +++ b/deltaScripts/16.2.2/DR5733/_update_fssobs_slp_values.py @@ -0,0 +1,35 @@ +#!/usr/bin/env python2 + +# #5733 +# Convert sea level pressure from Pa to hPa in an hdf5 file +# Do nothing if all values are already in hPa +# Author: tom.gurney@raytheon.com + +import sys +import h5py + +def main(): + if len(sys.argv) != 2: + print "usage: {} filename.h5".format(sys.argv[0]) + sys.exit(1) + + didstuff = False + try: + with h5py.File(sys.argv[1], 'r+') as f: + if 'seaLevelPress' in f: + for i, data in enumerate(f['seaLevelPress']): + if data > 10000: + f['seaLevelPress'][i] = data / 100.0 + didstuff = True + except Exception as e: + print "ERROR: " + str(sys.exc_info()[0]) + ": " + str(e) + sys.exit(1) + + if didstuff: + print "INFO: {}: updated".format(sys.argv[1]) + else: + print "INFO: {}: no update needed".format(sys.argv[1]) + + +if __name__ == "__main__": + main() diff --git a/deltaScripts/16.2.2/DR5733/update_fssobs_slp_values.sh b/deltaScripts/16.2.2/DR5733/update_fssobs_slp_values.sh new file mode 100755 index 0000000000..2856274694 --- /dev/null +++ b/deltaScripts/16.2.2/DR5733/update_fssobs_slp_values.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +# #5733 +# Convert sea level pressure from Pa to hPa in all fssobs h5 files +# Author: tom.gurney@raytheon.com + +TARGET=/awips2/edex/data/hdf5/fssobs +THIS_LOCATION=$(dirname $0) +success=0 + +for item in $(find $TARGET -type f -name "*.h5"); do + $THIS_LOCATION/_update_fssobs_slp_values.py $item + if [[ $? -ne 0 ]]; then + success=1 + fi +done + +if [[ success -eq 0 ]]; then + echo INFO: No errors reported. +else + echo "ERROR: There was a problem with one or more updates; see above." +fi diff --git a/edexOsgi/build.edex/build.xml b/edexOsgi/build.edex/build.xml index c82f3e51b6..cc89870276 100644 --- a/edexOsgi/build.edex/build.xml +++ b/edexOsgi/build.edex/build.xml @@ -95,26 +95,26 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -127,6 +127,14 @@ + + + + + + + + 250157 + QPF Grid for MSR (North Central RFC Chanhassen, Minnesota) + 37.889 + -105.492 + LowerLeft + 450 + 350 + 4.7625 + 4.7625 + km + 6371229.0 + 6371229.0 + -105.0 + 60 + diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/QPE-TIR.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/QPE-TIR.xml index 870da6f0cc..4c0bd5fe28 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/QPE-TIR.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/QPE-TIR.xml @@ -21,8 +21,8 @@ 250160 QPF Grid for TIR (Ohio Basin RFC Wilmington, Ohio) - 36.203 - -91.320 + 36.188 + -91.348 LowerLeft 250 260 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/TPCSurge.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/TPCSurge.xml index b0bca31035..89b1904b38 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/TPCSurge.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/TPCSurge.xml @@ -21,7 +21,7 @@ 374 Grid used for TPCSurge data - 20.20 + 20.192 -121.554 LowerLeft 8577 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/estofsHW.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/estofsHW.xml index 2721a041cb..bd41ec8ca8 100755 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/estofsHW.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/estofsHW.xml @@ -21,7 +21,7 @@ 321225001 Extratropical Storm and Tide Operation Forecast System (Hawaii) - 18.067 + 18.073 -161.525 LowerLeft 321 @@ -32,6 +32,6 @@ 6371229.0 6371229.0 20.0 - 23.082 - -153.969 + 23.078 + -153.869 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid161.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid161.xml index 94cafe010b..0b3c077a4a 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid161.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid161.xml @@ -26,8 +26,8 @@ UpperLeft 137 102 - 0.50367647058823528 - 0.50495049504950495 + 0.5 + 0.5 degree -0.25 340.25 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid196.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid196.xml index 94a494cb83..d2037a349f 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid196.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid196.xml @@ -21,8 +21,8 @@ 196 Grid over - Hawaii (Mercator) - 18.067 - -161.525001 + 18.073 + -161.525 LowerLeft 321 225 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid197-RTMA.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid197-RTMA.xml new file mode 100644 index 0000000000..fef0fcf498 --- /dev/null +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid197-RTMA.xml @@ -0,0 +1,37 @@ + + + + 197-RTMA + Grid over the contiguous United States - 16X Resolution (5 km) for RTMA + 20.192 + -121.554 + LowerLeft + 1073 + 689 + 5.079 + 5.079 + km + 6371229.0 + 6371229.0 + -95.0 + 25.0 + 25.0 + diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240ALR.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240ALR.xml index a7cbdfd9fd..a719c0a410 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240ALR.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240ALR.xml @@ -21,8 +21,8 @@ 240161 HRAP Grid for ALR (Southeast RFC Peachtree, Georgia) - 27.045 - -91.395 + 27.033 + -91.417 LowerLeft 335 412 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240FWR.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240FWR.xml index 495933a930..54abf5444b 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240FWR.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240FWR.xml @@ -21,8 +21,8 @@ 240162 HRAP Grid for WFR (West Gulf RFC Fort Worth, Texas) - 24.869 - -108.973 + 24.852 + -108.990 LowerLeft 425 390 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240KRF.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240KRF.xml index 261f55028e..f09608207f 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240KRF.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240KRF.xml @@ -21,8 +21,8 @@ 240156 HRAP Grid for KRF (Missouri Basin RFC Pleasant Hill, Missouri) - 37.296 - -112.690 + 37.274 + -112.710 LowerLeft 485 325 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240MSR.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240MSR.xml index a36a96c94f..92243de718 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240MSR.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240MSR.xml @@ -21,8 +21,8 @@ 240157 HRAP Grid for MSR (North Central RFC Chanhassen, Minnesota) - 37.889 - -105.492 + 37.870 + -105.515 LowerLeft 450 350 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240ORN.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240ORN.xml index 50622aef0c..be65baf669 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240ORN.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240ORN.xml @@ -21,8 +21,8 @@ 240154 HRAP Grid for ORN (Lower Mississippi RFC Slidel, Louisiana) - 28.701 - -98.770 + 28.686 + -98.791 LowerLeft 419 419 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240PTR.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240PTR.xml index 3099a2a978..df64ee89ca 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240PTR.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240PTR.xml @@ -21,8 +21,8 @@ 240159 HRAP Grid for PTR (Northwest RFC Portland, Oregon) - 38.00 - -124.179 + 37.952 + -124.207 LowerLeft 400 378 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240RHA.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240RHA.xml index 45eba05bf8..8ef5b77e91 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240RHA.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240RHA.xml @@ -21,8 +21,8 @@ 240155 HRAP Grid for RHA (Middle Atlantic RFC State College, PA) - 38.035 - -83.315 + 38.025 + -83.347 LowerLeft 200 200 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240RSA.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240RSA.xml index fb2f699e83..74abc1ffe2 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240RSA.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240RSA.xml @@ -21,8 +21,8 @@ 240153 HRAP Grid for RSA (California-Nevada RFC Sacramento, California) - 30.931 - -120.858 + 30.910 + -120.872 LowerLeft 235 335 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240STR.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240STR.xml index 54a1c186d6..20e06eed4a 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240STR.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240STR.xml @@ -21,8 +21,8 @@ 240152 HRAP Grid for STR (Colorado Basin RFC Salt Lake City, Utah) - 30.047 - -114.413 + 30.027 + -114.429 LowerLeft 260 360 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240TAR.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240TAR.xml index 74f436e850..0cf3c455f9 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240TAR.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240TAR.xml @@ -21,8 +21,8 @@ 240158 HRAP Grid for TAR (Northeast RFC Taunton, Massachusetts) - 42.066 - -79.970 + 42.057 + -80.004 LowerLeft 180 235 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240TUA.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240TUA.xml index 6ec23b38f8..9a8cb2d792 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240TUA.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid240TUA.xml @@ -21,8 +21,8 @@ 240150 HRAP Grid for TUA (Arkansas-Red River RFC Tulsa, Oklahoma) - 33.621 - -106.434 + 33.603 + -106.455 LowerLeft 335 159 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid243.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid243.xml index d9bd61658b..d05f061f48 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid243.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/grids/grid243.xml @@ -26,8 +26,8 @@ LowerLeft 126 101 - 0.396 - 0.397 + 0.4 + 0.4 degree 50.0 240.0 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/models/gribModels_NCEP-7.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/models/gribModels_NCEP-7.xml index 0020df4bd6..611dad075d 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/models/gribModels_NCEP-7.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/models/gribModels_NCEP-7.xml @@ -2304,7 +2304,7 @@ - gefs + GEFS
7
2 2 @@ -2314,7 +2314,7 @@
- gefs + GEFS
7
2 3 @@ -2324,7 +2324,7 @@
- gefs + GEFS
7
2 361181001 @@ -2334,7 +2334,7 @@
- gefs + GEFS
7
2 372 @@ -2344,7 +2344,7 @@
- gefs + GEFS
7
2 375 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/models/gribModels_RFC-9.xml b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/models/gribModels_RFC-9.xml index 9186a97899..b06e3ce7f9 100644 --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/models/gribModels_RFC-9.xml +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/models/gribModels_RFC-9.xml @@ -810,7 +810,7 @@ QPE-MSR
9
157 - 240157 + 250157 152 diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/tables/161/0/4.2.209.12.table b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/tables/161/0/4.2.209.12.table old mode 100755 new mode 100644 index 956839cf14..348f0ff12f --- a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/tables/161/0/4.2.209.12.table +++ b/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/tables/161/0/4.2.209.12.table @@ -2,12 +2,12 @@ 0:0:CREST Maximum Unit Streamflow:(m^3)*(s^-1)*(km^-2):CrestMaxUStreamflow 1:1:CREST Maximum Streamflow:(m^3)*(s^-1):CrestMaxStreamflow 2:2:CREST Soil Moisture:%:CrestSoilMoisture -14:14:30 min Precipitation Accumulation Return Period:PRP30min -15:15:1 hour Precipitation Accumulation Return Period:PRP01H -16:16:3 hour Precipitation Accumulation Return Period:PRP03H -17:17:6 hour Precipitation Accumulation Return Period:PRP06H -18:18:12 hour Precipitation Accumulation Return Period:PRP12H -19:19:24 hour Precipitation Accumulation Return Period:PRP24H +14:14:30 min Precipitation Accumulation Return Period:year:PRP30min +15:15:1 hour Precipitation Accumulation Return Period:year:PRP01H +16:16:3 hour Precipitation Accumulation Return Period:year:PRP03H +17:17:6 hour Precipitation Accumulation Return Period:year:PRP06H +18:18:12 hour Precipitation Accumulation Return Period:year:PRP12H +19:19:24 hour Precipitation Accumulation Return Period:year:PRP24H 20:20:Maximum Precipitation Return Period:year:PRPMax 26:26:1 hour QPE-to-FFG Ratio:%:QPEFFG01H 27:27:3 hour QPE-to-FFG Ratio:%:QPEFFG03H diff --git a/edexOsgi/com.raytheon.edex.plugin.radar/utility/edex_static/base/distribution/radar.xml b/edexOsgi/com.raytheon.edex.plugin.radar/utility/edex_static/base/distribution/radar.xml index 333386cca0..621f994ddb 100644 --- a/edexOsgi/com.raytheon.edex.plugin.radar/utility/edex_static/base/distribution/radar.xml +++ b/edexOsgi/com.raytheon.edex.plugin.radar/utility/edex_static/base/distribution/radar.xml @@ -21,4 +21,5 @@ ^SDUS[234578]. .* ^RadarServer.* + ^Level3.* diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.bufrsigwx/src/com/raytheon/uf/common/dataplugin/bufrsigwx/SigWxData.java b/edexOsgi/com.raytheon.uf.common.dataplugin.bufrsigwx/src/com/raytheon/uf/common/dataplugin/bufrsigwx/SigWxData.java index 04d851541a..c9d720fa17 100644 --- a/edexOsgi/com.raytheon.uf.common.dataplugin.bufrsigwx/src/com/raytheon/uf/common/dataplugin/bufrsigwx/SigWxData.java +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.bufrsigwx/src/com/raytheon/uf/common/dataplugin/bufrsigwx/SigWxData.java @@ -27,8 +27,6 @@ import javax.persistence.Table; import javax.persistence.Transient; import javax.persistence.UniqueConstraint; -import org.hibernate.annotations.Index; - import com.raytheon.uf.common.dataplugin.PluginDataObject; import com.raytheon.uf.common.dataplugin.annotations.DataURI; import com.raytheon.uf.common.dataplugin.bufrsigwx.common.SigWxLayer; @@ -58,23 +56,17 @@ import com.raytheon.uf.common.serialization.annotations.DynamicSerializeElement; * Aug 30, 2013 2298 rjpeter Make getPluginName abstract * Oct 14, 2013 2361 njensen Removed XML annotations and IDecoderGettable * Jul 23, 2015 2360 rferrel Add name to unique constraint. - * Feb 04, 2015 5309 tgurney Drop dataURI column and update unique constraint. + * Feb 04, 2016 5309 tgurney Drop dataURI column and update unique constraint. + * Aug 04, 2016 5783 tgurney Add forecasttime to unique constraint * * * * @author jkorman - * @version 1.0 */ @Entity @SequenceGenerator(initialValue = 1, name = PluginDataObject.ID_GEN, sequenceName = "bufrsigwxseq") @Table(name = "bufrsigwx", uniqueConstraints = { @UniqueConstraint(name = "uk_bufrsigwx_datauri_fields", columnNames = { - "refTime", "wxLayer", "wxType", "key" }) }) -/* - * Both refTime and forecastTime are included in the refTimeIndex since - * forecastTime is unlikely to be used. - */ -@org.hibernate.annotations.Table(appliesTo = "bufrsigwx", indexes = { @Index(name = "bufrswigwx_refTimeIndex", columnNames = { - "refTime", "forecastTime" }) }) + "refTime", "forecastTime", "wxLayer", "wxType", "key" }) }) @DynamicSerialize public class SigWxData extends PersistablePluginDataObject implements IPointData, IPersistable { diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.cwa/src/com/raytheon/uf/common/dataplugin/cwa/CWARecord.java b/edexOsgi/com.raytheon.uf.common.dataplugin.cwa/src/com/raytheon/uf/common/dataplugin/cwa/CWARecord.java index 6d90e6a124..f629912266 100644 --- a/edexOsgi/com.raytheon.uf.common.dataplugin.cwa/src/com/raytheon/uf/common/dataplugin/cwa/CWARecord.java +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.cwa/src/com/raytheon/uf/common/dataplugin/cwa/CWARecord.java @@ -29,8 +29,6 @@ import javax.persistence.Table; import javax.persistence.Transient; import javax.persistence.UniqueConstraint; -import org.hibernate.annotations.Index; - import com.raytheon.uf.common.dataplugin.PluginDataObject; import com.raytheon.uf.common.dataplugin.annotations.DataURI; import com.raytheon.uf.common.dataplugin.persist.IPersistable; @@ -61,22 +59,16 @@ import com.vividsolutions.jts.geom.Coordinate; * Jul 23, 2015 2360 rferrel Add name to unique constraint. * Jan 25, 2016 5254 tgurney Remove dataURI column and update unique * constraint. + * Aug 04, 2016 5783 tgurney Add forecasttime to unique constraint * * * * @author jsanchez - * @version 1.0 */ @Entity @SequenceGenerator(initialValue = 1, name = PluginDataObject.ID_GEN, sequenceName = "cwaseq") @Table(name = "cwa", uniqueConstraints = { @UniqueConstraint(name = "uk_cwa_datauri_fields", columnNames = { - "refTime", "eventId" }) }) -/* - * Both refTime and forecastTime are included in the refTimeIndex since - * forecastTime is unlikely to be used. - */ -@org.hibernate.annotations.Table(appliesTo = "cwa", indexes = { @Index(name = "cwa_refTimeIndex", columnNames = { - "refTime", "forecastTime" }) }) + "refTime", "forecastTime", "eventId" }) }) @DynamicSerialize public class CWARecord extends PersistablePluginDataObject implements IPointData, IPersistable { diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.ffmp/src/com/raytheon/uf/common/dataplugin/ffmp/FFMPGuidanceBasin.java b/edexOsgi/com.raytheon.uf.common.dataplugin.ffmp/src/com/raytheon/uf/common/dataplugin/ffmp/FFMPGuidanceBasin.java index 313fb4059a..e9211ea6eb 100644 --- a/edexOsgi/com.raytheon.uf.common.dataplugin.ffmp/src/com/raytheon/uf/common/dataplugin/ffmp/FFMPGuidanceBasin.java +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.ffmp/src/com/raytheon/uf/common/dataplugin/ffmp/FFMPGuidanceBasin.java @@ -26,6 +26,7 @@ import com.raytheon.uf.common.serialization.annotations.DynamicSerializeElement; * 01/17/13 1478 D. Hladky Removed un-needed XML attributes * Aug 08, 2015 4722 dhladky Dynamic serialize imp not needed. * Oct 26, 2015 5056 dhladky Simplified Guidance interpolator. + * Jun 21, 2016 5704 dhladky Updated getClosest() logic to include 0.0f checks. * * * @@ -248,7 +249,7 @@ public class FFMPGuidanceBasin extends FFMPBasin { if (guidValues.get(checkDate).containsKey(sourceName)) { float val = guidValues.get(checkDate).get(sourceName); - if (val != FFMPUtils.MISSING) { + if (val != FFMPUtils.MISSING && val != 0.0f) { long time1 = markerDate.getTime(); long time2 = checkDate.getTime(); @@ -284,7 +285,7 @@ public class FFMPGuidanceBasin extends FFMPBasin { float val = guidValues.get(date).get(sourceName); - if (val != FFMPUtils.MISSING) { + if (val != FFMPUtils.MISSING && val != 0.0f) { rdate = date; } } @@ -299,7 +300,7 @@ public class FFMPGuidanceBasin extends FFMPBasin { float val2 = guidValues.get(checkDate).get(sourceName); - if (val2 != FFMPUtils.MISSING) { + if (val2 != FFMPUtils.MISSING && val2 != 0.0f) { long time2 = checkDate.getTime(); // as long as it is +- expiration from orig date, diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.grid/utility/common_static/base/colormaps/colortemp.cmap b/edexOsgi/com.raytheon.uf.common.dataplugin.grid/utility/common_static/base/colormaps/colortemp.cmap index bac7a43ce3..fd15512b13 100644 --- a/edexOsgi/com.raytheon.uf.common.dataplugin.grid/utility/common_static/base/colormaps/colortemp.cmap +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.grid/utility/common_static/base/colormaps/colortemp.cmap @@ -1,196 +1,259 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.radar/utility/common_static/base/colormaps/Radar/Storm Clear Reflectivity.cmap b/edexOsgi/com.raytheon.uf.common.dataplugin.radar/utility/common_static/base/colormaps/Radar/Storm Clear Reflectivity.cmap index bebe84fc94..2764bf1f03 100644 --- a/edexOsgi/com.raytheon.uf.common.dataplugin.radar/utility/common_static/base/colormaps/Radar/Storm Clear Reflectivity.cmap +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.radar/utility/common_static/base/colormaps/Radar/Storm Clear Reflectivity.cmap @@ -1,116 +1,116 @@ - - - - - + + + + + + - - - - + + + + + - - - + + + + - - - + + + + - - - - - + + + + + + - - - - - + + + + + + - - - - - + + + + + + - - - + + + + - - - + + + + - - - - - + + + + + + - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.satellite/utility/common_static/base/styleRules/satelliteImageryStyleRules.xml b/edexOsgi/com.raytheon.uf.common.dataplugin.satellite/utility/common_static/base/styleRules/satelliteImageryStyleRules.xml index c513fe29eb..169bb4f24d 100644 --- a/edexOsgi/com.raytheon.uf.common.dataplugin.satellite/utility/common_static/base/styleRules/satelliteImageryStyleRules.xml +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.satellite/utility/common_static/base/styleRules/satelliteImageryStyleRules.xml @@ -23,9 +23,6 @@ - Imager 11 micron IR - Imager 12 micron IR - Imager 13 micron (IR) Imager 3.9 micron IR Sounder 11.03 micron imagery Sounder 3.98 micron imagery @@ -46,6 +43,21 @@ + + + Imager 11 micron IR + Imager 12 micron IR + Imager 13 micron (IR) + Imager 13 micron IR + + + + 0 + 255 + + Sat/IR/CIRA (IR Default) + + Imager 6.7-6.5 micron IR (WV) @@ -440,6 +452,7 @@ N1P + DAA in @@ -470,6 +483,7 @@ NTP + DTA in @@ -536,4 +550,4 @@ - \ No newline at end of file + diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.tcg/src/com/raytheon/uf/common/dataplugin/tcg/TropicalCycloneGuidance.java b/edexOsgi/com.raytheon.uf.common.dataplugin.tcg/src/com/raytheon/uf/common/dataplugin/tcg/TropicalCycloneGuidance.java index 48efdb8f6d..1a23c0f952 100644 --- a/edexOsgi/com.raytheon.uf.common.dataplugin.tcg/src/com/raytheon/uf/common/dataplugin/tcg/TropicalCycloneGuidance.java +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.tcg/src/com/raytheon/uf/common/dataplugin/tcg/TropicalCycloneGuidance.java @@ -29,8 +29,6 @@ import javax.persistence.Table; import javax.persistence.Transient; import javax.persistence.UniqueConstraint; -import org.hibernate.annotations.Index; - import com.raytheon.uf.common.dataplugin.PluginDataObject; import com.raytheon.uf.common.dataplugin.annotations.DataURI; import com.raytheon.uf.common.dataplugin.annotations.NullString; @@ -61,23 +59,17 @@ import com.vividsolutions.jts.geom.Geometry; * Oct 15, 2013 2361 njensen Removed XML annotations * Jul 28, 2015 4360 rferrel Named unique constraint. Made productType and modelName non-nullable. * Jan 28, 2016 5286 tgurney Drop dataURI column and update unique constraint. + * Aug 04, 2016 5783 tgurney Add forecasttime to unique constraint * * * * @author jsanchez - * @version 1.0 */ @Entity @SequenceGenerator(initialValue = 1, name = PluginDataObject.ID_GEN, sequenceName = "tcgseq") @Table(name = "tcg", uniqueConstraints = { @UniqueConstraint(name = "uk_tcg_datauri_fields", columnNames = { - "refTime", "productType", "modelName", "latitude", "longitude", - "stationId" }) }) -/* - * Both refTime and forecastTime are included in the refTimeIndex since - * forecastTime is unlikely to be used. - */ -@org.hibernate.annotations.Table(appliesTo = "tcg", indexes = { @Index(name = "tcg_refTimeIndex", columnNames = { - "refTime", "forecastTime" }) }) + "refTime", "forecastTime", "productType", "modelName", "latitude", + "longitude", "stationId" }) }) @DynamicSerialize public class TropicalCycloneGuidance extends PersistablePluginDataObject implements ISpatialEnabled, IPointData { diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.tcs/src/com/raytheon/uf/common/dataplugin/tcs/TropicalCycloneSummary.java b/edexOsgi/com.raytheon.uf.common.dataplugin.tcs/src/com/raytheon/uf/common/dataplugin/tcs/TropicalCycloneSummary.java index bad0bcdf7f..9e1012f8dd 100644 --- a/edexOsgi/com.raytheon.uf.common.dataplugin.tcs/src/com/raytheon/uf/common/dataplugin/tcs/TropicalCycloneSummary.java +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.tcs/src/com/raytheon/uf/common/dataplugin/tcs/TropicalCycloneSummary.java @@ -30,8 +30,6 @@ import javax.persistence.Table; import javax.persistence.Transient; import javax.persistence.UniqueConstraint; -import org.hibernate.annotations.Index; - import com.raytheon.uf.common.dataplugin.PluginDataObject; import com.raytheon.uf.common.dataplugin.annotations.DataURI; import com.raytheon.uf.common.dataplugin.annotations.NullString; @@ -63,22 +61,17 @@ import com.vividsolutions.jts.geom.Geometry; * Jul 23, 2014 3410 bclement location changed to floats * Jul 28, 2015 4360 rferrel Named unique constraint. Made productType non-nullable. * Jan 27, 2016 5285 tgurney Remove dataURI column and update unique constraint. + * Aug 04, 2016 5783 tgurney Add forecasttime to unique constraint * * * * @author jsanchez - * @version 1.0 */ @Entity @SequenceGenerator(initialValue = 1, name = PluginDataObject.ID_GEN, sequenceName = "tcsseq") @Table(name = "tcs", uniqueConstraints = { @UniqueConstraint(name = "uk_tcs_datauri_fields", columnNames = { - "refTime", "productType", "latitude", "longitude", "stationId" }) }) -/* - * Both refTime and forecastTime are included in the refTimeIndex since - * forecastTime is unlikely to be used. - */ -@org.hibernate.annotations.Table(appliesTo = "tcs", indexes = { @Index(name = "tcs_refTimeIndex", columnNames = { - "refTime", "forecastTime" }) }) + "refTime", "forecastTime", "productType", "latitude", "longitude", + "stationId" }) }) @DynamicSerialize public class TropicalCycloneSummary extends PersistablePluginDataObject implements ISpatialEnabled, IPointData { diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.warning/utility/common_static/base/warngen/impactSevereWeatherStatement.vm b/edexOsgi/com.raytheon.uf.common.dataplugin.warning/utility/common_static/base/warngen/impactSevereWeatherStatement.vm index ac7683d35d..5de1c386eb 100755 --- a/edexOsgi/com.raytheon.uf.common.dataplugin.warning/utility/common_static/base/warngen/impactSevereWeatherStatement.vm +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.warning/utility/common_static/base/warngen/impactSevereWeatherStatement.vm @@ -1112,7 +1112,7 @@ This storm is producing large hail. SEEK SHELTER NOW inside a sturdy structure a This is a DANGEROUS SITUATION. These storms are producing widespread wind damage across !** ENTER LOCATION **!. SEEK SHELTER NOW inside a sturdy structure and stay away from windows. #else -This is a DANGEROUS SITUATION. This storm is producing widespread wind damage across !** ENTER LOCATION **!. sSek shelter now inside a sturdy structure and stay away from windows. +This is a DANGEROUS SITUATION. This storm is producing widespread wind damage across !** ENTER LOCATION **!. Seek shelter now inside a sturdy structure and stay away from windows. #end #end diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.warning/utility/common_static/base/warngen/impactTornadoWarning.vm b/edexOsgi/com.raytheon.uf.common.dataplugin.warning/utility/common_static/base/warngen/impactTornadoWarning.vm index 749e03fe4a..580fcfb485 100755 --- a/edexOsgi/com.raytheon.uf.common.dataplugin.warning/utility/common_static/base/warngen/impactTornadoWarning.vm +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.warning/utility/common_static/base/warngen/impactTornadoWarning.vm @@ -48,26 +48,26 @@ #set($windImpact = "") #set($extensive = "") #set($windHazard = "") -#set($windTag = "<50mph") +#set($windTag = "<50MPH") #if(${list.contains(${bullets}, "60mphWind")}) #set($windThreat = "damaging winds in excess of 60 mph") #set($windHazard = "60 mph wind gusts") #set($windSpeed = 60) - #set($windTag = "60mph") + #set($windTag = "60MPH") ## #set($windImpact = "large tree limbs broken off partially blocking roads#commaOrEllipsis()damaging buildings#commaOrEllipsis()homes and downing power lines.") #end #if(${list.contains(${bullets}, "70mphWind")}) #set($windThreat = "destructive winds in excess of 70 mph") #set($windHazard = "70 mph wind gusts") #set($windSpeed = 70) - #set($windTag = "70mph") + #set($windTag = "70MPH") ## #set($windImpact = "trees to be uprooted blocking roads#commaOrEllipsis()damaging buildings#commaOrEllipsis()homes and downing power lines.") #end #if(${list.contains(${bullets}, "80mphWind")}) #set($windThreat = "destructive winds in excess of 80 mph") #set($windHazard = "80 mph wind gusts") #set($windSpeed = 80) - #set($windTag = "80mph") + #set($windTag = "80MPH") #set($extensive = "extensive ") ## #set($windImpact = "trees to be uprooted blocking roads#commaOrEllipsis()damaging buildings#commaOrEllipsis()homes and downing power lines.") #end @@ -75,7 +75,7 @@ #set($windThreat = "extreme damaging winds in excess of 90 mph") #set($windHazard = "90 mph wind gusts") #set($windSpeed = 90) - #set($windTag = "90mph") + #set($windTag = "90MPH") #set($extensive = "extensive ") ## #set($windImpact ="trees to be uprooted blocking roads#commaOrEllipsis()damaging buildings#commaOrEllipsis()homes and downing power lines.") #end @@ -83,7 +83,7 @@ #set($windThreat = "extreme damaging winds in excess of 100 mph") #set($windHazard = "100 mph wind gusts") #set($windSpeed = 100) - #set($windTag = "100mph") + #set($windTag = "100MPH") #set($extensive = "extensive ") ## #set($windImpact ="trees to be uprooted blocking roads#commaOrEllipsis()damaging buildings#commaOrEllipsis()homes and downing power lines.") #end diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.warning/utility/common_static/base/warngen/significantWeatherAdvisory.vm b/edexOsgi/com.raytheon.uf.common.dataplugin.warning/utility/common_static/base/warngen/significantWeatherAdvisory.vm index 2996aca320..711ef51966 100755 --- a/edexOsgi/com.raytheon.uf.common.dataplugin.warning/utility/common_static/base/warngen/significantWeatherAdvisory.vm +++ b/edexOsgi/com.raytheon.uf.common.dataplugin.warning/utility/common_static/base/warngen/significantWeatherAdvisory.vm @@ -20,11 +20,11 @@ #if(${stormType} == "line") #set($report = "strong thunderstorms were reported") #set($reportType1 = "strong thunderstorms") - #set($reportType2 = "these storms were") + #set($reportType2 = "These storms were") #else #set($report = "a strong thunderstorm was reported") #set($reportType1 = "a strong thunderstorm") - #set($reportType2 = "this storm was") + #set($reportType2 = "This storm was") #end #set($windThreat = "") #set($hailThreat = "") diff --git a/edexOsgi/com.raytheon.uf.common.gfe.ifpclient/META-INF/MANIFEST.MF b/edexOsgi/com.raytheon.uf.common.gfe.ifpclient/META-INF/MANIFEST.MF index e507de6c70..bf0fa15d15 100644 --- a/edexOsgi/com.raytheon.uf.common.gfe.ifpclient/META-INF/MANIFEST.MF +++ b/edexOsgi/com.raytheon.uf.common.gfe.ifpclient/META-INF/MANIFEST.MF @@ -13,6 +13,7 @@ Require-Bundle: com.raytheon.uf.common.dataplugin.gfe;bundle-version="1.15.0", com.raytheon.uf.common.site;bundle-version="1.14.0", com.raytheon.uf.common.status;bundle-version="1.15.0", com.raytheon.uf.common.serialization;bundle-version="1.15.1", - com.raytheon.uf.common.time;bundle-version="1.15.0" + com.raytheon.uf.common.time;bundle-version="1.15.0", + org.geotools;bundle-version="10.5.0" Export-Package: com.raytheon.uf.common.gfe.ifpclient, com.raytheon.uf.common.gfe.ifpclient.exception diff --git a/edexOsgi/com.raytheon.uf.common.gfe.ifpclient/src/com/raytheon/uf/common/gfe/ifpclient/IFPClient.java b/edexOsgi/com.raytheon.uf.common.gfe.ifpclient/src/com/raytheon/uf/common/gfe/ifpclient/IFPClient.java index 91f4e09d96..bec6bfee25 100644 --- a/edexOsgi/com.raytheon.uf.common.gfe.ifpclient/src/com/raytheon/uf/common/gfe/ifpclient/IFPClient.java +++ b/edexOsgi/com.raytheon.uf.common.gfe.ifpclient/src/com/raytheon/uf/common/gfe/ifpclient/IFPClient.java @@ -37,6 +37,7 @@ import com.raytheon.uf.common.dataplugin.gfe.db.objects.ParmID; import com.raytheon.uf.common.dataplugin.gfe.discrete.DiscreteDefinition; import com.raytheon.uf.common.dataplugin.gfe.discrete.DiscreteKey; import com.raytheon.uf.common.dataplugin.gfe.reference.ReferenceData; +import com.raytheon.uf.common.dataplugin.gfe.reference.ReferenceData.CoordinateType; import com.raytheon.uf.common.dataplugin.gfe.reference.ReferenceID; import com.raytheon.uf.common.dataplugin.gfe.request.AbstractGfeRequest; import com.raytheon.uf.common.dataplugin.gfe.request.CommitGridsRequest; @@ -122,6 +123,7 @@ import com.raytheon.uf.common.time.TimeRange; * Feb 05, 2016 #5242 dgilling Replace calls to deprecated Localization APIs. * Feb 24, 2016 #5129 dgilling Change how PyFPClient is constructed. * Apr 28, 2016 #5618 randerso Fix getGridData to handle "chunked" response. + * Jun 30, 2016 #5723 dgilling Add safety check to saveReferenceData. * * * @@ -691,6 +693,16 @@ public class IFPClient { LocalizationContext ctx = pm.getContext(LocalizationType.COMMON_STATIC, LocalizationLevel.USER); for (ReferenceData refData : referenceData) { + /* + * A safety check to ensure our XML-format ReferenceData has only + * either the polygons or query field populated. + */ + if (!refData.isQuery()) { + refData.getPolygons(CoordinateType.LATLON); + } else { + refData.setPolygons(null, CoordinateType.LATLON); + } + ILocalizationFile lf = pm.getLocalizationFile(ctx, EDIT_AREAS_DIR + IPathManager.SEPARATOR + refData.getId().getName() + ".xml"); diff --git a/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/GridCoverage.java b/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/GridCoverage.java index e784ae6cee..3c00d176ed 100644 --- a/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/GridCoverage.java +++ b/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/GridCoverage.java @@ -88,6 +88,7 @@ import com.vividsolutions.jts.geom.Geometry; * Oct 01, 2015 4868 rjpeter Reject subGrids that don't meet minimum * coverage percent. * Feb 26, 2016 5414 rjpeter Fix subgrids along boundary. + * Jun 24, 2016 ASM18440 dfriedman Fix spatial tolerance for degree values. * * * @author bphillip @@ -109,7 +110,9 @@ public abstract class GridCoverage extends PersistableDataObject protected static final String SUBGRID_TOKEN = "SubGrid-"; - public static final double SPATIAL_TOLERANCE = 0.1; + public static final double SPATIAL_TOLERANCE_KM = 0.1; + + public static final double SPATIAL_TOLERANCE_DEG = 0.0025; /** The id for this grid. This value is generated in the initialize method **/ @Id @@ -887,19 +890,34 @@ public abstract class GridCoverage extends PersistableDataObject if (firstGridPointCorner != other.firstGridPointCorner) { return false; } - if (Math.abs(dx - other.dx) > SPATIAL_TOLERANCE) { + double spacingUnitTolerance = getSpacingUnitTolerance(); + if (Math.abs(dx - other.dx) > spacingUnitTolerance) { return false; - } else if (Math.abs(dy - other.dy) > SPATIAL_TOLERANCE) { + } else if (Math.abs(dy - other.dy) > spacingUnitTolerance) { return false; - } else if (Math.abs(la1 - other.la1) > SPATIAL_TOLERANCE) { + } else if (Math.abs(la1 - other.la1) > SPATIAL_TOLERANCE_DEG) { return false; } else if (Math.abs(MapUtil.correctLon(lo1) - - MapUtil.correctLon(other.lo1)) > SPATIAL_TOLERANCE) { + - MapUtil.correctLon(other.lo1)) > SPATIAL_TOLERANCE_DEG) { return false; } return true; } + public double getSpacingUnitTolerance() { + if ("degree".equals(spacingUnit)) { + return SPATIAL_TOLERANCE_DEG; + } else { + Unit spacingUnitObj = Unit.valueOf(spacingUnit); + if (spacingUnitObj.isCompatible(SI.KILOMETER)) { + UnitConverter converter = SI.KILOMETER.getConverterTo(spacingUnitObj); + return converter.convert(SPATIAL_TOLERANCE_KM); + } else { + return SPATIAL_TOLERANCE_KM; + } + } + } + /** * Unique key containing the spatial attributes of this coverage. * diff --git a/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/LambertConformalGridCoverage.java b/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/LambertConformalGridCoverage.java index 9cfd99d02d..6a1984b98b 100644 --- a/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/LambertConformalGridCoverage.java +++ b/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/LambertConformalGridCoverage.java @@ -51,6 +51,7 @@ import com.raytheon.uf.common.serialization.annotations.DynamicSerializeElement; * Jan 17, 2014 2125 rjpeter Removed invalid @Table annotation. * Jun 05, 2014 3243 bsteffen Remove deprecated lambert conformal call. * Mar 04, 2015 3959 rjpeter Update for grid based subgridding. + * Jun 24, 2016 ASM18440 dfriedman Fix spatial tolerance for degree values. * * * @author bphillip @@ -269,11 +270,11 @@ public class LambertConformalGridCoverage extends GridCoverage { public boolean spatialEquals(GridCoverage other) { if (super.spatialEquals(other)) { LambertConformalGridCoverage otherLambert = (LambertConformalGridCoverage) other; - if (Math.abs(latin1 - otherLambert.latin1) > SPATIAL_TOLERANCE) { + if (Math.abs(latin1 - otherLambert.latin1) > SPATIAL_TOLERANCE_DEG) { return false; - } else if (Math.abs(latin2 - otherLambert.latin2) > SPATIAL_TOLERANCE) { + } else if (Math.abs(latin2 - otherLambert.latin2) > SPATIAL_TOLERANCE_DEG) { return false; - } else if (Math.abs(lov - otherLambert.lov) > SPATIAL_TOLERANCE) { + } else if (Math.abs(lov - otherLambert.lov) > SPATIAL_TOLERANCE_DEG) { return false; } return true; diff --git a/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/MercatorGridCoverage.java b/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/MercatorGridCoverage.java index d04a24feb3..5eda11a3e8 100644 --- a/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/MercatorGridCoverage.java +++ b/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/MercatorGridCoverage.java @@ -55,6 +55,7 @@ import com.vividsolutions.jts.geom.Coordinate; * 09/10/2012 DR 15270 D. Friedman Fix subgrid model name handling. * Jan 17, 2014 2125 rjpeter Removed invalid @Table annotation. * Mar 04, 2015 3959 rjpeter Update for grid based subgridding. + * Jun 24, 2016 ASM18440 dfriedman Fix spatial tolerance for degree values. * * * @author bphillip @@ -338,7 +339,7 @@ public class MercatorGridCoverage extends GridCoverage { public boolean spatialEquals(GridCoverage other) { if (super.spatialEquals(other)) { MercatorGridCoverage otherMercator = (MercatorGridCoverage) other; - if (Math.abs(latin - otherMercator.latin) > SPATIAL_TOLERANCE) { + if (Math.abs(latin - otherMercator.latin) > SPATIAL_TOLERANCE_DEG) { return false; } return true; diff --git a/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/PolarStereoGridCoverage.java b/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/PolarStereoGridCoverage.java index 75385bbe9a..bcdc41f368 100644 --- a/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/PolarStereoGridCoverage.java +++ b/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/PolarStereoGridCoverage.java @@ -51,6 +51,7 @@ import com.raytheon.uf.common.serialization.annotations.DynamicSerializeElement; * 09/10/2012 DR 15270 D. Friedman Fix subgrid model name handling. * Jan 17, 2014 2125 rjpeter Removed invalid @Table annotation. * Mar 04, 2015 3959 rjpeter Update for grid based subgridding. + * Jun 24, 2016 ASM18440 dfriedman Fix spatial tolerance for degree values. * * * @author bphillip @@ -268,9 +269,9 @@ public class PolarStereoGridCoverage extends GridCoverage { public boolean spatialEquals(GridCoverage other) { if (super.spatialEquals(other)) { PolarStereoGridCoverage otherPolar = (PolarStereoGridCoverage) other; - if (Math.abs(lad - otherPolar.lad) > SPATIAL_TOLERANCE) { + if (Math.abs(lad - otherPolar.lad) > SPATIAL_TOLERANCE_DEG) { return false; - } else if (Math.abs(lov - otherPolar.lov) > SPATIAL_TOLERANCE) { + } else if (Math.abs(lov - otherPolar.lov) > SPATIAL_TOLERANCE_DEG) { return false; } return true; diff --git a/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/StereographicGridCoverage.java b/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/StereographicGridCoverage.java index a2fd04b300..aee1c0be3c 100644 --- a/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/StereographicGridCoverage.java +++ b/edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/StereographicGridCoverage.java @@ -46,6 +46,7 @@ import com.raytheon.uf.common.serialization.annotations.DynamicSerializeElement; * ------------ ---------- ----------- -------------------------- * Apr 7, 2010 #4473 rjpeter Initial creation * Mar 04, 2015 3959 rjpeter Update for grid based subgridding. + * Jun 24, 2016 ASM18440 dfriedman Fix spatial tolerance for degree values. * * * @author rjpeter @@ -151,9 +152,9 @@ public class StereographicGridCoverage extends GridCoverage { public boolean spatialEquals(GridCoverage other) { if (super.spatialEquals(other)) { StereographicGridCoverage otherStereo = (StereographicGridCoverage) other; - if (Math.abs(lad - otherStereo.lad) > SPATIAL_TOLERANCE) { + if (Math.abs(lad - otherStereo.lad) > SPATIAL_TOLERANCE_DEG) { return false; - } else if (Math.abs(lov - otherStereo.lov) > SPATIAL_TOLERANCE) { + } else if (Math.abs(lov - otherStereo.lov) > SPATIAL_TOLERANCE_DEG) { return false; } return true; diff --git a/edexOsgi/com.raytheon.uf.edex.gridcoverage/src/com/raytheon/uf/edex/gridcoverage/GetGridCoverageHandler.java b/edexOsgi/com.raytheon.uf.edex.gridcoverage/src/com/raytheon/uf/edex/gridcoverage/GetGridCoverageHandler.java index 7c007fc7f4..8d55bcc51a 100644 --- a/edexOsgi/com.raytheon.uf.edex.gridcoverage/src/com/raytheon/uf/edex/gridcoverage/GetGridCoverageHandler.java +++ b/edexOsgi/com.raytheon.uf.edex.gridcoverage/src/com/raytheon/uf/edex/gridcoverage/GetGridCoverageHandler.java @@ -51,6 +51,7 @@ import com.raytheon.uf.edex.database.dao.DaoConfig; * Mar 07, 2013 1771 bsteffen fix gridcoverage duplicate checks. * Mar 20, 2013 2910 bsteffen Commit transaction within cluster locks. * May 10, 2016 5642 rjpeter Remove transaction nesting. + * Jun 24, 2016 ASM18440 dfriedman Fix spatial tolerance for degree values. * * * @author bsteffen @@ -107,21 +108,22 @@ public class GetGridCoverageHandler implements trans = sess.beginTransaction(); Criteria crit = sess.createCriteria(coverage.getClass()); + double spacingUnitTolerance = coverage.getSpacingUnitTolerance(); crit.add(Restrictions.eq("nx", coverage.getNx())); crit.add(Restrictions.eq("ny", coverage.getNy())); crit.add(Restrictions.between("dx", coverage.getDx() - - GridCoverage.SPATIAL_TOLERANCE, coverage.getDx() - + GridCoverage.SPATIAL_TOLERANCE)); + - spacingUnitTolerance, coverage.getDx() + + spacingUnitTolerance)); crit.add(Restrictions.between("dy", coverage.getDy() - - GridCoverage.SPATIAL_TOLERANCE, coverage.getDy() - + GridCoverage.SPATIAL_TOLERANCE)); + - spacingUnitTolerance, coverage.getDy() + + spacingUnitTolerance)); crit.add(Restrictions.between("la1", coverage.getLa1() - - GridCoverage.SPATIAL_TOLERANCE, coverage.getLa1() - + GridCoverage.SPATIAL_TOLERANCE)); + - GridCoverage.SPATIAL_TOLERANCE_DEG, coverage.getLa1() + + GridCoverage.SPATIAL_TOLERANCE_DEG)); crit.add(Restrictions.between("lo1", coverage.getLo1() - - GridCoverage.SPATIAL_TOLERANCE, coverage.getLo1() - + GridCoverage.SPATIAL_TOLERANCE)); + - GridCoverage.SPATIAL_TOLERANCE_DEG, coverage.getLo1() + + GridCoverage.SPATIAL_TOLERANCE_DEG)); List vals = crit.list(); for (Object val : vals) { @@ -142,11 +144,11 @@ public class GetGridCoverageHandler implements crit.add(Restrictions.eq("nx", coverage.getNx())); crit.add(Restrictions.eq("ny", coverage.getNy())); crit.add(Restrictions.between("dx", coverage.getDx() - - GridCoverage.SPATIAL_TOLERANCE, coverage.getDx() - + GridCoverage.SPATIAL_TOLERANCE)); + - spacingUnitTolerance, coverage.getDx() + + spacingUnitTolerance)); crit.add(Restrictions.between("dy", coverage.getDy() - - GridCoverage.SPATIAL_TOLERANCE, coverage.getDy() - + GridCoverage.SPATIAL_TOLERANCE)); + - spacingUnitTolerance, coverage.getDy() + + spacingUnitTolerance)); vals = crit.list(); for (Object val : vals) { if (((GridCoverage) val).spatialEquals(coverage)) { diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.fssobs/src/com/raytheon/uf/edex/plugin/fssobs/FSSObsDataTransform.java b/edexOsgi/com.raytheon.uf.edex.plugin.fssobs/src/com/raytheon/uf/edex/plugin/fssobs/FSSObsDataTransform.java index 2ee96fb01f..d7f682f58d 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.fssobs/src/com/raytheon/uf/edex/plugin/fssobs/FSSObsDataTransform.java +++ b/edexOsgi/com.raytheon.uf.edex.plugin.fssobs/src/com/raytheon/uf/edex/plugin/fssobs/FSSObsDataTransform.java @@ -46,6 +46,7 @@ import com.raytheon.uf.edex.decodertools.time.TimeTools; * Jul 23, 2014 3410 bclement location changed to floats * Sep 18, 2015 3873 skorolev Fixed assigning timeObs for maritime record. * Dec 02, 2015 3873 dhladky Added missing point data params. + * Jul 08, 2016 5733 tgurney Convert metar sea level pressure to mbar * * * @@ -343,7 +344,10 @@ public class FSSObsDataTransform { fssr.setTimeObs(pdv.getCalendar(TIME_OBS)); fssr.setRefHour(TimeTools.roundToNearestHour(fssr.getTimeObs())); // in mbar - fssr.setSeaLevelPress(pdv.getNumber(SEA_LEVEL_PRESS).floatValue()); + float seaLevelPress = pdv.getNumber(SEA_LEVEL_PRESS).floatValue(); + if (seaLevelPress != MISSING) { + fssr.setSeaLevelPress(seaLevelPress / 100.0f); + } // in mmHg fssr.setPressureAltimeter(pdv.getNumber(ALTIMETER).floatValue()); fssr.setPressChange3Hour(pdv.getNumber(PRESS_CHANGE3_HOUR).floatValue()); diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.mcidas/utility/edex_static/base/satellite/mcidas/areaNames.xml b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.mcidas/utility/edex_static/base/satellite/mcidas/areaNames.xml index 06dbd64bbe..acaee20074 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.mcidas/utility/edex_static/base/satellite/mcidas/areaNames.xml +++ b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.mcidas/utility/edex_static/base/satellite/mcidas/areaNames.xml @@ -22,5 +22,8 @@ 9056GOES-East-West 9059GOES-East-West 9062GOES-East-West + 5931HIMAWARI-8 Full Disk + 2101SSMIS + 2100WINDSAT \ No newline at end of file diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.mcidas/utility/edex_static/base/satellite/mcidas/creatingEntities.xml b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.mcidas/utility/edex_static/base/satellite/mcidas/creatingEntities.xml index 50da58da1c..7380931fdd 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.mcidas/utility/edex_static/base/satellite/mcidas/creatingEntities.xml +++ b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.mcidas/utility/edex_static/base/satellite/mcidas/creatingEntities.xml @@ -21,6 +21,7 @@ + 3SOUNDER 9COMP 10SOUNDER 12GMS diff --git a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.mcidas/utility/edex_static/base/satellite/mcidas/physicalElements.xml b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.mcidas/utility/edex_static/base/satellite/mcidas/physicalElements.xml index 5e576ec3c5..a95897ff02 100644 --- a/edexOsgi/com.raytheon.uf.edex.plugin.satellite.mcidas/utility/edex_static/base/satellite/mcidas/physicalElements.xml +++ b/edexOsgi/com.raytheon.uf.edex.plugin.satellite.mcidas/utility/edex_static/base/satellite/mcidas/physicalElements.xml @@ -61,6 +61,12 @@ + + + + + + diff --git a/edexOsgi/com.raytheon.uf.tools.gfesuite/hti/bin/make_hti.sh b/edexOsgi/com.raytheon.uf.tools.gfesuite/hti/bin/make_hti.sh index 53daececc9..b045da7553 100644 --- a/edexOsgi/com.raytheon.uf.tools.gfesuite/hti/bin/make_hti.sh +++ b/edexOsgi/com.raytheon.uf.tools.gfesuite/hti/bin/make_hti.sh @@ -3,9 +3,9 @@ # Tested Operating System(s): RHEL 3, 4, 5, 6 # Tested Run Level(s): 3, 5 # Shell Used: BASH shell -# Original Author(s): Douglas.Gaer@noaa.gov +# Original Author(s): Joseph.Maloney@noaa.gov # File Creation Date: 01/27/2009 -# Date Last Modified: 02/20/2015 +# Date Last Modified: 06/15/2016 # # Contributors: # Joe Maloney (MFL), Pablo Santos (MFL) @@ -36,6 +36,10 @@ # 20 FEB 2015 - jcm - modified ifpIMAGE line to use ssh -x px2f; fixed # LOG_FILE at end of script; corrected $site variable # for kml rsync. +# 10 JUN 2016 - jcm - brought back ghls_active.txt because apparently +# NIDS is using this file in their KML mosiacking +# code instead of just looking at the timestamps +# of the KML files themselves. # ######################################################################## # CHECK TO SEE IF SITE ID WAS PASSED AS ARGUMENT @@ -128,6 +132,39 @@ ssh -x px2f "unset DISPLAY; ${GFEBINdir}/runProcedure -site ${SITE} -n TCImpactG # Create legends for KML ${HTI_HOME}/bin/kml_legend.sh +######################################################################## +# 2016-06-10 Because it is too challenging for NIDS / IDG to modify +# their script to stop using a file that was discontinued after the 2014 +# season, and instead check the age of the kml files directly, and NCO +# will not allow them to divert ONE person to do this the right way, +# every coastal WFO will now have to send up the old ghls_active file +# (even though the ghls is LONG DEAD now) +######################################################################## + +# get storm number from VTEC in TCV +stormnum=`grep "/O..........................T....Z-......T....Z/" /awips2/edex/data/fxa/trigger/*TCV${SITE} | head -1|cut -c 20-21` +# get storm name from header in TCV +stormname=`grep LOCAL /awips2/edex/data/fxa/trigger/*TCV${SITE} | head -1 | sed -e "s/ LOCAL .*//"` +# get two-digit year +stormyr=`date +%y` + +## TEST +#echo "STORM NAME IS: $stormname" +#echo "STORM NUMBER AND YEAR: ${stormnum}${stormyr}" +## TEST + +# Trigger the Web side PHP script to display the ACTIVE GHLS logo +date +%s > ${PRODUCTdir}/ghls_active.txt +echo ${stormnum} >> ${PRODUCTdir}/ghls_active.txt +echo ${stormname} >> ${PRODUCTdir}/ghls_active.txt +echo ${stormyr} >> ${PRODUCTdir}/ghls_active.txt + +######################################################################## +# need to rename two kml's for mosaic code to work +cp ${PRODUCTdir}/StormSurgeThreat.kml.txt ${PRODUCTdir}/CoastalThreat.kml.txt +cp ${PRODUCTdir}/FloodingRainThreat.kml.txt ${PRODUCTdir}/InlandThreat.kml.txt +######################################################################## + echo "Copying image and kml files to LDAD for WEB processing" >> $LOG_FILE /usr/bin/ssh -o stricthostkeychecking=no -x ${LDADuser}@${LDADserver} mkdir -p ${LDAD_DATA} &> /dev/null /usr/bin/rsync -av --force --progress --stats -e "/usr/bin/ssh -o stricthostkeychecking=no -x" ${PRODUCTdir}/*.txt ${PRODUCTdir}/*.png ${LDADuser}@${LDADserver}:/${LDAD_DATA}/. diff --git a/installCAVE.sh b/installCAVE.sh index e362e64313..61d20b0881 100755 --- a/installCAVE.sh +++ b/installCAVE.sh @@ -15,12 +15,17 @@ if [ ! -f /etc/yum.repos.d/awips2.repo ]; then echo '' echo 'Downloading awips2repo yum file to /etc/yum.repos.d/awips2.repo' echo '' - wget -O /etc/yum.repos.d/awips2.repo http://www.unidata.ucar.edu/software/awips2/doc/awips2.repo - echo "Running 'yum clean all'" - yum clean all - echo '' + if [[ $(grep "release 7" /etc/redhat-release) ]]; then + wget -O /etc/yum.repos.d/awips2.repo http://www.unidata.ucar.edu/software/awips2/doc/el7.repo + else + wget -O /etc/yum.repos.d/awips2.repo http://www.unidata.ucar.edu/software/awips2/doc/awips2.repo + fi fi +echo "Running 'yum clean all'" +yum clean all +echo '' + # # If CAVE is not installed them make sure /awips2/cave/ # and /awips2/alertviz/ are removed before installing. diff --git a/installEDEX.sh b/installEDEX.sh index 938122fbf1..c9aaca60e5 100755 --- a/installEDEX.sh +++ b/installEDEX.sh @@ -9,11 +9,17 @@ # # Download yum repo file from Unidata # + + if [ ! -f /etc/yum.repos.d/awips2.repo ]; then echo '' echo 'Downloading awips2repo yum file to /etc/yum.repos.d/awips2.repo' echo '' - wget -O /etc/yum.repos.d/awips2.repo http://www.unidata.ucar.edu/software/awips2/doc/awips2.repo + if [[ $(grep "release 7" /etc/redhat-release) ]]; then + wget -O /etc/yum.repos.d/awips2.repo http://www.unidata.ucar.edu/software/awips2/doc/el7.repo + else + wget -O /etc/yum.repos.d/awips2.repo http://www.unidata.ucar.edu/software/awips2/doc/awips2.repo + fi fi # diff --git a/pythonPackages/dynamicserialize/dstypes/com/raytheon/uf/common/activetable/ActiveTableMode.py b/pythonPackages/dynamicserialize/dstypes/com/raytheon/uf/common/activetable/ActiveTableMode.py index 068ebf788f..e35a83feda 100644 --- a/pythonPackages/dynamicserialize/dstypes/com/raytheon/uf/common/activetable/ActiveTableMode.py +++ b/pythonPackages/dynamicserialize/dstypes/com/raytheon/uf/common/activetable/ActiveTableMode.py @@ -19,10 +19,11 @@ ## # File generated against equivalent DynamicSerialize Java class +# Jul 27, 2016 #5769 randerso Fixed __str__ method class ActiveTableMode(object): def __init__(self): self.value = None def __str__(self): - return repr(self.value) \ No newline at end of file + return str(self.value) \ No newline at end of file diff --git a/rpms/awips2.core/Installer.localization/component.spec b/rpms/awips2.core/Installer.localization/component.spec index 0eec8dfe20..b19bb23356 100644 --- a/rpms/awips2.core/Installer.localization/component.spec +++ b/rpms/awips2.core/Installer.localization/component.spec @@ -41,18 +41,61 @@ if [ -d ${RPM_BUILD_ROOT} ]; then fi %build -# Build all WFO site localization Map Scales (Regional.xml, States.xml, WFO.xml) +# Build all WFO site localization Map Scales (Regional.xml and WFO.xml) BUILD_DIR=%{_baseline_workspace}/rpms/awips2.core/Installer.localization/ UTIL=%{_baseline_workspace}/localization/utility -file=$BUILD_DIR/wfo.dat +#file=$BUILD_DIR/wfo.dat +file=$BUILD_DIR/coords.dat +regional=$BUILD_DIR/coords_regional.dat +# + for site in $(cat $file |cut -c -3) do - lat=$(cat $file |grep $site | cut -f9) - lon=$(cat $file |grep $site | cut -f10) + lat=$(cat $file |grep $site | cut -d"," -f2 | tr -d '[[:space:]]') + lon=$(cat $file |grep $site | cut -d"," -f3 | tr -d '[[:space:]]') + + # + lowx=$(cat $file |grep $site | cut -d"," -f4 | tr -d '[[:space:]]') + highx=$(cat $file |grep $site | cut -d"," -f5 | tr -d '[[:space:]]') + lowy=$(cat $file |grep $site | cut -d"," -f6 | tr -d '[[:space:]]') + highy=$(cat $file |grep $site | cut -d"," -f7 | tr -d '[[:space:]]') + minx=$(cat $file |grep $site | cut -d"," -f8 | tr -d '[[:space:]]') + maxx=$(cat $file |grep $site | cut -d"," -f9 | tr -d '[[:space:]]') + miny=$(cat $file |grep $site | cut -d"," -f10 | tr -d '[[:space:]]') + maxy=$(cat $file |grep $site | cut -d"," -f11 | tr -d '[[:space:]]') + # CAVE CAVE_DIR=$UTIL/cave_static/site/$site mkdir -p $CAVE_DIR cp -R $BUILD_DIR/utility/cave_static/* $CAVE_DIR + + grep -rl 'LOWX' $CAVE_DIR/bundles/scales/WFO.xml | xargs sed -i 's/LOWX/'$lowx'/g' + grep -rl 'HIGHX' $CAVE_DIR/bundles/scales/WFO.xml | xargs sed -i 's/HIGHX/'$highx'/g' + grep -rl 'LOWY' $CAVE_DIR/bundles/scales/WFO.xml | xargs sed -i 's/LOWY/'$lowy'/g' + grep -rl 'HIGHY' $CAVE_DIR/bundles/scales/WFO.xml | xargs sed -i 's/HIGHY/'$highy'/g' + grep -rl 'MINX' $CAVE_DIR/bundles/scales/WFO.xml | xargs sed -i 's/MINX/'$minx'/g' + grep -rl 'MAXX' $CAVE_DIR/bundles/scales/WFO.xml | xargs sed -i 's/MAXX/'$maxx'/g' + grep -rl 'MINY' $CAVE_DIR/bundles/scales/WFO.xml | xargs sed -i 's/MINY/'$miny'/g' + grep -rl 'MAXY' $CAVE_DIR/bundles/scales/WFO.xml | xargs sed -i 's/MAXY/'$maxy'/g' + + lowx=$(cat $regional |grep $site | cut -d"," -f4 | tr -d '[[:space:]]') + highx=$(cat $regional |grep $site | cut -d"," -f5 | tr -d '[[:space:]]') + lowy=$(cat $regional |grep $site | cut -d"," -f6 | tr -d '[[:space:]]') + highy=$(cat $regional |grep $site | cut -d"," -f7 | tr -d '[[:space:]]') + minx=$(cat $regional |grep $site | cut -d"," -f8 | tr -d '[[:space:]]') + maxx=$(cat $regional |grep $site | cut -d"," -f9 | tr -d '[[:space:]]') + miny=$(cat $regional |grep $site | cut -d"," -f10 | tr -d '[[:space:]]') + maxy=$(cat $regional |grep $site | cut -d"," -f11 | tr -d '[[:space:]]') + + grep -rl 'LOWX' $CAVE_DIR/bundles/scales/Regional.xml | xargs sed -i 's/LOWX/'$lowx'/g' + grep -rl 'HIGHX' $CAVE_DIR/bundles/scales/Regional.xml | xargs sed -i 's/HIGHX/'$highx'/g' + grep -rl 'LOWY' $CAVE_DIR/bundles/scales/Regional.xml | xargs sed -i 's/LOWY/'$lowy'/g' + grep -rl 'HIGHY' $CAVE_DIR/bundles/scales/Regional.xml | xargs sed -i 's/HIGHY/'$highy'/g' + grep -rl 'MINX' $CAVE_DIR/bundles/scales/Regional.xml | xargs sed -i 's/MINX/'$minx'/g' + grep -rl 'MAXX' $CAVE_DIR/bundles/scales/Regional.xml | xargs sed -i 's/MAXX/'$maxx'/g' + grep -rl 'MINY' $CAVE_DIR/bundles/scales/Regional.xml | xargs sed -i 's/MINY/'$miny'/g' + grep -rl 'MAXY' $CAVE_DIR/bundles/scales/Regional.xml | xargs sed -i 's/MAXY/'$maxy'/g' + grep -rl 'XXX' $CAVE_DIR | xargs sed -i 's/XXX/'$site'/g' grep -rl 'LATITUDE' $CAVE_DIR | xargs sed -i 's/LATITUDE/'$lat'/g' grep -rl 'LONGITUDE' $CAVE_DIR | xargs sed -i 's/LONGITUDE/'$lon'/g' diff --git a/rpms/awips2.core/Installer.localization/coords.dat b/rpms/awips2.core/Installer.localization/coords.dat new file mode 100644 index 0000000000..5445e67cb2 --- /dev/null +++ b/rpms/awips2.core/Installer.localization/coords.dat @@ -0,0 +1,120 @@ +PBZ,40.53195,-80.21805999999998,0,12856,0,9999,-9370161.913130851,-8470161.913130851,4588193.372289133,5288193.372289133 +BOX,41.95556,-71.13472,0,12856,0,9999,-8360104.28381374,-7460104.28381374,4798742.350511885,5498742.350511885 +EAX,38.81,-94.26389,0,12856,0,9999,-1.0932043088072142E7,-1.0032043088072142E7,4339407.643327768,5039407.643327768 +SLC,40.77195,-111.955,0,12856,0,9999,-1.2899275474681946E7,-1.1999275474681946E7,4623369.937995336,5323369.937995336 +TSA,36.14861,-95.86111,0,12856,0,9999,-1.1109652232582627E7,-1.0209652232582627E7,3966409.1300783334,4666409.130078333 +TOP,39.07223,-95.63056,0,12856,0,9999,-1.1084015320781566E7,-1.0184015320781566E7,4376898.052242491,5076898.052242491 +ICT,37.655,-97.44305,0,12856,0,9999,-1.128556225754282E7,-1.038556225754282E7,4175895.6733279685,4875895.673327968 +DDC,37.76056,-99.96861,0,12856,0,9999,-1.156640181064753E7,-1.066640181064753E7,4190732.6866962407,4890732.686696241 +GLD,39.36611,-101.70083,0,12856,0,9999,-1.1759022809823569E7,-1.0859022809823569E7,4419079.324964198,5119079.324964198 +MPX,44.84916,-93.56528,0,12856,0,9999,-1.0854358408161752E7,-9954358.408161752,5241743.148552933,5941743.148552933 +DLH,46.83694000000001,-92.21028,0,12856,0,9999,-1.0703683866888972E7,-9803683.866888972,5559092.097372879,6259092.097372879 +BIS,46.77195,-100.75944,0,12856,0,9999,-1.1654341255278343E7,-1.0754341255278343E7,5548534.144023035,6248534.144023035 +GID,40.6475,-98.38444,0,12856,0,9999,-1.1390243812088048E7,-1.0490243812088048E7,4605113.630413384,5305113.630413384 +FWD,32.83416,-97.29805,0,12856,0,9999,-1.1269438413642783E7,-1.0369438413642783E7,3519117.021733404,4219117.021733404 +OUN,35.23694,-97.46083,0,12856,0,9999,-1.1287539374401737E7,-1.0387539374401737E7,3841582.4244286334,4541582.424428633 +LIX,30.33722,-89.82528000000002,0,12856,0,9999,-1.0438474434464194E7,-9538474.434464194,3193128.761097869,3893128.761097869 +CTP,40.79139,-77.86360999999998,0,12856,0,9999,-9108349.607817423,-8208349.607817423,4626224.792077845,5326224.792077845 +PHI,40.01333,-74.8175,0,12856,0,9999,-8769625.455111574,-7869625.455111575,4512607.269811037,5212607.269811037 +OKX,40.86556,-72.86499999999998,0,12856,0,9999,-8552509.557078287,-7652509.557078288,4637124.686551023,5337124.686551023 +BOI,43.56723,-116.21139,0,12856,0,9999,-1.3372581460459098E7,-1.2472581460459098E7,5042865.257692845,5742865.257692845 +ILN,39.42111,-83.82223,0,12856,0,9999,-9770941.737056399,-8870941.737056399,4426993.283106372,5126993.283106372 +IND,39.70639,-86.28084,0,12856,0,9999,-1.0044336522236228E7,-9144336.522236228,4468142.890782041,5168142.890782041 +JKL,37.59389,-83.31723000000002,0,12856,0,9999,-9714786.280714886,-8814786.280714886,4167315.981517056,4867315.981517056 +LMK,38.11472,-85.645,0,12856,0,9999,-9973631.798750704,-9073631.798750704,4240667.173945117,4940667.173945117 +PAH,37.06834,-88.77195,0,12856,0,9999,-1.0321345272428136E7,-9421345.272428136,4093818.5808709115,4793818.5808709115 +HGX,29.47195,-95.07945,0,12856,0,9999,-1.1022732482079837E7,-1.0122732482079837E7,3082131.6441921024,3782131.6441921024 +FFC,33.36333,-84.56583000000002,0,12856,0,9999,-9853629.25653274,-8953629.25653274,3589358.5954624,4289358.5954624005 +MLB,28.11361,-80.655,0,12856,0,9999,-9418749.170742461,-8518749.170742461,2909770.5732198837,3609770.5732198837 +AMA,35.23305999999999,-101.70889,0,12856,0,9999,-1.1759919073146565E7,-1.0859919073146565E7,3841054.197543656,4541054.197543656 +TFX,47.45972,-111.38472,0,12856,0,9999,-1.2835860952617709E7,-1.1935860952617709E7,5660920.243834289,6360920.243834289 +MSO,46.92473,-114.09027,0,12856,0,9999,-1.3136715199953921E7,-1.2236715199953921E7,5573374.321196115,6273374.321196115 +SEW,47.68722,-122.25528,0,12856,0,9999,-1.404465552190053E7,-1.314465552190053E7,5698418.246105983,6398418.246105983 +OTX,47.68084,-117.62778,0,12856,0,9999,-1.3530082503642388E7,-1.2630082503642388E7,5697364.429282707,6397364.429282707 +PDT,45.69083,-118.85222,0,12856,0,9999,-1.3666238913469726E7,-1.2766238913469726E7,5374735.141138894,6074735.141138894 +DTX,42.68694,-83.47166999999997,0,12856,0,9999,-9731959.842452275,-8831959.842452275,4908739.887192545,5608739.887192545 +GRR,42.89389,-85.54472,0,12856,0,9999,-9962480.770707285,-9062480.770707285,4940098.958434695,5640098.958434695 +MQT,46.53139,-87.54861,0,12856,0,9999,-1.0185311181416592E7,-9285311.181416592,5509564.403609848,6209564.403609848 +APX,44.9075,-84.71889,0,12856,0,9999,-9870649.363755774,-8970649.363755774,5250898.220767758,5950898.220767758 +MFL,25.75417,-80.38389000000002,0,12856,0,9999,-9388602.03060633,-8488602.03060633,2615450.278164767,3315450.278164767 +CRP,27.77917,-97.50611,0,12856,0,9999,-1.1292574461655486E7,-1.0392574461655486E7,2867671.8413163647,3567671.8413163647 +EWX,29.70417,-98.02861,0,12856,0,9999,-1.1350675899157353E7,-1.0450675899157353E7,3111826.569545166,3811826.569545166 +BRO,25.91583,-97.41861,0,12856,0,9999,-1.128284455585374E7,-1.038284455585374E7,2635422.9153296305,3335422.9153296305 +CLE,41.41222,-81.86028,0,12856,0,9999,-9552775.009196525,-8652775.009196525,4717840.676719376,5417840.676719376 +STO,38.60917,-121.38722,0,12856,0,9999,-1.3948128184411788E7,-1.3048128184411788E7,4310788.6922145095,5010788.6922145095 +MTR,36.59277,-121.85556,0,12856,0,9999,-1.4000207088219678E7,-1.3100207088219678E7,4027748.5982804066,4727748.598280407 +MFR,42.37695,-122.88056,0,12856,0,9999,-1.4114185984754441E7,-1.3214185984754441E7,4861961.977902378,5561961.977902378 +AFC,61.15611,-149.98389,0,12856,0,9999,-1.7128047102625113E7,-1.6228047102625113E7,8302375.474508852,9002375.474508852 +AFG,64.85972,-147.83472,0,12856,0,9999,-1.6889061712317202E7,-1.5989061712317202E7,9211151.105478805,9911151.105478805 +AJK,58.37834,-134.59861,0,12856,0,9999,-1.5417220529670674E7,-1.4517220529670674E7,7688502.719640497,8388502.719640497 +GUA,13.55,144.83333,0,12856,0,9999,1.5655310375467971E7,1.6555310375467971E7,1170990.0463046187,1870990.0463046187 +HFO,21.30278,-157.81945,0,12856,0,9999,-1.79993529392416E7,-1.70993529392416E7,2075388.9781386214,2775388.9781386214 +ILX,40.15167,-89.33833,0,12856,0,9999,-1.0384326118690921E7,-9484326.118690921,4532713.013051357,5232713.013051357 +LOT,41.60417,-88.08471999999998,0,12856,0,9999,-1.024492603626659E7,-9344926.03626659,4746343.51064794,5446343.51064794 +SGF,37.235,-93.40139,0,12856,0,9999,-1.0836134016597774E7,-9936134.016597774,4117070.155880917,4817070.155880917 +LSX,38.69889000000001,-90.68278,0,12856,0,9999,-1.053382751132132E7,-9633827.51132132,4323564.160779892,5023564.160779892 +IWX,41.35889,-85.7,0,12856,0,9999,-9979747.739540376,-9079747.739540376,4709936.618564689,5409936.618564689 +EPZ,31.87306,-106.69805,0,12856,0,9999,-1.2314708294059113E7,-1.1414708294059113E7,3392601.376864247,4092601.376864247 +LUB,33.52834,-101.87584,0,12856,0,9999,-1.17784837334163E7,-1.08784837334163E7,3611348.9925191603,4311348.992519161 +MAF,31.9425,-102.18889,0,12856,0,9999,-1.1813294556401867E7,-1.0913294556401867E7,3401697.447975006,4101697.447975006 +SJT,31.37111,-100.49277,0,12856,0,9999,-1.162468783836232E7,-1.072468783836232E7,3327052.367504474,4027052.367504474 +MHX,34.77667,-76.87694999999998,0,12856,0,9999,-8998634.078007681,-8098634.078007681,3779095.7851539436,4479095.785153944 +RAH,35.77111,-78.68111,0,12856,0,9999,-9199254.727736613,-8299254.727736613,3914548.162594973,4614548.162594973 +ILM,34.27639,-77.91278,0,12856,0,9999,-9113817.258883389,-8213817.258883389,3711571.348302476,4411571.348302476 +FGZ,35.23,-111.82139,0,12856,0,9999,-1.2884418186519986E7,-1.1984418186519986E7,3840637.624056891,4540637.624056891 +PSR,33.43639,-112.02389,0,12856,0,9999,-1.2906935968518315E7,-1.2006935968518315E7,3599089.9269352136,4299089.926935214 +TWC,32.22806,-110.95528,0,12856,0,9999,-1.2788107686931964E7,-1.1888107686931964E7,3439176.0054829414,4139176.0054829414 +BOU,39.77445,-104.87973,0,12856,0,9999,-1.2112513067574153E7,-1.1212513067574153E7,4477985.159095061,5177985.159095061 +LBF,41.13278,-100.7,0,12856,0,9999,-1.1647731591268562E7,-1.0747731591268562E7,4676496.480090039,5376496.480090039 +ABQ,35.03694,-106.62167,0,12856,0,9999,-1.2306214920286112E7,-1.1406214920286112E7,3814387.0429617814,4514387.042961782 +SJU,18.43472,-66.00417,0,12856,0,9999,-7789592.647114804,-6889592.647114804,1736233.0720236544,2436233.0720236544 +LCH,30.12528,-93.21639,0,12856,0,9999,-1.0815562215759791E7,-9915562.215759791,3165851.546158637,3865851.546158637 +SHV,32.45139,-93.84139,0,12856,0,9999,-1.0885061542915132E7,-9985061.542915132,3468569.2403426007,4168569.2403426007 +LWX,38.97555999999999,-77.47723000000002,0,12856,0,9999,-9065384.567775378,-8165384.567775378,4363061.223764503,5063061.223764503 +RNK,37.20417,-80.41417,0,12856,0,9999,-9391969.134008348,-8491969.134008348,4112765.0409801407,4812765.040980141 +AKQ,36.98361,-77.00721999999998,0,12856,0,9999,-9013119.961765323,-8113119.961765323,4082017.06778486,4782017.06778486 +EKA,40.81,-124.15972,0,12856,0,9999,-1.4256427199672882E7,-1.3356427199672882E7,4628958.539993984,5328958.539993984 +VEF,36.04666,-115.18444,0,12856,0,9999,-1.3258385726023614E7,-1.2358385726023614E7,3952378.766153478,4652378.766153478 +REV,39.56834,-119.79666,0,12856,0,9999,-1.377125962473147E7,-1.287125962473147E7,4448209.022112981,5148209.022112981 +DMX,41.73611,-93.72334,0,12856,0,9999,-1.0871934510002028E7,-9971934.510002028,4765984.599652903,5465984.599652903 +DVN,41.61167,-90.58916,0,12856,0,9999,-1.0523417068108069E7,-9623417.068108069,4747458.911063318,5447458.911063318 +FSD,43.5875,-96.72945,0,12856,0,9999,-1.120621070576994E7,-1.030621070576994E7,5045976.611304762,5745976.611304762 +MRX,36.16861,-83.40167,0,12856,0,9999,-9724175.917810878,-8824175.917810878,3969163.6693269555,4669163.669326955 +LZK,34.83472,-92.25944,0,12856,0,9999,-1.0709150405965706E7,-9809150.405965706,3786957.382015361,4486957.3820153605 +MEG,35.13084,-89.80056,0,12856,0,9999,-1.0435725597076545E7,-9535725.597076545,3827146.9553055568,4527146.955305557 +OHX,36.24722,-86.5625,0,12856,0,9999,-1.0075656811014745E7,-9175656.811014745,3979997.204298065,4679997.204298065 +CHS,32.895,-80.0275,0,12856,0,9999,-9348971.8462785,-8448971.8462785,3527171.4283645474,4227171.428364547 +CAE,33.94555,-81.1225,0,12856,0,9999,-9470734.667454658,-8570734.667454658,3667137.484526972,4367137.484526971 +GSP,34.9,-82.21666999999998,0,12856,0,9999,-9592405.19352435,-8692405.19352435,3795804.7482160297,4495804.748216029 +GYX,43.8925,-70.255,0,12856,0,9999,-8262280.366877585,-7362280.366877585,5092919.872141641,5792919.872141641 +LOX,34.20722,-119.13777,0,12856,0,9999,-1.3697991766060457E7,-1.2797991766060457E7,3702266.9968494778,4402266.996849477 +SGX,32.91806,-117.06361,0,12856,0,9999,-1.346734740700042E7,-1.256734740700042E7,3530225.7109139115,4230225.710913911 +HNX,36.31389,-119.63223,0,12856,0,9999,-1.3752975185748825E7,-1.2852975185748825E7,3989193.78659413,4689193.78659413 +GRB,44.49861,-88.11166999999998,0,12856,0,9999,-1.0247922847253527E7,-9347922.847253527,5186926.855728445,5886926.855728445 +ARX,43.82278,-91.19194,0,12856,0,9999,-1.0590445555184381E7,-9690445.555184381,5082167.990174984,5782167.990174984 +MKX,42.96805999999999,-88.54916,0,12856,0,9999,-1.0296571264273034E7,-9396571.264273034,4951363.516996943,5651363.516996943 +BMX,33.17889,-86.78223,0,12856,0,9999,-1.0100090550464094E7,-9200090.550464094,3564828.1131183156,4264828.113118315 +JAN,32.31889,-90.08028,0,12856,0,9999,-1.0466830159943571E7,-9566830.159943571,3451121.7076351773,4151121.7076351773 +MOB,30.67945,-88.23971999999998,0,12856,0,9999,-1.0262161869401112E7,-9362161.869401112,3237299.6954862475,3937299.6954862475 +ALY,42.74805,-73.80333,0,12856,0,9999,-8656850.842917763,-7756850.842917764,4917988.965491492,5617988.965491492 +BGM,42.21167,-75.98611,0,12856,0,9999,-8899573.62904278,-7999573.62904278,4837115.382690676,5537115.382690676 +BUF,42.94139000000001,-78.71916999999998,0,12856,0,9999,-9203486.958763061,-8303486.958763061,4947311.452219581,5647311.452219581 +BTV,44.46917,-73.15555999999998,0,12856,0,9999,-8584819.516275497,-7684819.516275497,5182338.296060415,5882338.296060415 +LKN,40.86,-115.7425,0,12856,0,9999,-1.3320441397243312E7,-1.2420441397243312E7,4636307.175669641,5336307.175669641 +CYS,41.15194,-104.805,0,12856,0,9999,-1.2104203172024844E7,-1.1204203172024844E7,4679325.6342189275,5379325.6342189275 +GJT,39.12,-108.52445,0,12856,0,9999,-1.2517802007845536E7,-1.1617802007845536E7,4383742.5916883955,5083742.5916883955 +PUB,38.27973,-104.52084,0,12856,0,9999,-1.2072604885937704E7,-1.1172604885937704E7,4264015.25350895,4964015.25350895 +RIW,43.06667,-108.47667,0,12856,0,9999,-1.2512488923283163E7,-1.1612488923283163E7,4966360.952526259,5666360.952526259 +JAX,30.48472,-81.70166999999998,0,12856,0,9999,-9535137.747948349,-8635137.747948349,3212147.2327800957,3912147.2327800957 +TAE,30.39389,-84.34444000000002,0,12856,0,9999,-9829010.926870467,-8929010.926870467,3200432.3238385716,3900432.3238385716 +BYZ,45.75083,-108.57056,0,12856,0,9999,-1.2522929390205748E7,-1.1622929390205748E7,5384291.666404969,6084291.666404969 +GGW,48.20667,-106.62473,0,12856,0,9999,-1.2306555188991865E7,-1.1406555188991865E7,5784654.992741944,6484654.992741944 +PIH,42.90444,-112.58972,0,12856,0,9999,-1.2969855655373206E7,-1.2069855655373206E7,4941700.4110756,5641700.4110756 +ABR,45.45583,-98.41278,0,12856,0,9999,-1.139339518957858E7,-1.049339518957858E7,5337403.771325843,6037403.771325843 +FGF,47.92195,-97.09805,0,12856,0,9999,-1.1247198628953073E7,-1.0347198628953073E7,5737279.776103232,6437279.776103232 +UNR,44.07278,-103.21111,0,12856,0,9999,-1.192696431992944E7,-1.102696431992944E7,5120780.283332199,5820780.283332199 +PQR,45.56056,-122.53694,0,12856,0,9999,-1.407597581067905E7,-1.317597581067905E7,5354021.562282554,6054021.562282554 +RLX,38.31306,-81.71861,0,12856,0,9999,-9537021.45771157,-8637021.45771157,4268737.714869391,4968737.714869391 +EYW,24.55,-81.75,0,12856,0,9999,-9540511.99191862,-8640511.99191862,2467517.7741523045,3167517.7741523045 +CAR,46.8667,-68.0167,0,12856,0,9999,-8013383.816522704,-7113383.816522704,5563931.021847511,6263931.021847511 +HUN,34.7244,-86.4786,0,12856,0,9999,-1.0066327221337413E7,-9166327.221337413,3772021.6934645926,4472021.693464592 diff --git a/rpms/awips2.core/Installer.localization/coords_regional.dat b/rpms/awips2.core/Installer.localization/coords_regional.dat new file mode 100644 index 0000000000..1d7c15b8b1 --- /dev/null +++ b/rpms/awips2.core/Installer.localization/coords_regional.dat @@ -0,0 +1,165 @@ +PBZ, 40.53195, -80.21805999999998, 0, 12856, 0, 9999, -1.0270161913130851E7, -7570161.913130851, 3888193.3722891333, 5988193.372289133 +BOX, 41.95556, -71.13472, 0, 12856, 0, 9999, -9260104.283813741, -6560104.28381374, 4098742.3505118852, 6198742.350511885 +EAX, 38.81, -94.26389, 0, 12856, 0, 9999, -1.1832043088072142E7, -9132043.088072142, 3639407.643327768, 5739407.643327768 +SLC, 40.77195, -111.955, 0, 12856, 0, 9999, -1.3799275474681946E7, -1.1099275474681946E7, 3923369.937995336, 6023369.937995336 +TSA, 36.14861, -95.86111, 0, 12856, 0, 9999, -1.2009652232582627E7, -9309652.232582627, 3266409.1300783334, 5366409.130078333 +TOP, 39.07223, -95.63056, 0, 12856, 0, 9999, -1.1984015320781566E7, -9284015.320781566, 3676898.0522424914, 5776898.052242491 +ICT, 37.655, -97.44305, 0, 12856, 0, 9999, -1.218556225754282E7, -9485562.25754282, 3475895.6733279685, 5575895.673327968 +DDC, 37.76056, -99.96861, 0, 12856, 0, 9999, -1.246640181064753E7, -9766401.81064753, 3490732.6866962407, 5590732.686696241 +GLD, 39.36611, -101.70083, 0, 12856, 0, 9999, -1.2659022809823569E7, -9959022.809823569, 3719079.3249641983, 5819079.324964198 +MPX, 44.84916, -93.56528, 0, 12856, 0, 9999, -1.1754358408161752E7, -9054358.408161752, 4541743.148552933, 6641743.148552933 +DLH, 46.83694000000001, -92.21028, 0, 12856, 0, 9999, -1.1603683866888972E7, -8903683.866888972, 4859092.097372879, 6959092.097372879 +BIS, 46.77195, -100.75944, 0, 12856, 0, 9999, -1.2554341255278343E7, -9854341.255278343, 4848534.144023035, 6948534.144023035 +GID, 40.6475, -98.38444, 0, 12856, 0, 9999, -1.2290243812088048E7, -9590243.812088048, 3905113.630413384, 6005113.630413384 +FWD, 32.83416, -97.29805, 0, 12856, 0, 9999, -1.2169438413642783E7, -9469438.413642783, 2819117.021733404, 4919117.021733404 +OUN, 35.23694, -97.46083, 0, 12856, 0, 9999, -1.2187539374401737E7, -9487539.374401737, 3141582.4244286334, 5241582.424428633 +LIX, 30.33722, -89.82528000000002, 0, 12856, 0, 9999, -1.1338474434464194E7, -8638474.434464194, 2493128.761097869, 4593128.761097869 +CTP, 40.79139, -77.86360999999998, 0, 12856, 0, 9999, -1.0008349607817423E7, -7308349.607817423, 3926224.792077845, 6026224.792077845 +PHI, 40.01333, -74.8175, 0, 12856, 0, 9999, -9669625.455111574, -6969625.455111575, 3812607.269811037, 5912607.269811037 +OKX, 40.86556, -72.86499999999998, 0, 12856, 0, 9999, -9452509.557078287, -6752509.557078288, 3937124.6865510233, 6037124.686551023 +BOI, 43.56723, -116.21139, 0, 12856, 0, 9999, -1.4272581460459098E7, -1.1572581460459098E7, 4342865.257692845, 6442865.257692845 +ILN, 39.42111, -83.82223, 0, 12856, 0, 9999, -1.0670941737056399E7, -7970941.737056399, 3726993.2831063718, 5826993.283106372 +IND, 39.70639, -86.28084, 0, 12856, 0, 9999, -1.0944336522236228E7, -8244336.522236228, 3768142.8907820405, 5868142.890782041 +JKL, 37.59389, -83.31723000000002, 0, 12856, 0, 9999, -1.0614786280714886E7, -7914786.280714886, 3467315.981517056, 5567315.981517056 +LMK, 38.11472, -85.645, 0, 12856, 0, 9999, -1.0873631798750704E7, -8173631.798750704, 3540667.173945117, 5640667.173945117 +PAH, 37.06834, -88.77195, 0, 12856, 0, 9999, -1.1221345272428136E7, -8521345.272428136, 3393818.5808709115, 5493818.5808709115 +HGX, 29.47195, -95.07945, 0, 12856, 0, 9999, -1.1922732482079837E7, -9222732.482079837, 2382131.6441921024, 4482131.644192102 +FFC, 33.36333, -84.56583000000002, 0, 12856, 0, 9999, -1.075362925653274E7, -8053629.25653274, 2889358.5954624, 4989358.5954624005 +MLB, 28.11361, -80.655, 0, 12856, 0, 9999, -1.0318749170742461E7, -7618749.170742461, 2209770.5732198837, 4309770.573219884 +AMA, 35.23305999999999, -101.70889, 0, 12856, 0, 9999, -1.2659919073146565E7, -9959919.073146565, 3141054.197543656, 5241054.197543656 +TFX, 47.45972, -111.38472, 0, 12856, 0, 9999, -1.3735860952617709E7, -1.1035860952617709E7, 4960920.243834289, 7060920.243834289 +MSO, 46.92473, -114.09027, 0, 12856, 0, 9999, -1.4036715199953921E7, -1.1336715199953921E7, 4873374.321196115, 6973374.321196115 +SEW, 47.68722, -122.25528, 0, 12856, 0, 9999, -1.494465552190053E7, -1.224465552190053E7, 4998418.246105983, 7098418.246105983 +OTX, 47.68084, -117.62778, 0, 12856, 0, 9999, -1.4430082503642388E7, -1.1730082503642388E7, 4997364.429282707, 7097364.429282707 +PDT, 45.69083, -118.85222, 0, 12856, 0, 9999, -1.4566238913469726E7, -1.1866238913469726E7, 4674735.141138894, 6774735.141138894 +DTX, 42.68694, -83.47166999999997, 0, 12856, 0, 9999, -1.0631959842452275E7, -7931959.842452275, 4208739.887192545, 6308739.887192545 +GRR, 42.89389, -85.54472, 0, 12856, 0, 9999, -1.0862480770707285E7, -8162480.770707285, 4240098.958434695, 6340098.958434695 +MQT, 46.53139, -87.54861, 0, 12856, 0, 9999, -1.1085311181416592E7, -8385311.181416592, 4809564.403609848, 6909564.403609848 +APX, 44.9075, -84.71889, 0, 12856, 0, 9999, -1.0770649363755774E7, -8070649.363755774, 4550898.220767758, 6650898.220767758 +MFL, 25.75417, -80.38389000000002, 0, 12856, 0, 9999, -1.028860203060633E7, -7588602.030606329, 1915450.2781647672, 4015450.278164767 +CRP, 27.77917, -97.50611, 0, 12856, 0, 9999, -1.2192574461655486E7, -9492574.461655486, 2167671.8413163647, 4267671.841316365 +EWX, 29.70417, -98.02861, 0, 12856, 0, 9999, -1.2250675899157353E7, -9550675.899157353, 2411826.569545166, 4511826.569545167 +BRO, 25.91583, -97.41861, 0, 12856, 0, 9999, -1.218284455585374E7, -9482844.55585374, 1935422.9153296305, 4035422.9153296305 +CLE, 41.41222, -81.86028, 0, 12856, 0, 9999, -1.0452775009196525E7, -7752775.009196525, 4017840.676719376, 6117840.676719376 +STO, 38.60917, -121.38722, 0, 12856, 0, 9999, -1.4848128184411788E7, -1.2148128184411788E7, 3610788.6922145095, 5710788.6922145095 +MTR, 36.59277, -121.85556, 0, 12856, 0, 9999, -1.4900207088219678E7, -1.2200207088219678E7, 3327748.5982804066, 5427748.598280407 +MFR, 42.37695, -122.88056, 0, 12856, 0, 9999, -1.5014185984754441E7, -1.2314185984754441E7, 4161961.977902378, 6261961.977902378 +AFC, 61.15611, -149.98389, 0, 12856, 0, 9999, -1.8028047102625113E7, -1.5328047102625113E7, 7602375.474508852, 9702375.474508852 +AFG, 64.85972, -147.83472, 0, 12856, 0, 9999, -1.7789061712317202E7, -1.5089061712317202E7, 8511151.105478805, 1.0611151105478805E7 +AJK, 58.37834, -134.59861, 0, 12856, 0, 9999, -1.6317220529670674E7, -1.3617220529670674E7, 6988502.719640497, 9088502.719640497 +GUA, 13.55, 144.83333, 0, 12856, 0, 9999, 1.4755310375467971E7, 1.745531037546797E7, 470990.0463046187, 2570990.046304619 +HFO, 21.30278, -157.81945, 0, 12856, 0, 9999, -1.88993529392416E7, -1.61993529392416E7, 1375388.9781386214, 3475388.9781386214 +ILX, 40.15167, -89.33833, 0, 12856, 0, 9999, -1.1284326118690921E7, -8584326.118690921, 3832713.013051357, 5932713.013051357 +LOT, 41.60417, -88.08471999999998, 0, 12856, 0, 9999, -1.114492603626659E7, -8444926.03626659, 4046343.5106479404, 6146343.51064794 +SGF, 37.235, -93.40139, 0, 12856, 0, 9999, -1.1736134016597774E7, -9036134.016597774, 3417070.155880917, 5517070.155880917 +LSX, 38.69889000000001, -90.68278, 0, 12856, 0, 9999, -1.143382751132132E7, -8733827.51132132, 3623564.1607798915, 5723564.160779892 +IWX, 41.35889, -85.7, 0, 12856, 0, 9999, -1.0879747739540376E7, -8179747.739540376, 4009936.6185646886, 6109936.618564689 +EPZ, 31.87306, -106.69805, 0, 12856, 0, 9999, -1.3214708294059113E7, -1.0514708294059113E7, 2692601.376864247, 4792601.376864247 +LUB, 33.52834, -101.87584, 0, 12856, 0, 9999, -1.26784837334163E7, -9978483.7334163, 2911348.9925191603, 5011348.992519161 +MAF, 31.9425, -102.18889, 0, 12856, 0, 9999, -1.2713294556401867E7, -1.0013294556401867E7, 2701697.447975006, 4801697.447975006 +SJT, 31.37111, -100.49277, 0, 12856, 0, 9999, -1.252468783836232E7, -9824687.83836232, 2627052.367504474, 4727052.367504474 +MHX, 34.77667, -76.87694999999998, 0, 12856, 0, 9999, -9898634.078007681, -7198634.078007681, 3079095.7851539436, 5179095.785153944 +RAH, 35.77111, -78.68111, 0, 12856, 0, 9999, -1.0099254727736613E7, -7399254.727736613, 3214548.162594973, 5314548.162594973 +ILM, 34.27639, -77.91278, 0, 12856, 0, 9999, -1.0013817258883389E7, -7313817.258883389, 3011571.348302476, 5111571.348302476 +FGZ, 35.23, -111.82139, 0, 12856, 0, 9999, -1.3784418186519986E7, -1.1084418186519986E7, 3140637.624056891, 5240637.624056891 +PSR, 33.43639, -112.02389, 0, 12856, 0, 9999, -1.3806935968518315E7, -1.1106935968518315E7, 2899089.9269352136, 4999089.926935214 +TWC, 32.22806, -110.95528, 0, 12856, 0, 9999, -1.3688107686931964E7, -1.0988107686931964E7, 2739176.0054829414, 4839176.005482942 +BOU, 39.77445, -104.87973, 0, 12856, 0, 9999, -1.3012513067574153E7, -1.0312513067574153E7, 3777985.159095061, 5877985.159095061 +LBF, 41.13278, -100.7, 0, 12856, 0, 9999, -1.2547731591268562E7, -9847731.591268562, 3976496.480090039, 6076496.480090039 +ABQ, 35.03694, -106.62167, 0, 12856, 0, 9999, -1.3206214920286112E7, -1.0506214920286112E7, 3114387.0429617814, 5214387.042961782 +SJU, 18.43472, -66.00417, 0, 12856, 0, 9999, -8689592.647114804, -5989592.647114804, 1036233.0720236544, 3136233.0720236544 +LCH, 30.12528, -93.21639, 0, 12856, 0, 9999, -1.1715562215759791E7, -9015562.215759791, 2465851.546158637, 4565851.546158637 +SHV, 32.45139, -93.84139, 0, 12856, 0, 9999, -1.1785061542915132E7, -9085061.542915132, 2768569.2403426007, 4868569.2403426 +LWX, 38.97555999999999, -77.47723000000002, 0, 12856, 0, 9999, -9965384.567775378, -7265384.567775378, 3663061.2237645034, 5763061.223764503 +RNK, 37.20417, -80.41417, 0, 12856, 0, 9999, -1.0291969134008348E7, -7591969.134008348, 3412765.0409801407, 5512765.040980141 +AKQ, 36.98361, -77.00721999999998, 0, 12856, 0, 9999, -9913119.961765323, -7213119.961765323, 3382017.06778486, 5482017.06778486 +EKA, 40.81, -124.15972, 0, 12856, 0, 9999, -1.5156427199672882E7, -1.2456427199672882E7, 3928958.5399939837, 6028958.539993984 +VEF, 36.04666, -115.18444, 0, 12856, 0, 9999, -1.4158385726023614E7, -1.1458385726023614E7, 3252378.766153478, 5352378.766153478 +REV, 39.56834, -119.79666, 0, 12856, 0, 9999, -1.467125962473147E7, -1.197125962473147E7, 3748209.0221129814, 5848209.022112981 +DMX, 41.73611, -93.72334, 0, 12856, 0, 9999, -1.1771934510002028E7, -9071934.510002028, 4065984.599652903, 6165984.599652903 +DVN, 41.61167, -90.58916, 0, 12856, 0, 9999, -1.1423417068108069E7, -8723417.068108069, 4047458.911063318, 6147458.911063318 +FSD, 43.5875, -96.72945, 0, 12856, 0, 9999, -1.210621070576994E7, -9406210.70576994, 4345976.611304762, 6445976.611304762 +MRX, 36.16861, -83.40167, 0, 12856, 0, 9999, -1.0624175917810878E7, -7924175.917810878, 3269163.6693269555, 5369163.669326955 +LZK, 34.83472, -92.25944, 0, 12856, 0, 9999, -1.1609150405965706E7, -8909150.405965706, 3086957.382015361, 5186957.3820153605 +MEG, 35.13084, -89.80056, 0, 12856, 0, 9999, -1.1335725597076545E7, -8635725.597076545, 3127146.9553055568, 5227146.955305557 +OHX, 36.24722, -86.5625, 0, 12856, 0, 9999, -1.0975656811014745E7, -8275656.811014745, 3279997.204298065, 5379997.204298065 +CHS, 32.895, -80.0275, 0, 12856, 0, 9999, -1.02489718462785E7, -7548971.8462785, 2827171.4283645474, 4927171.428364547 +CAE, 33.94555, -81.1225, 0, 12856, 0, 9999, -1.0370734667454658E7, -7670734.667454658, 2967137.484526972, 5067137.484526971 +GSP, 34.9, -82.21666999999998, 0, 12856, 0, 9999, -1.049240519352435E7, -7792405.1935243495, 3095804.7482160297, 5195804.748216029 +GYX, 43.8925, -70.255, 0, 12856, 0, 9999, -9162280.366877586, -6462280.366877585, 4392919.872141641, 6492919.872141641 +LOX, 34.20722, -119.13777, 0, 12856, 0, 9999, -1.4597991766060457E7, -1.1897991766060457E7, 3002266.9968494778, 5102266.996849477 +SGX, 32.91806, -117.06361, 0, 12856, 0, 9999, -1.436734740700042E7, -1.166734740700042E7, 2830225.7109139115, 4930225.710913911 +HNX, 36.31389, -119.63223, 0, 12856, 0, 9999, -1.4652975185748825E7, -1.1952975185748825E7, 3289193.78659413, 5389193.78659413 +GRB, 44.49861, -88.11166999999998, 0, 12856, 0, 9999, -1.1147922847253527E7, -8447922.847253527, 4486926.855728445, 6586926.855728445 +ARX, 43.82278, -91.19194, 0, 12856, 0, 9999, -1.1490445555184381E7, -8790445.555184381, 4382167.990174984, 6482167.990174984 +MKX, 42.96805999999999, -88.54916, 0, 12856, 0, 9999, -1.1196571264273034E7, -8496571.264273034, 4251363.516996943, 6351363.516996943 +BMX, 33.17889, -86.78223, 0, 12856, 0, 9999, -1.1000090550464094E7, -8300090.550464094, 2864828.1131183156, 4964828.113118315 +JAN, 32.31889, -90.08028, 0, 12856, 0, 9999, -1.1366830159943571E7, -8666830.159943571, 2751121.7076351773, 4851121.707635177 +MOB, 30.67945, -88.23971999999998, 0, 12856, 0, 9999, -1.1162161869401112E7, -8462161.869401112, 2537299.6954862475, 4637299.695486248 +ALY, 42.74805, -73.80333, 0, 12856, 0, 9999, -9556850.842917763, -6856850.842917764, 4217988.965491492, 6317988.965491492 +BGM, 42.21167, -75.98611, 0, 12856, 0, 9999, -9799573.62904278, -7099573.62904278, 4137115.3826906756, 6237115.382690676 +BUF, 42.94139000000001, -78.71916999999998, 0, 12856, 0, 9999, -1.0103486958763061E7, -7403486.958763061, 4247311.452219581, 6347311.452219581 +BTV, 44.46917, -73.15555999999998, 0, 12856, 0, 9999, -9484819.516275497, -6784819.516275497, 4482338.296060415, 6582338.296060415 +LKN, 40.86, -115.7425, 0, 12856, 0, 9999, -1.4220441397243312E7, -1.1520441397243312E7, 3936307.1756696412, 6036307.175669641 +CYS, 41.15194, -104.805, 0, 12856, 0, 9999, -1.3004203172024844E7, -1.0304203172024844E7, 3979325.6342189275, 6079325.6342189275 +GJT, 39.12, -108.52445, 0, 12856, 0, 9999, -1.3417802007845536E7, -1.0717802007845536E7, 3683742.5916883955, 5783742.5916883955 +PUB, 38.27973, -104.52084, 0, 12856, 0, 9999, -1.2972604885937704E7, -1.0272604885937704E7, 3564015.2535089497, 5664015.25350895 +RIW, 43.06667, -108.47667, 0, 12856, 0, 9999, -1.3412488923283163E7, -1.0712488923283163E7, 4266360.952526259, 6366360.952526259 +JAX, 30.48472, -81.70166999999998, 0, 12856, 0, 9999, -1.0435137747948349E7, -7735137.7479483485, 2512147.2327800957, 4612147.232780095 +TAE, 30.39389, -84.34444000000002, 0, 12856, 0, 9999, -1.0729010926870467E7, -8029010.926870467, 2500432.3238385716, 4600432.323838571 +BYZ, 45.75083, -108.57056, 0, 12856, 0, 9999, -1.3422929390205748E7, -1.0722929390205748E7, 4684291.666404969, 6784291.666404969 +GGW, 48.20667, -106.62473, 0, 12856, 0, 9999, -1.3206555188991865E7, -1.0506555188991865E7, 5084654.992741944, 7184654.992741944 +PIH, 42.90444, -112.58972, 0, 12856, 0, 9999, -1.3869855655373206E7, -1.1169855655373206E7, 4241700.4110756, 6341700.4110756 +ABR, 45.45583, -98.41278, 0, 12856, 0, 9999, -1.229339518957858E7, -9593395.18957858, 4637403.771325843, 6737403.771325843 +FGF, 47.92195, -97.09805, 0, 12856, 0, 9999, -1.2147198628953073E7, -9447198.628953073, 5037279.776103232, 7137279.776103232 +UNR, 44.07278, -103.21111, 0, 12856, 0, 9999, -1.282696431992944E7, -1.012696431992944E7, 4420780.283332199, 6520780.283332199 +PQR, 45.56056, -122.53694, 0, 12856, 0, 9999, -1.497597581067905E7, -1.227597581067905E7, 4654021.562282554, 6754021.562282554 +RLX, 38.31306, -81.71861, 0, 12856, 0, 9999, -1.043702145771157E7, -7737021.45771157, 3568737.714869391, 5668737.714869391 +EYW, 24.55, -81.75, 0, 12856, 0, 9999, -1.044051199191862E7, -7740511.99191862, 1767517.7741523045, 3867517.7741523045 +CAR, 46.8667, -68.0167, 0, 12856, 0, 9999, -8913383.816522704, -6213383.816522704, 4863931.021847511, 6963931.021847511 +HUN, 34.7244, -86.4786, 0, 12856, 0, 9999, -1.0966327221337413E7, -8266327.221337413, 3072021.6934645926, 5172021.693464592 +Processing World request: 7 +Processing Canada request: 8 +Completed Canada request: 8 +INFO 2016-08-30 13:34:41,051 [Worker-2] PerformanceLogger: MapQueryJob: Loading map Canada took 3 ms +Processing State Boundaries request: 9 +Completed World request: 7 +INFO 2016-08-30 13:34:41,059 [Worker-4] PerformanceLogger: MapQueryJob: Loading map World took 14 ms +Completed State Boundaries request: 9 +INFO 2016-08-30 13:34:41,128 [Worker-7] PerformanceLogger: MapQueryJob: Loading map State Boundaries took 77 ms +Processing Canada request: 10 +Processing State Boundaries request: 11 +Completed Canada request: 10 +INFO 2016-08-30 13:34:50,868 [Worker-4] PerformanceLogger: MapQueryJob: Loading map Canada took 59 ms +Processing Canada request: 12 +Completed Canada request: 12 +INFO 2016-08-30 13:34:50,921 [Worker-2] PerformanceLogger: MapQueryJob: Loading map Canada took 2 ms +Completed State Boundaries request: 11 +INFO 2016-08-30 13:34:50,987 [Worker-7] PerformanceLogger: MapQueryJob: Loading map State Boundaries took 173 ms +Processing State Boundaries request: 13 +Completed State Boundaries request: 13 +INFO 2016-08-30 13:34:51,019 [Worker-7] PerformanceLogger: MapQueryJob: Loading map State Boundaries took 96 ms +INFO 2016-08-30 13:34:56,737 [Worker-0] PerformanceLogger: StatsJob: Last minute sent 2 messages +INFO 2016-08-30 13:34:56,737 [Worker-0] PerformanceLogger: StatsJob: Total sent 7 messages +INFO 2016-08-30 13:34:56,737 [Worker-0] PerformanceLogger: StatsJob: Network Traffic Stats for 'GetServersRequest' : 1 messages +INFO 2016-08-30 13:34:56,737 [Worker-0] PerformanceLogger: StatsJob: Network Traffic Stats for 'GetPluginRecordMapRequest' : 1 messages +INFO 2016-08-30 13:34:56,737 [Worker-0] PerformanceLogger: StatsJob: Network Traffic Stats for 'MenuCreationRequest' : 1 messages +INFO 2016-08-30 13:34:56,737 [Worker-0] PerformanceLogger: StatsJob: Network Traffic Stats for 'UtilityRequestMessage' : 2 messages +INFO 2016-08-30 13:34:56,737 [Worker-0] PerformanceLogger: StatsJob: Network Traffic Stats for 'QlServerRequest' : 2 messages +MenuTimeRefreshTask : Tue Aug 30 13:38:56 CDT 2016 : running +DataRefreshTask : Tue Aug 30 13:38:56 CDT 2016 : running +MenuTimeRefreshTask : Tue Aug 30 13:38:56 CDT 2016 : Scheduled in 5 minutes +DataRefreshTask : Tue Aug 30 13:38:56 CDT 2016 : Scheduled in 5 minutes +MenuTimeRefreshTask : Tue Aug 30 13:43:56 CDT 2016 : running +DataRefreshTask : Tue Aug 30 13:43:56 CDT 2016 : running +MenuTimeRefreshTask : Tue Aug 30 13:43:56 CDT 2016 : Scheduled in 5 minutes +DataRefreshTask : Tue Aug 30 13:43:56 CDT 2016 : Scheduled in 5 minutes +VizWorkbenchAdvisor: User exiting CAVE, shutdown initiated +In SummedHourlyMpeAction.isEnabled() +Stopping queryJob +Stopping queryJob +Stopping queryJob +Stopping queryJob +Stopping queryJob +Time to store thin client caches: 2779ms +Stopping com.raytheon.uf.viz.core plugin diff --git a/rpms/awips2.core/Installer.localization/coords_wsr88d.dat b/rpms/awips2.core/Installer.localization/coords_wsr88d.dat new file mode 100644 index 0000000000..4a7c9770aa --- /dev/null +++ b/rpms/awips2.core/Installer.localization/coords_wsr88d.dat @@ -0,0 +1,211 @@ +LPLA, 38.7302, -27.3207, 0, 9999, 0, 9999, -3413032.4278606847, -2663032.4278606847, 4303026.245684377, 5053026.245684377 +PGUA, 13.4558, 144.8111, 0, 9999, 0, 9999, 1.5727838423399711E7, 1.6477838423399711E7, 1135217.328035667, 1885217.328035667 +PACG, 56.8528, -135.5292, 0, 9999, 0, 9999, -1.5445701135842655E7, -1.4695701135842655E7, 7346719.325721541, 8096719.325721541 +KBYX, 24.5969, -81.7033, 0, 9999, 0, 9999, -9460319.002193572, -8710319.002193572, 2448252.3947046306, 3198252.3947046306 +PHWA, 19.095, -155.5689, 0, 9999, 0, 9999, -1.767409420207448E7, -1.692409420207448E7, 1788777.7504762914, 2538777.7504762914 +KYUX, 32.4953, -114.6567, 0, 9999, 0, 9999, -1.3124701606162881E7, -1.2374701606162881E7, 3449356.9428340504, 4199356.94283405 +KCBW, 46.0392, -67.8064, 0, 9999, 0, 9999, -7914998.682921476, -7164998.682921476, 5405365.917373371, 6155365.917373371 +RODN, 26.3019, 127.9097, 0, 9999, 0, 9999, 1.3848420938626457E7, 1.4598420938626457E7, 2658232.074642768, 3408232.074642768 +KMVX, 47.5281, -97.325, 0, 9999, 0, 9999, -1.119743522462972E7, -1.044743522462972E7, 5647173.962381073, 6397173.962381073 +PAEC, 64.5114, -165.295, 0, 9999, 0, 9999, -1.875562605142738E7, -1.800562605142738E7, 9095564.816682229, 9845564.816682229 +TJUA, 18.1157, -66.0782, 0, 9999, 0, 9999, -7722824.703417699, -6972824.703417699, 1673873.9899840693, 2423873.989984069 +TPSF, 35.393, -97.628, 0, 9999, 0, 9999, -1.1231128498434627E7, -1.0481128498434627E7, 3837849.5814195424, 4587849.581419542 +KCRP, 27.7839, -97.5108, 0, 9999, 0, 9999, -1.121809598460646E7, -1.046809598460646E7, 2843266.33926998, 3593266.33926998 +KRTX, 45.715, -122.965, 0, 9999, 0, 9999, -1.4048575621850435E7, -1.3298575621850435E7, 5353583.593814979, 6103583.593814979 +KJKL, 37.5908, -83.3131, 0, 9999, 0, 9999, -9639327.029161042, -8889327.029161042, 4141882.3404493453, 4891882.340449345 +RKSG, 37.2076, 127.2856, 0, 9999, 0, 9999, 1.377902169050222E7, 1.452902169050222E7, 4088243.9207301, 4838243.9207301 +KRIW, 43.0661, -108.4773, 0, 9999, 0, 9999, -1.2437558978604939E7, -1.1687558978604939E7, 4941274.192884151, 5691274.192884151 +KFDX, 34.6342, -103.6189, 0, 9999, 0, 9999, -1.1897310128922522E7, -1.1147310128922522E7, 3734824.758962124, 4484824.758962125 +KSGF, 37.2353, -93.4003, 0, 9999, 0, 9999, -1.0761012809771212E7, -1.0011012809771212E7, 4092112.0566608356, 4842112.056660836 +KMOB, 30.6794, -88.2397, 0, 9999, 0, 9999, -1.0187159645422647E7, -9437159.645422647, 3212293.230699817, 3962293.230699817 +PAPD, 65.0351, -147.5014, 0, 9999, 0, 9999, -1.6776996887153331E7, -1.6026996887153331E7, 9232206.47581537, 9982206.47581537 +KMUX, 37.1552, -121.8984, 0, 9999, 0, 9999, -1.3929970850100216E7, -1.3179970850100216E7, 4080930.4617185434, 4830930.461718543 +KAPX, 44.9063, -84.7195, 0, 9999, 0, 9999, -9795717.195099074, -9045717.195099074, 5225709.815827572, 5975709.815827572 +PAKC, 58.6794, -156.6294, 0, 9999, 0, 9999, -1.7792020660391662E7, -1.7042020660391662E7, 7727627.960040779, 8477627.960040778 +KBGM, 42.1997, -75.9847, 0, 9999, 0, 9999, -8824416.838560719, -8074416.838560719, 4810318.456892155, 5560318.456892155 +KLNX, 41.9579, -100.5762, 0, 9999, 0, 9999, -1.1558965164545633E7, -1.0808965164545633E7, 4774092.253693025, 5524092.253693025 +KMHX, 34.7758, -76.8764, 0, 9999, 0, 9999, -8923572.918599786, -8173572.918599786, 3753978.0048653004, 4503978.0048653 +KJAX, 30.4846, -81.7019, 0, 9999, 0, 9999, -9460163.323700743, -8710163.323700743, 3187131.748430433, 3937131.748430433 +PAIH, 59.4619, -146.3011, 0, 9999, 0, 9999, -1.6643524819338042E7, -1.5893524819338042E7, 7896929.250824032, 8646929.250824032 +KICX, 37.591, -112.8622, 0, 9999, 0, 9999, -1.2925155138034467E7, -1.2175155138034467E7, 4141910.407287402, 4891910.407287402 +KGGW, 48.2064, -106.6247, 0, 9999, 0, 9999, -1.223155185302416E7, -1.148155185302416E7, 5759609.9423635155, 6509609.9423635155 +KCBX, 43.4902, -116.236, 0, 9999, 0, 9999, -1.330031806596517E7, -1.255031806596517E7, 5006051.038701487, 5756051.038701487 +KDVN, 41.6117, -90.5808, 0, 9999, 0, 9999, -1.0447487445108036E7, -9697487.445108036, 4722463.372925369, 5472463.372925369 +KSHV, 32.4508, -93.8412, 0, 9999, 0, 9999, -1.0810040415119676E7, -1.0060040415119676E7, 3443491.4926574784, 4193491.4926574784 +PHKI, 21.8939, -159.5525, 0, 9999, 0, 9999, -1.8117066233524106E7, -1.7367066233524106E7, 2121085.040638058, 2871085.040638058 +KDDC, 37.7608, -99.9689, 0, 9999, 0, 9999, -1.149143405833533E7, -1.074143405833533E7, 4165766.4440585505, 4915766.4440585505 +KDYX, 32.5383, -99.2542, 0, 9999, 0, 9999, -1.1411960187746653E7, -1.0661960187746653E7, 3455027.438422149, 4205027.438422149 +KOTX, 47.6806, -117.6258, 0, 9999, 0, 9999, -1.3454862329773959E7, -1.2704862329773959E7, 5672324.789785805, 6422324.789785805 +KGJX, 39.0622, -108.2138, 0, 9999, 0, 9999, -1.2408258062276246E7, -1.1658258062276246E7, 4350461.531216118, 5100461.531216118 +KBHX, 40.4983, -124.2922, 0, 9999, 0, 9999, -1.4196158833051344E7, -1.3446158833051344E7, 4558271.412130146, 5308271.412130146 +KPAH, 37.0683, -88.7719, 0, 9999, 0, 9999, -1.0246339712481963E7, -9496339.712481963, 4068813.006412564, 4818813.006412564 +KIWX, 41.3586, -85.7, 0, 9999, 0, 9999, -9904747.739540376, -9154747.739540376, 4684893.655276031, 5434893.655276031 +KEYX, 35.0978, -117.5608, 0, 9999, 0, 9999, -1.3447634399749802E7, -1.2697634399749802E7, 3797655.530277941, 4547655.530277941 +KDLH, 46.8369, -92.2097, 0, 9999, 0, 9999, -1.0628619371513374E7, -9878619.371513374, 5534085.595246045, 6284085.595246045 +KCAE, 33.9486, -81.1186, 0, 9999, 0, 9999, -9395300.991653208, -8645300.991653208, 3642546.326889482, 4392546.326889481 +KEMX, 31.8936, -110.6303, 0, 9999, 0, 9999, -1.2676970260789657E7, -1.1926970260789657E7, 3370291.2338774023, 4120291.2338774023 +KDOX, 38.8256, -75.44, 0, 9999, 0, 9999, -8763846.784958296, -8013846.7849582955, 4316634.067278913, 5066634.067278913 +PABC, 60.7919, -161.8764, 0, 9999, 0, 9999, -1.837548141172618E7, -1.762548141172618E7, 8193905.280489944, 8943905.280489944 +KEPZ, 31.8731, -106.698, 0, 9999, 0, 9999, -1.2239702734112939E7, -1.1489702734112939E7, 3367606.6145618805, 4117606.6145618805 +KCYS, 41.1519, -104.8061, 0, 9999, 0, 9999, -1.2029325490840634E7, -1.1279325490840634E7, 4654319.726981747, 5404319.726981747 +KFSD, 43.5878, -96.7289, 0, 9999, 0, 9999, -1.1131149546362042E7, -1.0381149546362042E7, 5021022.667819047, 5771022.667819047 +KTLX, 35.3331, -97.2778, 0, 9999, 0, 9999, -1.1192186635442948E7, -1.0442186635442948E7, 3829681.8238617927, 4579681.823861793 +KGWX, 33.8969, -88.3292, 0, 9999, 0, 9999, -1.0197111949071292E7, -9447111.949071292, 3635618.092700224, 4385618.092700224 +EERI, 42.018, -80.157, 0, 9999, 0, 9999, -9288372.106865086, -8538372.106865086, 4783083.490282645, 5533083.490282645 +KCXX, 44.5111, -73.1664, 0, 9999, 0, 9999, -8511024.91260568, -7761024.9126056805, 5163874.264565263, 5913874.264565263 +FQKW, 48.372, -124.676, 0, 9999, 0, 9999, -1.4238836979870899E7, -1.3488836979870899E7, 5787285.572999948, 6537285.572999948 +KDFX, 29.2725, -100.2803, 0, 9999, 0, 9999, -1.1526061403097207E7, -1.0776061403097207E7, 3031681.4166718894, 3781681.4166718894 +PAHG, 60.7259, -151.3515, 0, 9999, 0, 9999, -1.7205123862322576E7, -1.6455123862322576E7, 8178881.029346075, 8928881.029346075 +KLRX, 40.7397, -116.8028, 0, 9999, 0, 9999, -1.3363345615775807E7, -1.2613345615775807E7, 4593635.717606477, 5343635.717606477 +KPUX, 38.4594, -104.1814, 0, 9999, 0, 9999, -1.195985952336233E7, -1.120985952336233E7, 4264498.079282363, 5014498.079282363 +KFSX, 34.5743, -111.1984, 0, 9999, 0, 9999, -1.2740142369200775E7, -1.1990142369200775E7, 3726732.3489589947, 4476732.348958995 +KUDX, 44.1247, -102.83, 0, 9999, 0, 9999, -1.1809585298213964E7, -1.1059585298213964E7, 5103819.7126896, 5853819.7126896 +KBLX, 45.8538, -108.6068, 0, 9999, 0, 9999, -1.2451959239191527E7, -1.1701959239191527E7, 5375716.231647138, 6125716.231647138 +KOKX, 40.8655, -72.8639, 0, 9999, 0, 9999, -8477387.238262497, -7727387.238262496, 4612115.864124829, 5362115.864124829 +KABX, 35.1497, -106.8239, 0, 9999, 0, 9999, -1.225370267857511E7, -1.150370267857511E7, 3804711.5821145577, 4554711.582114558 +KSFX, 43.1056, -112.6861, 0, 9999, 0, 9999, -1.2905573007615177E7, -1.2155573007615177E7, 4947288.394287061, 5697288.394287061 +KLZK, 34.8364, -92.2619, 0, 9999, 0, 9999, -1.0634423955317387E7, -9884423.955317387, 3762184.9835808445, 4512184.9835808445 +KMQT, 46.5311, -87.5483, 0, 9999, 0, 9999, -1.0110276709750323E7, -9360276.709750323, 5484517.529170831, 6234517.529170831 +KMAF, 31.9435, -102.1892, 0, 9999, 0, 9999, -1.1738329028068136E7, -1.0988329028068136E7, 3376828.489947473, 4126828.489947473 +KMSX, 47.0411, -113.9861, 0, 9999, 0, 9999, -1.3050131608098285E7, -1.2300131608098285E7, 5567342.240807316, 6317342.240807316 +KMLB, 28.1131, -80.6544, 0, 9999, 0, 9999, -9343682.45138839, -8593682.45138839, 2884706.2757659163, 3634706.2757659163 +KMBX, 48.3925, -100.8644, 0, 9999, 0, 9999, -1.1591012694283506E7, -1.0841012694283506E7, 5790717.856437925, 6540717.856437925 +KMXX, 32.5367, -85.7897, 0, 9999, 0, 9999, -9914722.282973709, -9164722.282973709, 3454816.394626808, 4204816.394626807 +KFCX, 37.0242, -80.2742, 0, 9999, 0, 9999, -9301404.620693255, -8551404.620693255, 4062668.9531319914, 4812668.953131991 +TCMH, 40.006, -82.715, 0, 9999, 0, 9999, -9572818.953046467, -8822818.953046467, 4486543.097207681, 5236543.097207681 +KLGX, 47.1158, -124.1069, 0, 9999, 0, 9999, -1.4175553672536328E7, -1.3425553672536328E7, 5579539.900320799, 6329539.900320799 +KGRK, 30.7217, -97.3828, 0, 9999, 0, 9999, -1.1203862522405047E7, -1.0453862522405047E7, 3217763.637197901, 3967763.637197901 +KLCH, 30.1253, -93.2159, 0, 9999, 0, 9999, -1.07405077282873E7, -9990507.7282873, 3140854.1174401734, 3890854.1174401734 +KDMX, 41.7311, -93.7229, 0, 9999, 0, 9999, -1.0796885582475713E7, -1.0046885582475713E7, 4740238.056019616, 5490238.056019616 +PHMO, 21.1328, -157.1803, 0, 9999, 0, 9999, -1.7853280147319462E7, -1.7103280147319462E7, 2030112.889980123, 2780112.889980123 +KUEX, 40.3208, -98.4419, 0, 9999, 0, 9999, -1.13216333022294E7, -1.05716333022294E7, 4532349.369035875, 5282349.369035875 +KTLH, 30.3975, -84.3289, 0, 9999, 0, 9999, -9752282.895600075, -9002282.895600075, 3175897.719848095, 3925897.719848095 +KESX, 35.7011, -114.8914, 0, 9999, 0, 9999, -1.3150799993496254E7, -1.2400799993496254E7, 3879957.3192378087, 4629957.319237809 +KRGX, 39.7541, -119.462, 0, 9999, 0, 9999, -1.3659045793010177E7, -1.2909045793010177E7, 4450041.293277719, 5200041.293277719 +KARX, 43.8228, -91.1911, 0, 9999, 0, 9999, -1.0515352148088686E7, -9765352.148088686, 5057171.072676892, 5807171.072676892 +KLSX, 38.6989, -90.6828, 0, 9999, 0, 9999, -1.0458829735299788E7, -9708829.735299788, 4298565.5855988655, 5048565.5855988655 +TSLC, 40.967, -111.93, 0, 9999, 0, 9999, -1.2821495501595732E7, -1.2071495501595732E7, 4627051.918383948, 5377051.918383948 +KAKQ, 36.9839, -77.0075, 0, 9999, 0, 9999, -8938151.09746389, -8188151.097463891, 4057057.4376410805, 4807057.4376410805 +KABR, 45.4558, -98.4131, 0, 9999, 0, 9999, -1.1318430773234082E7, -1.0568430773234082E7, 5312399.015570701, 6062399.015570701 +KGYX, 43.8913, -70.2564, 0, 9999, 0, 9999, -8187436.045370414, -7437436.045370414, 5067734.707541769, 5817734.707541769 +KPDT, 45.6906, -118.8529, 0, 9999, 0, 9999, -1.359131452873767E7, -1.284131452873767E7, 5349698.527526927, 6099698.527526927 +KTWX, 38.9969, -96.2325, 0, 9999, 0, 9999, -1.1075950400762184E7, -1.0325950400762184E7, 4341114.09093638, 5091114.09093638 +KDGX, 32.28, -89.9844, 0, 9999, 0, 9999, -1.0381168407163324E7, -9631168.407163324, 3421005.5416958095, 4171005.5416958095 +KHTX, 34.9306, -86.0836, 0, 9999, 0, 9999, -9947403.646575237, -9197403.646575237, 3774954.3714156863, 4524954.371415686 +KGLD, 39.3669, -101.7003, 0, 9999, 0, 9999, -1.1683963874394141E7, -1.0933963874394141E7, 4394192.954039066, 5144192.954039066 +KGRB, 44.4986, -88.1111, 0, 9999, 0, 9999, -1.0172859463867163E7, -9422859.463867163, 5161925.296721181, 5911925.296721181 +KJGX, 32.675, -83.3511, 0, 9999, 0, 9999, -9643552.588252086, -8893552.588252086, 3473072.4080106793, 4223072.408010679 +KNKX, 32.9189, -117.0419, 0, 9999, 0, 9999, -1.3389933278372353E7, -1.2639933278372353E7, 3505336.9834060874, 4255336.983406087 +TDFW, 33.065, -96.918, 0, 9999, 0, 9999, -1.1152177262786161E7, -1.0402177262786161E7, 3524706.554039717, 4274706.554039717 +KHNX, 36.3142, -119.6321, 0, 9999, 0, 9999, -1.3677960729888776E7, -1.2927960729888776E7, 3964236.5669213524, 4714236.566921352 +KMPX, 44.8489, -93.5655, 0, 9999, 0, 9999, -1.0779382871924913E7, -1.0029382871924913E7, 5216702.368516848, 5966702.368516848 +TMSY, 30.022, -90.403, 0, 9999, 0, 9999, -1.0427716276518887E7, -9677716.276518887, 3127580.381937731, 3877580.381937731 +FQWA, 47.679, -103.781, 0, 9999, 0, 9999, -1.1915335474413533E7, -1.1165335474413533E7, 5672060.531133149, 6422060.531133149 +KMAX, 42.0811, -122.7174, 0, 9999, 0, 9999, -1.4021042768404575E7, -1.3271042768404575E7, 4792532.689639017, 5542532.689639017 +TFLL, 26.143, -80.344, 0, 9999, 0, 9999, -9309166.305549962, -8559166.305549962, 2638535.4892618987, 3388535.4892618987 +KCCX, 40.9231, -78.0039, 0, 9999, 0, 9999, -9048949.704788022, -8298949.704788022, 4620589.076256619, 5370589.076256619 +KNQA, 35.3447, -89.8733, 0, 9999, 0, 9999, -1.0368814206768192E7, -9618814.206768192, 3831263.0868756846, 4581263.086875685 +KBRO, 25.9156, -97.4186, 0, 9999, 0, 9999, -1.1207843443864504E7, -1.0457843443864504E7, 2610394.4800688294, 3360394.4800688294 +KOAX, 41.3203, -96.3668, 0, 9999, 0, 9999, -1.1090884416181324E7, -1.0340884416181324E7, 4679221.219271937, 5429221.219271937 +KTFX, 47.4597, -111.3853, 0, 9999, 0, 9999, -1.2760925447993308E7, -1.2010925447993308E7, 5635916.954453212, 6385916.954453212 +TBOS, 42.158, -70.933, 0, 9999, 0, 9999, -8262673.2369757, -7512673.2369757, 4804061.146700892, 5554061.146700892 +TDTW, 42.111, -83.515, 0, 9999, 0, 9999, -9661778.091805302, -8911778.091805302, 4797013.483533436, 5547013.483533436 +KSRX, 35.2904, -94.3619, 0, 9999, 0, 9999, -1.0867941694559334E7, -1.0117941694559334E7, 3823863.094328218, 4573863.094328218 +KLBB, 33.6541, -101.8142, 0, 9999, 0, 9999, -1.1696629431774931E7, -1.0946629431774931E7, 3603136.8444067445, 4353136.844406744 +KILX, 40.1505, -89.3368, 0, 9999, 0, 9999, -1.0309155984338045E7, -9559155.984338045, 4507542.798770056, 5257542.798770056 +KFDR, 34.3622, -98.9767, 0, 9999, 0, 9999, -1.1381102486489682E7, -1.0631102486489682E7, 3698124.664009431, 4448124.664009431 +TIAH, 30.065, -95.567, 0, 9999, 0, 9999, -1.1001947517207177E7, -1.0251947517207177E7, 3133104.0676108785, 3883104.0676108785 +KBBX, 39.4961, -121.6317, 0, 9999, 0, 9999, -1.3900314097216487E7, -1.3150314097216487E7, 4412793.674477706, 5162793.674477706 +TMKE, 42.819, -88.046, 0, 9999, 0, 9999, -1.0165620413950665E7, -9415620.413950665, 4903738.787076369, 5653738.787076369 +TTPA, 27.86, -82.518, 0, 9999, 0, 9999, -9550912.765127102, -8800912.765127102, 2852834.6540958136, 3602834.6540958136 +TIAD, 39.084, -77.529, 0, 9999, 0, 9999, -8996141.336042305, -8246141.336042305, 4353584.040695662, 5103584.040695662 +TCVG, 38.898, -84.58, 0, 9999, 0, 9999, -9780204.945278004, -9030204.945278004, 4326973.350464858, 5076973.350464858 +TRDU, 36.002, -78.697, 0, 9999, 0, 9999, -9126021.678630209, -8376021.678630209, 3921238.3793876236, 4671238.379387624 +KBIS, 46.7708, -100.7603, 0, 9999, 0, 9999, -1.1579436886352511E7, -1.0829436886352511E7, 5523347.435498721, 6273347.435498721 +TIDS, 39.637, -86.436, 0, 9999, 0, 9999, -9986590.147198506, -9236590.147198506, 4433118.278822162, 5183118.278822162 +KVBX, 34.8386, -120.3979, 0, 9999, 0, 9999, -1.3763116865465673E7, -1.3013116865465673E7, 3762483.040273549, 4512483.040273549 +KAMA, 35.2333, -101.7093, 0, 9999, 0, 9999, -1.1684964664705178E7, -1.0934964664705178E7, 3816086.8706385186, 4566086.870638519 +KTYX, 43.7558, -75.68, 0, 9999, 0, 9999, -8790534.526585948, -8040534.526585948, 5046850.477419398, 5796850.477419398 +KVNX, 36.7408, -98.1275, 0, 9999, 0, 9999, -1.1286672360697178E7, -1.0536672360697178E7, 4023270.148772156, 4773270.148772156 +KSJT, 31.3711, -100.4922, 0, 9999, 0, 9999, -1.1549624454975953E7, -1.0799624454975953E7, 3302051.0651248423, 4052051.0651248423 +KEAX, 38.8102, -94.2645, 0, 9999, 0, 9999, -1.0857110919415446E7, -1.0107110919415446E7, 4314436.184138763, 5064436.184138763 +KGRR, 42.8939, -85.5449, 0, 9999, 0, 9999, -9887500.786513506, -9137500.786513506, 4915100.476269558, 5665100.476269558 +TPIT, 40.501, -80.486, 0, 9999, 0, 9999, -9324956.552679658, -8574956.552679658, 4558666.247968574, 5308666.247968574 +KLTX, 33.9892, -78.4292, 0, 9999, 0, 9999, -9096242.606930688, -8346242.606930688, 3647990.0184316477, 4397990.018431648 +KENX, 42.5866, -74.0641, 0, 9999, 0, 9999, -8610848.186185442, -7860848.186185441, 4868573.009534401, 5618573.009534401 +KATX, 48.1946, -122.4957, 0, 9999, 0, 9999, -1.3996389967076033E7, -1.3246389967076033E7, 5757641.305919818, 6507641.305919818 +KVWX, 38.2603, -87.7245, 0, 9999, 0, 9999, -1.0129869960061956E7, -9379869.960061956, 4236263.255789304, 4986263.255789304 +KRLX, 38.3111, -81.7228, 0, 9999, 0, 9999, -9462487.38120082, -8712487.38120082, 4243459.946323509, 4993459.946323509 +KMRX, 36.1683, -83.4019, 0, 9999, 0, 9999, -9649201.493563272, -8899201.493563272, 3944120.9686065605, 4694120.9686065605 +KLVX, 37.9753, -85.9439, 0, 9999, 0, 9999, -9931869.156969475, -9181869.156969475, 4195981.036072106, 4945981.036072106 +TPHX, 33.421, -112.163, 0, 9999, 0, 9999, -1.2847404850759242E7, -1.2097404850759242E7, 3572039.3533393857, 4322039.353339385 +TCLT, 35.337, -80.885, 0, 9999, 0, 9999, -9369324.923135627, -8619324.923135627, 3830213.4300633436, 4580213.430063344 +KBUF, 42.9486, -78.7369, 0, 9999, 0, 9999, -9130458.515675807, -8380458.515675807, 4923406.719122362, 5673406.719122362 +TLVE, 41.29, -82.008, 0, 9999, 0, 9999, -9494201.314168343, -8744201.314168343, 4674735.98774669, 5424735.98774669 +TTUL, 36.071, -95.827, 0, 9999, 0, 9999, -1.1030859237303799E7, -1.0280859237303799E7, 3930726.7846699413, 4680726.784669941 +RKJK, 35.9242, 126.6222, 0, 9999, 0, 9999, 1.3705252324686456E7, 1.4455252324686456E7, 3910549.81127014, 4660549.81127014 +KEVX, 30.565, -85.9217, 0, 9999, 0, 9999, -9929400.540868917, -9179400.540868917, 3197510.5470950855, 3947510.5470950855 +KDIX, 39.9469, -74.4107, 0, 9999, 0, 9999, -8649389.733052708, -7899389.733052708, 4477967.104133227, 5227967.104133227 +KFTG, 39.7866, -104.5458, 0, 9999, 0, 9999, -1.2000380411066981E7, -1.1250380411066981E7, 4454743.213841146, 5204743.213841146 +KHDX, 33.077, -106.12, 0, 9999, 0, 9999, -1.2175429756359681E7, -1.1425429756359681E7, 3526298.9108674573, 4276298.910867457 +KCLX, 32.6555, -81.0422, 0, 9999, 0, 9999, -9386805.393901737, -8636805.393901737, 3470496.641301468, 4220496.641301468 +TATL, 33.647, -84.262, 0, 9999, 0, 9999, -9744843.687621366, -8994843.687621366, 3602188.40451825, 4352188.40451825 +KHPX, 36.7367, -87.285, 0, 9999, 0, 9999, -1.0080998033206321E7, -9330998.033206321, 4022701.2294723755, 4772701.2294723755 +KLOT, 41.6044, -88.0844, 0, 9999, 0, 9999, -1.0169890452611087E7, -9419890.452611087, 4721377.714333554, 5471377.714333554 +KVAX, 30.8903, -83.0018, 0, 9999, 0, 9999, -9604710.80429151, -8854710.80429151, 3239591.571974525, 3989591.571974525 +KGSP, 34.8833, -82.2198, 0, 9999, 0, 9999, -9517753.246154748, -8767753.246154748, 3768540.7367178784, 4518540.736717878 +KEWX, 29.7041, -98.0286, 0, 9999, 0, 9999, -1.1275674787168115E7, -1.0525674787168115E7, 3086817.6080408166, 3836817.6080408166 +KVTX, 34.4117, -119.1786, 0, 9999, 0, 9999, -1.362753201810486E7, -1.287753201810486E7, 3704794.6420232323, 4454794.642023232 +TDAY, 40.022, -84.123, 0, 9999, 0, 9999, -9729387.037262019, -8979387.037262019, 4488866.131752417, 5238866.131752417 +KICT, 37.6544, -97.4431, 0, 9999, 0, 9999, -1.1210567817488993E7, -1.0460567817488993E7, 4150811.40051918, 4900811.40051918 +KPOE, 31.1553, -92.9758, 0, 9999, 0, 9999, -1.0713808866767306E7, -9963808.866767306, 3273977.8695137193, 4023977.8695137193 +PHKM, 20.1253, -155.7778, 0, 9999, 0, 9999, -1.769732365718288E7, -1.694732365718288E7, 1910402.4087613649, 2660402.408761365 +KBMX, 33.1719, -86.7697, 0, 9999, 0, 9999, -1.0023697227953285E7, -9273697.227953285, 3538899.461922696, 4288899.461922696 +KSOX, 33.8177, -117.636, 0, 9999, 0, 9999, -1.3455996558793133E7, -1.2705996558793133E7, 3625012.7674120143, 4375012.767412014 +KDAX, 38.5011, -121.6778, 0, 9999, 0, 9999, -1.3905440367587468E7, -1.3155440367587468E7, 4270421.509175979, 5020421.509175979 +KEOX, 31.4606, -85.4594, 0, 9999, 0, 9999, -9877993.278558655, -9127993.278558655, 3313712.921271713, 4063712.921271713 +TBNA, 35.98, -86.662, 0, 9999, 0, 9999, -1.0011721103897875E7, -9261721.103897875, 3918214.836949072, 4668214.836949072 +TMCI, 39.498, -94.742, 0, 9999, 0, 9999, -1.0910208405362127E7, -1.0160208405362127E7, 4413067.4721152615, 5163067.4721152615 +TJFK, 40.589, -73.881, 0, 9999, 0, 9999, -8590487.663302012, -7840487.663302012, 4571543.68391391, 5321543.68391391 +KHGX, 29.4719, -95.0789, 0, 9999, 0, 9999, -1.0947671322671942E7, -1.0197671322671942E7, 3057125.257830857, 3807125.257830857 +TBWI, 39.09, -76.63, 0, 9999, 0, 9999, -8896173.503862064, -8146173.503862064, 4354443.6162968585, 5104443.6162968585 +KBIX, 30.5239, -88.9847, 0, 9999, 0, 9999, -1.0270002843391815E7, -9520002.843391815, 3192203.8943169955, 3942203.8943169955 +KILN, 39.4203, -83.8217, 0, 9999, 0, 9999, -9695882.801626973, -8945882.801626973, 4401876.686803335, 5151876.686803335 +TMCO, 28.344, -81.326, 0, 9999, 0, 9999, -9418363.648376435, -8668363.648376435, 2913848.0247193538, 3663848.0247193538 +KLIX, 30.3367, -89.8254, 0, 9999, 0, 9999, -1.0363487778335007E7, -9613487.778335007, 3168061.763697903, 3918061.763697903 +KDTX, 42.7, -83.4717, 0, 9999, 0, 9999, -9656963.178419981, -8906963.178419981, 4885715.770175455, 5635715.770175455 +KFWS, 32.5728, -97.3031, 0, 9999, 0, 9999, -1.1194999968206197E7, -1.0444999968206197E7, 3459578.9854134084, 4209578.985413408 +TPBI, 26.688, -80.273, 0, 9999, 0, 9999, -9301271.181985117, -8551271.181985117, 2706204.463819104, 3456204.463819104 +KAMX, 25.6106, -80.4131, 0, 9999, 0, 9999, -9316850.151160259, -8566850.151160259, 2572735.394636651, 3322735.394636651 +TPHL, 39.949, -75.069, 0, 9999, 0, 9999, -8722591.984358884, -7972591.984358885, 4478271.70782623, 5228271.70782623 +KMTX, 41.2628, -112.4478, 0, 9999, 0, 9999, -1.2879074304157387E7, -1.2129074304157387E7, 4670711.415270969, 5420711.415270969 +TMEM, 34.896, -89.993, 0, 9999, 0, 9999, -1.0382124717904981E7, -9632124.717904981, 3770262.4280966776, 4520262.428096678 +TLAS, 36.144, -115.007, 0, 9999, 0, 9999, -1.3163654589046907E7, -1.2413654589046907E7, 3940774.308404943, 4690774.308404943 +TMSP, 44.871, -92.933, 0, 9999, 0, 9999, -1.0709049552843709E7, -9959049.552843709, 5220169.3290057, 5970169.3290057 +KIWA, 33.2892, -111.67, 0, 9999, 0, 9999, -1.279258378149911E7, -1.204258378149911E7, 3554493.0912270625, 4304493.091227062 +TADW, 38.695, -76.845, 0, 9999, 0, 9999, -8920081.272403503, -8170081.272403503, 4298009.921309186, 5048009.921309186 +KMKX, 42.9678, -88.5506, 0, 9999, 0, 9999, -1.02217313907228E7, -9471731.3907228, 4926324.005824932, 5676324.005824932 +KFFC, 33.3633, -84.5658, 0, 9999, 0, 9999, -9778625.920565033, -9028625.920565033, 3564354.6012489176, 4314354.601248918 +KRAX, 35.6653, -78.49, 0, 9999, 0, 9999, -9103003.501476359, -8353003.501476359, 3875056.2431287495, 4625056.24312875 +TSJU, 18.474, -66.179, 0, 9999, 0, 9999, -7734033.554901312, -6984033.554901312, 1715837.7566405055, 2465837.7566405055 +TEWR, 40.593, -74.27, 0, 9999, 0, 9999, -8633744.044523496, -7883744.044523496, 4572129.424240004, 5322129.424240004 +KOHX, 36.2472, -86.5625, 0, 9999, 0, 9999, -1.0000656811014745E7, -9250656.811014745, 3954994.4466392566, 4704994.446639257 +TSDF, 38.046, -85.61, 0, 9999, 0, 9999, -9894739.836430006, -9144739.836430006, 4205959.2082917625, 4955959.2082917625 +TMDW, 41.651, -87.73, 0, 9999, 0, 9999, -1.0130481554140924E7, -9380481.554140924, 4728310.1952468455, 5478310.1952468455 +KBOX, 41.9558, -71.1369, 0, 9999, 0, 9999, -8285346.697466858, -7535346.697466858, 4773778.237426384, 5523778.237426384 +KINX, 36.175, -95.5641, 0, 9999, 0, 9999, -1.1001625040329175E7, -1.0251625040329175E7, 3945043.892770014, 4695043.892770014 +KPBZ, 40.5317, -80.2179, 0, 9999, 0, 9999, -9295144.121303102, -8545144.121303102, 4563156.795866982, 5313156.795866982 +TOKC, 35.276, -97.51, 0, 9999, 0, 9999, -1.1218007025467701E7, -1.0468007025467701E7, 3821901.4983571237, 4571901.498357124 +KTBW, 27.7053, -82.4019, 0, 9999, 0, 9999, -9538002.570114726, -8788002.570114726, 2833390.7175739687, 3583390.7175739687 +TSTL, 38.805, -90.489, 0, 9999, 0, 9999, -1.0437279383935463E7, -9687279.383935463, 4313694.1490931325, 5063694.1490931325 +TORD, 41.797, -87.858, 0, 9999, 0, 9999, -1.0144715016342338E7, -9394715.016342338, 4750062.520964211, 5500062.520964211 +KCLE, 41.4131, -81.86, 0, 9999, 0, 9999, -9477743.87349796, -8727743.87349796, 4692971.156224339, 5442971.156224339 +TMIA, 25.758, -80.491, 0, 9999, 0, 9999, -9325512.547296898, -8575512.547296898, 2590923.1487431144, 3340923.1487431144 +THOU, 29.516, -95.242, 0, 9999, 0, 9999, -1.0965807867086401E7, -1.0215807867086401E7, 3062759.253019818, 3812759.253019818 +TICH, 37.507, -97.437, 0, 9999, 0, 9999, -1.1209889504055958E7, -1.0459889504055958E7, 4130128.962640621, 4880128.962640621 +TDAL, 32.926, -96.968, 0, 9999, 0, 9999, -1.115773720895859E7, -1.040773720895859E7, 3506277.5430936273, 4256277.543093627 +KIND, 39.7075, -86.2803, 0, 9999, 0, 9999, -9969276.474817565, -9219276.474817565, 4443303.331774762, 5193303.331774762 +KLWX, 38.9761, -77.4875, 0, 9999, 0, 9999, -8991526.580719192, -8241526.580719192, 4338138.463976169, 5088138.463976169 +TDCA, 38.759, -76.962, 0, 9999, 0, 9999, -8933091.546446983, -8183091.546446983, 4307132.3497667415, 5057132.3497667415 +TDEN, 39.728, -104.526, 0, 9999, 0, 9999, -1.1998178672382697E7, -1.1248178672382697E7, 4446266.895383304, 5196266.895383304 +KCRI, 35.2383, -97.4603, 0, 9999, 0, 9999, -1.121248043897231E7, -1.046248043897231E7, 3816767.5821008375, 4566767.5821008375 diff --git a/rpms/awips2.core/Installer.localization/radar_maps.sh b/rpms/awips2.core/Installer.localization/radar_maps.sh new file mode 100755 index 0000000000..6fb28081c0 --- /dev/null +++ b/rpms/awips2.core/Installer.localization/radar_maps.sh @@ -0,0 +1,48 @@ +#!/bin/bash + +BUILD_DIR=/home/awips/awips2-builds/rpms/awips2.core/Installer.localization/ +CAVE_DIR=$BUILD_DIR/utility/cave_static/bundles/scales/radar/ +mkdir -p $CAVE_DIR +rm -rf $CAVE_DIR/* +file=$BUILD_DIR/coords_wsr88d.dat + +for site in $(cat $file |cut -c -4) +do + lat=$(cat $file |grep $site | cut -d"," -f2 | tr -d '[[:space:]]') + lon=$(cat $file |grep $site | cut -d"," -f3 | tr -d '[[:space:]]') + lowx=$(cat $file |grep $site | cut -d"," -f4 | tr -d '[[:space:]]') + highx=$(cat $file |grep $site | cut -d"," -f5 | tr -d '[[:space:]]') + lowy=$(cat $file |grep $site | cut -d"," -f6 | tr -d '[[:space:]]') + highy=$(cat $file |grep $site | cut -d"," -f7 | tr -d '[[:space:]]') + minx=$(cat $file |grep $site | cut -d"," -f8 | tr -d '[[:space:]]') + maxx=$(cat $file |grep $site | cut -d"," -f9 | tr -d '[[:space:]]') + miny=$(cat $file |grep $site | cut -d"," -f10 | tr -d '[[:space:]]') + maxy=$(cat $file |grep $site | cut -d"," -f11 | tr -d '[[:space:]]') + + sitell=$(echo $site | tr '[:upper:]' '[:lower:]') + cp -R $BUILD_DIR/utility/cave_static/bundles/scales/RadarTwoPanel.xml $CAVE_DIR/Radar_$sitell.xml + grep -rl 'LOWX' $CAVE_DIR/Radar_$sitell.xml | xargs sed -i 's/LOWX/'$lowx'/g' + grep -rl 'HIGHX' $CAVE_DIR/Radar_$sitell.xml | xargs sed -i 's/HIGHX/'$highx'/g' + grep -rl 'LOWY' $CAVE_DIR/Radar_$sitell.xml | xargs sed -i 's/LOWY/'$lowy'/g' + grep -rl 'HIGHY' $CAVE_DIR/Radar_$sitell.xml | xargs sed -i 's/HIGHY/'$highy'/g' + grep -rl 'MINX' $CAVE_DIR/Radar_$sitell.xml | xargs sed -i 's/MINX/'$minx'/g' + grep -rl 'MAXX' $CAVE_DIR/Radar_$sitell.xml | xargs sed -i 's/MAXX/'$maxx'/g' + grep -rl 'MINY' $CAVE_DIR/Radar_$sitell.xml | xargs sed -i 's/MINY/'$miny'/g' + grep -rl 'MAXY' $CAVE_DIR/Radar_$sitell.xml | xargs sed -i 's/MAXY/'$maxy'/g' + grep -rl 'XXX' $CAVE_DIR/Radar_$sitell.xml | xargs sed -i 's/XXX/'$site'/g' + grep -rl 'xxx' $CAVE_DIR/Radar_$sitell.xml | xargs sed -i 's/xxx/'$sitell'/g' + grep -rl 'LATITUDE' $CAVE_DIR/Radar_$sitell.xml | xargs sed -i 's/LATITUDE/'$lat'/g' + grep -rl 'LONGITUDE' $CAVE_DIR/Radar_$sitell.xml | xargs sed -i 's/LONGITUDE/'$lon'/g' + +done + + +cp $CAVE_DIR/* /home/awips/awips2-builds/cave/com.raytheon.viz.radar/localization/bundles/site/ +rm -rf /home/awips/awips2-builds/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_comp.xml +rm -rf /home/awips/awips2-builds/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_info.xml +rm -rf /home/awips/awips2-builds/cave/com.raytheon.viz.radar/localization/bundles/site/Radar_proc.xml + +# com.raytheon.viz.radar/localization/bundles/site/Radar_comp.xml +# com.raytheon.viz.radar/localization/bundles/site/Radar_info.xml +# com.raytheon.viz.radar/localization/bundles/site/Radar_proc.xml + diff --git a/rpms/awips2.core/Installer.localization/utility/cave_static/bundles/scales/RadarTwoPanel.xml b/rpms/awips2.core/Installer.localization/utility/cave_static/bundles/scales/RadarTwoPanel.xml new file mode 100644 index 0000000000..4ca30d694d --- /dev/null +++ b/rpms/awips2.core/Installer.localization/utility/cave_static/bundles/scales/RadarTwoPanel.xml @@ -0,0 +1,300 @@ + + + + + + + + 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/rpms/awips2.core/Installer.localization/utility/cave_static/bundles/scales/Regional.xml b/rpms/awips2.core/Installer.localization/utility/cave_static/bundles/scales/Regional.xml index cd88b473ca..865c6168f0 100644 --- a/rpms/awips2.core/Installer.localization/utility/cave_static/bundles/scales/Regional.xml +++ b/rpms/awips2.core/Installer.localization/utility/cave_static/bundles/scales/Regional.xml @@ -1,131 +1,87 @@ - - - - - - - - - - - - PLAN_VIEW - - - - - + + + + - - - - PLAN_VIEW + + + + - - + + - - World - mapdata.world
- the_geom - name not in ('CANADA', 'MEXICO', 'UNITED STATES') + + + + 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 +
+
+ State/County Boundaries
- - - - - - - 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
-
-
- State/County Boundaries -
-
- - 12 - - PROJCS["Lambert_Conformal_Conic_1SP", + 2147483647 + + PROJCS["Mercator_1SP", GEOGCS["WGS84(DD)", DATUM["WGS84", SPHEROID["WGS84", 6378137.0, 298.257223563]], @@ -133,18 +89,21 @@ 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", LONGITUDE], - PARAMETER["latitude_of_origin", LATITUDE], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["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 + + + + + diff --git a/rpms/awips2.core/Installer.localization/utility/cave_static/bundles/scales/States.xml b/rpms/awips2.core/Installer.localization/utility/cave_static/bundles/scales/States.xml deleted file mode 100644 index 925731d47f..0000000000 --- a/rpms/awips2.core/Installer.localization/utility/cave_static/bundles/scales/States.xml +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - PLAN_VIEW - - - - - - - - - - - - PLAN_VIEW - - - - - - State Boundaries Zoom - mapdata.states
- the_geom -
-
- - - - - - - PLAN_VIEW - - - - - - State Boundaries - mapdata.states
- the_geom -
-
- - - - - - - - PLAN_VIEW - - - - - - County Boundaries - mapdata.county
-
-
- State/County Boundaries -
-
- - 12 - - - 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", LONGITUDE], - PARAMETER["latitude_of_origin", LATITUDE], - PARAMETER["false_easting", 0.0], - PARAMETER["false_northing", 0.0], - UNIT["m", 1.0], - AXIS["Easting", EAST], - AXIS["Northing", NORTH]] - -
-
-
-
diff --git a/rpms/awips2.core/Installer.localization/utility/cave_static/bundles/scales/WFO.xml b/rpms/awips2.core/Installer.localization/utility/cave_static/bundles/scales/WFO.xml index 974c5ff171..248cba5a9b 100644 --- a/rpms/awips2.core/Installer.localization/utility/cave_static/bundles/scales/WFO.xml +++ b/rpms/awips2.core/Installer.localization/utility/cave_static/bundles/scales/WFO.xml @@ -1,165 +1,153 @@ - - - - - - - - PLAN_VIEW - - - - - - - - - - - - - - Interstates - mapdata.interstate
- the_geom -
-
- - - - - - - PLAN_VIEW - - - - - + + + + - - - - 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 Zoom + mapdata.states
+ the_geom +
+
+ State/County Boundaries +
+
+ + + PLAN_VIEW + + + + + + + + + + + - State Boundaries - mapdata.states
+ Local CWA Boundary + mapdata.cwa
+ wfo = 'XXX' the_geom
- - - - - PLAN_VIEW + + + + + + + + - - + + - - County Boundaries - mapdata.county
+ + Cities + mapdata.city
the_geom + prog_disc
- State/County Boundaries -
-
- - - - - - - - PLAN_VIEW - - - - - - Local CWA Boundary - mapdata.cwa
- wfo = 'XXX' - the_geom -
-
- - - PLAN_VIEW - - - - - - - - - - - - - - Cities - mapdata.city
- the_geom - prog_disc -
-
- - 12 - - PROJCS["Equidistant_Cylindrical", - GEOGCS["WGS84(DD)", - DATUM["WGS84", - SPHEROID["WGS84", 6378137.0, 298.257223563]], - PRIMEM["Greenwich", 0.0], - UNIT["degree", 0.017453292519943295], - AXIS["Geodetic longitude", EAST], - AXIS["Geodetic latitude", NORTH]], - PROJECTION["Equidistant_Cylindrical"], - PARAMETER["semi_major", 6371229.0], - PARAMETER["semi_minor", 6371229.0], - PARAMETER["central_meridian", LONGITUDE], - PARAMETER["latitude_of_origin", LATITUDE], - PARAMETER["standard_parallel_1", 0.0], - PARAMETER["false_easting", 0.0], - PARAMETER["false_northing", 0.0], - UNIT["m", 1.0], - AXIS["Easting", EAST], - AXIS["Northing", NORTH]] - - -
-
-
-
- + 2147483647 + + PROJCS["Mercator_1SP", + GEOGCS["WGS84(DD)", + DATUM["WGS84", + SPHEROID["WGS84", 6378137.0, 298.257223563]], + PRIMEM["Greenwich", 0.0], + UNIT["degree", 0.017453292519943295], + AXIS["Geodetic longitude", EAST], + AXIS["Geodetic latitude", NORTH]], + PROJECTION["Mercator_1SP"], + PARAMETER["semi_major", 6371229.0], + PARAMETER["semi_minor", 6371229.0], + PARAMETER["latitude_of_origin", 0.0], + PARAMETER["central_meridian", 0.0], + PARAMETER["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 + + + + + diff --git a/rpms/awips2.upc/Installer.edex-upc/programs/edex b/rpms/awips2.upc/Installer.edex-upc/programs/edex index 9caa6d65e8..bbf6f293e0 100755 --- a/rpms/awips2.upc/Installer.edex-upc/programs/edex +++ b/rpms/awips2.upc/Installer.edex-upc/programs/edex @@ -209,8 +209,8 @@ edit_pg() { # edex pg_hba.conf } edit_ldm() { # edex ldmd.conf and registry.xml - sed -i.setup_$YMD 's/EDEX_HOSTNAME/'$HOSTNAME'/g' $LDMD_CONF - echo '[edit] Hostname '$HOSTNAME' added to '$LDMD_CONF + sed -i.setup_$YMD 's/EDEX_HOSTNAME/localhost/g' $LDMD_CONF + echo '[edit] Hostname localhost added to '$LDMD_CONF } @@ -241,11 +241,8 @@ edex_ipexit() { # abandon ip editing, post msg to guide manual edits echo -e ' You may need to MANUALLY EDIT the following files' echo -e '\n'$editCom echo -e ' for EDEX to work properly. \n' - #echo -e ' All instances of "localhost" should be replaced with the' - #echo -e ' fully-qualified hostname of your machine.\n' echo -e ' Special notes:' echo -e ' '$PG_FILE' *must* contain your subdomain.' - echo -e ' '$PY_FILE' *must* contain "Group fxalpha", not "Group awips"' echo '' } diff --git a/rpms/awips2.upc/Installer.ldm/patch/bin/gini b/rpms/awips2.upc/Installer.ldm/patch/bin/gini new file mode 100755 index 0000000000..c3df499de7 --- /dev/null +++ b/rpms/awips2.upc/Installer.ldm/patch/bin/gini @@ -0,0 +1,36 @@ +#!/bin/bash -f +# +# usage: gini DAA +# this will create and ingest an uncompressed GINI file in EDEX +# + +if [[ ! -e /home/gempak/GEMPAK7/Gemenviron.profile ]]; then + exit +fi +. /home/gempak/GEMPAK7/Gemenviron.profile +RAD=/awips2/data_store/radar ; export RAD +if [[ ! -e $OS_BIN/nex2gini ]]; then + exit +fi +nex2gini << EOF +GRDAREA = 23;-120;47.2634;-63.5664 +PROJ = lcc/40;-100;40 +KXKY = 2368;1500 +CPYFIL = +GFUNC = ${1} +RADTIM = current +RADDUR = 30 +RADFRQ = 0 +STNFIL = nexrad.tbl +RADMODE = +SATFIL = nexrcomp_${1}_YYYYMMDD_HHNN +COMPRESS= no +r + +e +EOF + +files=$(ls | grep ${1}) +mv $files /awips2/edex/data/manual/ + +exit diff --git a/rpms/awips2.upc/Installer.ldm/patch/cron/awips b/rpms/awips2.upc/Installer.ldm/patch/cron/awips index 98e5f5840f..2f63a563c0 100644 --- a/rpms/awips2.upc/Installer.ldm/patch/cron/awips +++ b/rpms/awips2.upc/Installer.ldm/patch/cron/awips @@ -1,3 +1,6 @@ -0 * * * * /awips2/ldm/bin/ldmadmin scour >> /awips2/ldm/logs/scour.log 2>&1 +#0 * * * * /awips2/ldm/bin/ldmadmin scour >> /awips2/ldm/logs/scour.log 2>&1 # rotate logs 0 17 * * * /awips2/ldm/bin/ldmadmin newlog +# nex2gini for daa and dta (lower case) +0,5,10,15,17,20,25,30,35,40,45,50,55 * * * * /awips2/tools/bin/gini daa >& /dev/null 2>&1 +0,5,10,15,17,20,25,30,35,40,45,50,55 * * * * /awips2/tools/bin/gini dta >& /dev/null 2>&1 diff --git a/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.conf b/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.conf index ef3704f7f0..86bbcf95d1 100644 --- a/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.conf +++ b/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.conf @@ -53,7 +53,7 @@ # are started by the "exec" command and are in the same process group. # EXEC "pqact -e" -EXEC "edexBridge -s EDEX_HOSTNAME" +EXEC "edexBridge -s localhost" # # rtstats uses the LDM to send product latency statistics to the UPC. # For more info on rtstats please see the man page. @@ -92,24 +92,25 @@ EXEC "rtstats -h rtstats.unidata.ucar.edu" # # DEFAULT # -REQUEST NEXRAD3 ".*" idd.unidata.ucar.edu +REQUEST NEXRAD3 ".*/p(DHR|DPR|DSP|DTA|DAA|DVL|EET|HHC|N0Q|N0S|N0U|OHA).*" idd.unidata.ucar.edu REQUEST FNEXRAD|IDS|DDPLUS|UNIWISC ".*" idd.unidata.ucar.edu REQUEST NGRID ".*" idd.unidata.ucar.edu -REQUEST NOTHER|HDS|NIMAGE ".*" idd.unidata.ucar.edu +REQUEST NOTHER "^TIP... KNES.*" idd.unidata.ucar.edu +REQUEST HDS|NIMAGE ".*" idd.unidata.ucar.edu #REQUEST LIGHTNING ".*" idd.unidata.ucar.edu # # By default CONDUIT will ingest GFS0.5deg, NAM12, NAM40, RAP40 # -REQUEST CONDUIT ".[0]$" idd.unidata.ucar.edu -REQUEST CONDUIT ".[1]$" idd.unidata.ucar.edu -REQUEST CONDUIT ".[2]$" idd.unidata.ucar.edu -REQUEST CONDUIT ".[3]$" idd.unidata.ucar.edu -REQUEST CONDUIT ".[4]$" idd.unidata.ucar.edu -REQUEST CONDUIT ".[5]$" idd.unidata.ucar.edu -REQUEST CONDUIT ".[6]$" idd.unidata.ucar.edu -REQUEST CONDUIT ".[7]$" idd.unidata.ucar.edu -REQUEST CONDUIT ".[8]$" idd.unidata.ucar.edu -REQUEST CONDUIT ".[9]$" idd.unidata.ucar.edu +REQUEST CONDUIT ".(pgrb2.0p50|awip12|awip3d|awp236|awp252|nwstg/NWS_0).[0]$" idd.unidata.ucar.edu +REQUEST CONDUIT ".(pgrb2.0p50|awip12|awip3d|awp236|awp252|nwstg/NWS_0).[1]$" idd.unidata.ucar.edu +REQUEST CONDUIT ".(pgrb2.0p50|awip12|awip3d|awp236|awp252|nwstg/NWS_0).[2]$" idd.unidata.ucar.edu +REQUEST CONDUIT ".(pgrb2.0p50|awip12|awip3d|awp236|awp252|nwstg/NWS_0).[3]$" idd.unidata.ucar.edu +REQUEST CONDUIT ".(pgrb2.0p50|awip12|awip3d|awp236|awp252|nwstg/NWS_0).[4]$" idd.unidata.ucar.edu +REQUEST CONDUIT ".(pgrb2.0p50|awip12|awip3d|awp236|awp252|nwstg/NWS_0).[5]$" idd.unidata.ucar.edu +REQUEST CONDUIT ".(pgrb2.0p50|awip12|awip3d|awp236|awp252|nwstg/NWS_0).[6]$" idd.unidata.ucar.edu +REQUEST CONDUIT ".(pgrb2.0p50|awip12|awip3d|awp236|awp252|nwstg/NWS_0).[7]$" idd.unidata.ucar.edu +REQUEST CONDUIT ".(pgrb2.0p50|awip12|awip3d|awp236|awp252|nwstg/NWS_0).[8]$" idd.unidata.ucar.edu +REQUEST CONDUIT ".(pgrb2.0p50|awip12|awip3d|awp236|awp252|nwstg/NWS_0).[9]$" idd.unidata.ucar.edu # # NLDN (Restricted Access) #