Merge branch 'master_14.2.2' (14.2.2-9) into omaha_14.2.2

Former-commit-id: 85850ed33e [formerly 85850ed33e [formerly b1bf5bdc4a81c55c9cd30ac77857509a2e8f5a08]]
Former-commit-id: a6aa34210c
Former-commit-id: 0ebb502663
This commit is contained in:
Steve Harris 2014-05-15 08:12:49 -05:00
commit ba87dbd03f
205 changed files with 7632 additions and 4647 deletions

View file

@ -317,10 +317,6 @@
<param name="feature"
value="com.raytheon.uf.viz.gisdatastore.feature" />
</antcall>
<antcall target="p2.build.repo">
<param name="feature"
value="com.raytheon.viz.dataaccess.feature" />
</antcall>
<antcall target="p2.build.repo">
<param name="feature"
value="com.raytheon.uf.viz.d2d.ui.awips.feature" />

View file

@ -76,6 +76,7 @@ import com.raytheon.uf.viz.d2d.core.D2DLoadProperties;
* Feb 10, 2009 chammack Initial creation
* Jul 03, 2013 2159 bsteffen Synchronize TimeCache access.
* Aug 9, 2013 DR 16448 D. Friedman Validate time match basis in redoTimeMatching
* May 5, 2014 DR 17201 D. Friedman Make same-radar time matching work more like A1.
*
* </pre>
*
@ -133,7 +134,7 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
protected transient AbstractVizResource<?, ?> timeMatchBasis;
private IDisposeListener timeMatchBasisDisposeListener = new IDisposeListener() {
private final IDisposeListener timeMatchBasisDisposeListener = new IDisposeListener() {
@Override
public void disposed(AbstractVizResource<?, ?> resource) {
@ -168,7 +169,7 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
private AbstractTimeMatchingConfigurationFactory configFactory;
private Map<AbstractVizResource<?, ?>, TimeCache> timeCacheMap = new IdentityHashMap<AbstractVizResource<?, ?>, D2DTimeMatcher.TimeCache>();
private final Map<AbstractVizResource<?, ?>, TimeCache> timeCacheMap = new IdentityHashMap<AbstractVizResource<?, ?>, D2DTimeMatcher.TimeCache>();
/**
* Default Constructor.
@ -184,6 +185,7 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
}
}
@Override
public void redoTimeMatching(AbstractVizResource<?, ?> resource) {
TimeCache cache = null;
synchronized (timeCacheMap) {
@ -230,8 +232,9 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
@Override
public void redoTimeMatching(IDescriptor descriptor) throws VizException {
synchronized (this) {
if (timeMatchBasis != null && timeMatchBasis.getDescriptor() == descriptor &&
! validateTimeMatchBasis(descriptor)) {
if ((timeMatchBasis != null)
&& (timeMatchBasis.getDescriptor() == descriptor)
&& !validateTimeMatchBasis(descriptor)) {
changeTimeMatchBasis(null);
}
if (timeMatchBasis != null) {
@ -265,7 +268,7 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
AbstractVizResource<?, ?> rsc = pairIterator.next()
.getResource();
recursiveOverlay(descriptor, new FramesInfo(timeSteps, -1,
resourceTimeMap), rsc);
resourceTimeMap), rsc, resourceTimeMap);
}
// Update the descriptor to the new times.
@ -287,7 +290,7 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
int oldIndex, DataTime[] frames, int startFrame) {
int frameToUse = startFrame;
IRenderableDisplay display = descriptor.getRenderableDisplay();
if (display != null && display.getContainer() != null) {
if ((display != null) && (display.getContainer() != null)) {
IDisplayPaneContainer container = display.getContainer();
if (container.getLoopProperties().isLooping()) {
return frameToUse;
@ -295,7 +298,7 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
}
switch (descriptor.getFrameCoordinator().getAnimationMode()) {
case Latest: {
if (oldIndex == oldTimes.length - 1) {
if (oldIndex == (oldTimes.length - 1)) {
frameToUse = frames.length - 1;
}
break;
@ -337,22 +340,23 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
*/
private int determineNewIndex(IDescriptor descriptor, FramesInfo currInfo,
DataTime[] timeSteps) {
if (timeSteps == null || timeSteps.length == 0) {
if ((timeSteps == null) || (timeSteps.length == 0)) {
return -1;
}
// If possible just copy from the time match basis
if (timeMatchBasis.getDescriptor() != null
&& timeMatchBasis.getDescriptor() != descriptor) {
if ((timeMatchBasis.getDescriptor() != null)
&& (timeMatchBasis.getDescriptor() != descriptor)) {
int idx = timeMatchBasis.getDescriptor().getFramesInfo()
.getFrameIndex();
if (idx >= 0 && idx < timeSteps.length) {
if ((idx >= 0) && (idx < timeSteps.length)) {
return idx;
}
}
// Next try to get the closest time to
DataTime[] origSteps = currInfo.getFrameTimes();
int curIndex = currInfo.getFrameIndex();
if (origSteps != null && curIndex >= 0 && curIndex < origSteps.length) {
if ((origSteps != null) && (curIndex >= 0)
&& (curIndex < origSteps.length)) {
DataTime startTime = origSteps[curIndex];
int dateIndex = Arrays.binarySearch(timeSteps, startTime);
if (dateIndex < 0) {
@ -362,7 +366,7 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
} else {
dateIndex = indexToUpdateTo(descriptor, origSteps, curIndex,
timeSteps, dateIndex);
if (dateIndex >= 0 && dateIndex < timeSteps.length - 1) {
if ((dateIndex >= 0) && (dateIndex < (timeSteps.length - 1))) {
return dateIndex;
}
}
@ -379,20 +383,24 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
* the descriptor that is being updated
* @param rsc
* the resource being updated.
* @param resourceTimeMap
* map of all previously time matched resources.
* @param frameTimesSoure
* map of all previously time matched resources that may be used
* to determine the frame times
* @throws VizException
*/
private void recursiveOverlay(IDescriptor descriptor,
FramesInfo framesInfo, AbstractVizResource<?, ?> rsc)
FramesInfo framesInfo, AbstractVizResource<?, ?> rsc,
Map<AbstractVizResource<?, ?>, DataTime[]> frameTimesSoure)
throws VizException {
if (rsc == null) {
return;
}
if (rsc instanceof IResourceGroup) {
Map<AbstractVizResource<?, ?>, DataTime[]> completed = new HashMap<AbstractVizResource<?, ?>, DataTime[]>(
frameTimesSoure);
for (ResourcePair rp : ((IResourceGroup) rsc).getResourceList()) {
AbstractVizResource<?, ?> rsc1 = rp.getResource();
recursiveOverlay(descriptor, framesInfo, rsc1);
recursiveOverlay(descriptor, framesInfo, rsc1, completed);
}
}
@ -401,18 +409,24 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
.getLoadProperties());
TimeCache timeCache = getTimeCache(rsc);
synchronized (timeCache) {
DataTime[] timeSteps = getFrameTimes(descriptor, framesInfo);
DataTime[] timeSteps = getFrameTimes(descriptor, framesInfo,
frameTimesSoure);
if (Arrays.equals(timeSteps, timeCache.getLastBaseTimes())) {
framesInfo.getTimeMap().put(rsc,
timeCache.getLastFrameTimes());
} else {
config = config.clone();
if (config.getDataTimes() == null
|| config.getDataTimes().length < 1) {
if ((config.getDataTimes() == null)
|| (config.getDataTimes().length < 1)) {
config.setDataTimes(getLatestTimes(rsc));
}
populateConfiguration(config);
DataTime[] overlayDates = TimeMatcher.makeOverlayList(
TimeMatcher tm = new TimeMatcher();
if (rsc instanceof ID2DTimeMatchingExtension) {
((ID2DTimeMatchingExtension) rsc).modifyTimeMatching(
this, rsc, tm);
}
DataTime[] overlayDates = tm.makeOverlayList(
config.getDataTimes(), config.getClock(),
timeSteps, config.getLoadMode(),
config.getForecast(), config.getDelta(),
@ -429,15 +443,16 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
* is the timeMatchBasisTimes, for four panel it is a bit more complex.
*
* @param descriptor
* @param rsc
* @param resourceTimeMap
* @param frameInfo
* @param frameTimesSoure
* @return
*/
private DataTime[] getFrameTimes(IDescriptor descriptor,
FramesInfo frameInfo) {
FramesInfo frameInfo,
Map<AbstractVizResource<?, ?>, DataTime[]> frameTimesSource) {
DataTime[] descTimes = frameInfo.getFrameTimes();
if (timeMatchBasis != null
&& timeMatchBasis.getDescriptor() == descriptor) {
if ((timeMatchBasis != null)
&& (timeMatchBasis.getDescriptor() == descriptor)) {
return descTimes;
}
@ -448,17 +463,17 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
DataTime[] times = new DataTime[frameInfo.getFrameCount()];
for (ResourcePair rp : descriptor.getResourceList()) {
DataTime[] rscTimes = frameInfo.getTimeMap().get(rp.getResource());
if (rscTimes == null || rscTimes.length != times.length) {
DataTime[] rscTimes = frameTimesSource.get(rp.getResource());
if ((rscTimes == null) || (rscTimes.length != times.length)) {
if (rp.getResource() instanceof IResourceGroup) {
// Descend into resource groups.
for (ResourcePair rp1 : ((IResourceGroup) rp.getResource())
.getResourceList()) {
rscTimes = frameInfo.getTimeMap()
.get(rp1.getResource());
if (rscTimes != null && rscTimes.length == times.length) {
rscTimes = frameTimesSource.get(rp1.getResource());
if ((rscTimes != null)
&& (rscTimes.length == times.length)) {
for (int i = 0; i < times.length; i++) {
if (times[i] == null && rscTimes[i] != null) {
if ((times[i] == null) && (rscTimes[i] != null)) {
times[i] = rscTimes[i];
}
}
@ -468,13 +483,13 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
continue;
}
for (int i = 0; i < times.length; i++) {
if (times[i] == null && rscTimes[i] != null) {
if ((times[i] == null) && (rscTimes[i] != null)) {
times[i] = rscTimes[i];
}
}
}
for (int i = 0; i < times.length; i++) {
if (times[i] == null && descTimes[i] != null) {
if ((times[i] == null) && (descTimes[i] != null)) {
times[i] = descTimes[i];
}
}
@ -498,8 +513,8 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
DataTime[] times = null;
synchronized (timeCache) {
times = timeCache.getLastFrameTimes();
if (times == null || timeCache.getLastBaseTimes() != null
|| timeCache.getLastFrameCount() != numberOfFrames) {
if ((times == null) || (timeCache.getLastBaseTimes() != null)
|| (timeCache.getLastFrameCount() != numberOfFrames)) {
times = makeEmptyLoadList(numberOfFrames, timeMatchBasis);
timeCache.setTimes(null, times, numberOfFrames);
}
@ -556,17 +571,18 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
*/
private DataTime[] makeEmptyLoadList(int numberOfFrames,
AbstractVizResource<?, ?> rsc) throws VizException {
if (timeMatchBasis != null && rsc != timeMatchBasis) {
if ((timeMatchBasis != null) && (rsc != timeMatchBasis)) {
throw new IllegalArgumentException(
"Cannot make Empty Load List for a resource which is not the Time Match Basis.");
}
TimeMatchingConfiguration config = getConfiguration(
rsc.getLoadProperties()).clone();
if (config.getDataTimes() == null || config.getDataTimes().length < 1) {
if ((config.getDataTimes() == null)
|| (config.getDataTimes().length < 1)) {
config.setDataTimes(getLatestTimes(rsc));
if (config.getDataTimes() == null
|| config.getDataTimes().length < 1) {
if ((config.getDataTimes() == null)
|| (config.getDataTimes().length < 1)) {
return null;
}
}
@ -574,7 +590,7 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
DataTime[] timeSteps = TimeMatcher.makeEmptyLoadList(
config.getDataTimes(), config.getClock(), numberOfFrames,
config.getLoadMode(), config.getForecast(), config.getDelta());
if (timeSteps == null || timeSteps.length == 0) {
if ((timeSteps == null) || (timeSteps.length == 0)) {
return null;
}
changeTimeMatchBasis(rsc);
@ -656,8 +672,8 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
Arrays.sort(config.getDataTimes());
if (config.getClock() == null) {
if (SimulatedTime.getSystemTime().isRealTime()
&& config.getDataTimes() != null
&& config.getDataTimes().length != 0) {
&& (config.getDataTimes() != null)
&& (config.getDataTimes().length != 0)) {
config.setClock(config.getDataTimes()[config.getDataTimes().length - 1]
.getValidTime().getTime());
} else {
@ -834,12 +850,12 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
if (timeMatchBasis == null) {
config = configFactory.getConfiguration(loadProps, this,
availableTimes, descriptor);
if (config == null || config.isCancel()) {
if ((config == null) || config.isCancel()) {
return dataTimesToLoad;
}
config = config.clone();
if (config.getDataTimes() == null
|| config.getDataTimes().length < 1) {
if ((config.getDataTimes() == null)
|| (config.getDataTimes().length < 1)) {
config.setDataTimes(availableTimes);
}
populateConfiguration(config);
@ -850,26 +866,27 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
} else {
config = configFactory.getOverlayConfiguration(loadProps, this,
availableTimes, descriptor);
if (config == null || config.isCancel()) {
if ((config == null) || config.isCancel()) {
return dataTimesToLoad;
}
config = config.clone();
if (config.getDataTimes() == null
|| config.getDataTimes().length < 1) {
if ((config.getDataTimes() == null)
|| (config.getDataTimes().length < 1)) {
config.setDataTimes(availableTimes);
}
populateConfiguration(config);
DataTime[] existingDataTimes = getFrameTimes(descriptor,
descriptor.getFramesInfo());
descriptor.getFramesInfo(), descriptor.getFramesInfo()
.getTimeMap());
dataTimesToLoad = TimeMatcher.makeOverlayList(
config.getDataTimes(), config.getClock(),
existingDataTimes, config.getLoadMode(),
TimeMatcher tm = new TimeMatcher();
dataTimesToLoad = tm.makeOverlayList(config.getDataTimes(),
config.getClock(), existingDataTimes, config.getLoadMode(),
config.getForecast(), config.getDelta(),
config.getTolerance());
if (timeMatchBasis.getDescriptor() != null
&& timeMatchBasis.getDescriptor() != descriptor) {
if ((timeMatchBasis.getDescriptor() != null)
&& (timeMatchBasis.getDescriptor() != descriptor)) {
// Still use my times, but the index from the time match basis
FramesInfo myFi = descriptor.getFramesInfo();
FramesInfo tmFi = timeMatchBasis.getDescriptor()
@ -1052,11 +1069,12 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
resetMultiload();
}
@Override
public void resetMultiload() {
configFactory.resetMultiload();
}
private boolean validateTimeMatchBasis(IDescriptor descriptor ) {
private boolean validateTimeMatchBasis(IDescriptor descriptor) {
/*
* If a resource is shared by multiple panels (this can be the case with
* tools, at least), then it is necessary to search all of them as
@ -1064,14 +1082,14 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
* this condition to occur?
*/
IRenderableDisplay display = descriptor.getRenderableDisplay();
IDisplayPaneContainer container = display != null ?
display.getContainer() : null;
IDisplayPaneContainer container = display != null ? display
.getContainer() : null;
if (container != null) {
for (IDisplayPane pane : container.getDisplayPanes()) {
IRenderableDisplay paneDisplay = pane.getRenderableDisplay();
IDescriptor paneDescriptor = paneDisplay != null ?
paneDisplay.getDescriptor() : null;
if (paneDescriptor != null
IDescriptor paneDescriptor = paneDisplay != null ? paneDisplay
.getDescriptor() : null;
if ((paneDescriptor != null)
&& validateTimeMatchBasis(paneDescriptor
.getResourceList())) {
return true;
@ -1091,10 +1109,10 @@ public class D2DTimeMatcher extends AbstractTimeMatcher {
} else if (rp.getProperties().isMapLayer()
|| rp.getProperties().isSystemResource()) {
continue;
} else if (rsc != null
&& rsc.getResourceData() instanceof IResourceGroup) {
if (validateTimeMatchBasis(((IResourceGroup) rsc.getResourceData())
.getResourceList())) {
} else if ((rsc != null)
&& (rsc.getResourceData() instanceof IResourceGroup)) {
if (validateTimeMatchBasis(((IResourceGroup) rsc
.getResourceData()).getResourceList())) {
return true;
}
}

View file

@ -0,0 +1,20 @@
package com.raytheon.uf.viz.d2d.core.time;
import com.raytheon.uf.viz.core.rsc.AbstractVizResource;
/**
* Allows a resource to modify time matching behavior
*
* <pre>
*
* SOFTWARE HISTORY
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* 2014-05-05 DR 17201 D. Friedman Initial revision.
*
* </pre>
*
*/
public interface ID2DTimeMatchingExtension {
public void modifyTimeMatching(D2DTimeMatcher d2dTimeMatcher, AbstractVizResource<?, ?> rsc, TimeMatcher timeMatcher);
}

View file

@ -51,6 +51,7 @@ import com.raytheon.uf.common.time.DataTimeComparator;
* Jun 19, 2007 chammack Initial Creation.
* May 31, 2013 15908 dhuffman Removed a null from a method call to
* cease a null pointer exception.
* May 5, 2014 DR 17201 D. Friedman Make same-radar time matching work more like A1.
* Aug 08, 2013 2245 bsteffen Make all DataTime comparisons consistent.
*
* </pre>
@ -97,15 +98,15 @@ public class TimeMatcher {
// 6 hours in seconds
private static final long SIX_HOURS_S = ONE_HOUR_S * 6;
private static boolean radarOnRadarYes = false;
public static final float DEFAULT_TOLERANCE_FACTOR = 0.6f;
private static long autoIntervals[] = { 300, 900, 1800, 3600, 10800, 21600,
43200, 86400 };
// Disable instantiation
private TimeMatcher() {
private boolean radarOnRadarYes = false;
// Package access
TimeMatcher() {
}
@ -223,7 +224,7 @@ public class TimeMatcher {
// of time separating the individual items. Considers separation in both
// initial time and forecast time space. Separation cannot be zero.
// ---------------------------------------------------------------------------
static IntrinsicReturnVal intrinsicPeriod(DataTime[] times,
IntrinsicReturnVal intrinsicPeriod(DataTime[] times,
boolean haveForecasts) {
int i0, i, j, m, nn, n0;
long dt, dt2, d, df;
@ -364,7 +365,7 @@ public class TimeMatcher {
// call to validTimeSort and determines the minimum length of valid
// time separating the individual items. Separation cannot be zero.
// ---------------------------------------------------------------------------
static IntrinsicReturnVal intrinsicPeriod(List<DataTime> times,
IntrinsicReturnVal intrinsicPeriod(List<DataTime> times,
List<Integer> majorIndex, boolean haveForecasts) {
int i, j, k, nn, n0;
long dt, dt2, d;
@ -540,7 +541,7 @@ public class TimeMatcher {
// tolerance being half the intrinsic period the existing frames or the
// data being overlaid, whichever is greater.
// ---------------------------------------------------------------------------
public static DataTime[] doValTimOverlay(DataTime[] depictTimeArr,
public DataTime[] doValTimOverlay(DataTime[] depictTimeArr,
DataTime[] frameTimes, long deltaTime, LoadMode mode, Date latest,
float tolerance) {
@ -656,10 +657,31 @@ public class TimeMatcher {
if (fspatial) {
frameFcsts = dataFcsts;
dtf = dt;
} else if (dtf > dt) {
dt = dtf;
}
// A1 TimeMatchFunctions.C ~ line 952
if (dt > ONE_MINUTE_MS && dt <= ELEVEN_MINUTES_MS
&& dtf > ONE_MINUTE_MS && dtf <= ELEVEN_MINUTES_MS
&& radarOnRadarYes) {
if (dtf<dt) {
dt = dtf;
}
} else if (dtf>dt) {
dt = dtf;
}
/* A1 TimeMatchingFunctions.C ~ line 960
* For 88D radar, dt is usually 300 seconds or larger
* For TDWR radar, dt is usually 180 seconds or less
* To allow 3 minutes overlay for TDWR products, dt is set to 300 seconds
*/
if (radarOnRadarYes && dt < FIVE_MINUTES_MS) {
dt = FIVE_MINUTES_MS;
}
if (tolerance > 99) {
dt = 0x7FFFFFl * 1000l;
} else {
@ -697,7 +719,7 @@ public class TimeMatcher {
vf = (frameTimes)[f].getMatchValid() + deltaTime;
v1 = vf - dt; // first usable valid time
v2 = vf + dt; // last usable valid time
if (!dataFcsts && !frameFcsts && vf > latest.getTime()) {
if (!radarOnRadarYes && !dataFcsts && !frameFcsts && vf > latest.getTime()) {
// if we are dealing with live data(without forecast times) then
// we want to allow extra time on the latest frame. For example
// LAPS data arrives hourly, and radar arrives every 6 minutes,
@ -1411,7 +1433,7 @@ public class TimeMatcher {
// Optional argument "forecast" controls how modes PROG_LOOP,
// FORCED, FCST_TIME_MATCH and DPROG_DT work.
// ---------------------------------------------------------------------------
public static DataTime[] makeOverlayList(DataTime[] depictTimes,
public DataTime[] makeOverlayList(DataTime[] depictTimes,
Date clock, DataTime[] frameTimes, LoadMode mode, long forecast,
long deltaTime, float tolerance) {
// The levelvalue check has been added to allow resources on a single
@ -1554,7 +1576,7 @@ public class TimeMatcher {
default:
break;
}
radarOnRadarYes = false;
// radarOnRadarYes = false; // A2 uses setRadarOnRadar().
// If we stripped the levelvalue, restore it.
if (levelvalue != null) {
for (DataTime time : loadTimes) {
@ -1594,7 +1616,7 @@ public class TimeMatcher {
Arrays.sort(times);
}
long minInterval = intrinsicPeriod(times, haveForecasts).intrinsicPeriod;
long minInterval = (new TimeMatcher()).intrinsicPeriod(times, haveForecasts).intrinsicPeriod;
// the intrinsic period interval is in milliseconds
minInterval /= 1000;
@ -1667,4 +1689,11 @@ public class TimeMatcher {
return intervals;
}
public boolean isRadarOnRadar() {
return radarOnRadarYes;
}
public void setRadarOnRadar(boolean radarOnRadar) {
this.radarOnRadarYes = radarOnRadar;
}
}

View file

@ -23,25 +23,25 @@
to Union to avoid pulling in extra levels, specifically levels defined at
kft heights. -->
<Method name="Union" levels="0-1kmAgl">
<Field abbreviation="cCape" level="0kmAgl" />
<Field abbreviation="cCape" level="0FHAG" />
<Field abbreviation="cCape" level="0.5kmAgl" />
<Field abbreviation="cCape" level="1kmAgl" />
</Method>
<Method name="Union" levels="0-1.5kmAgl">
<Field abbreviation="cCape" level="0kmAgl" />
<Field abbreviation="cCape" level="0FHAG" />
<Field abbreviation="cCape" level="0.5kmAgl" />
<Field abbreviation="cCape" level="1kmAgl" />
<Field abbreviation="cCape" level="1.5kmAgl" />
</Method>
<Method name="Union" levels="0-2kmAgl">
<Field abbreviation="cCape" level="0kmAgl" />
<Field abbreviation="cCape" level="0FHAG" />
<Field abbreviation="cCape" level="0.5kmAgl" />
<Field abbreviation="cCape" level="1kmAgl" />
<Field abbreviation="cCape" level="1.5kmAgl" />
<Field abbreviation="cCape" level="2kmAgl" />
</Method>
<Method name="Union" levels="0-2.5kmAgl">
<Field abbreviation="cCape" level="0kmAgl" />
<Field abbreviation="cCape" level="0FHAG" />
<Field abbreviation="cCape" level="0.5kmAgl" />
<Field abbreviation="cCape" level="1kmAgl" />
<Field abbreviation="cCape" level="1.5kmAgl" />
@ -49,7 +49,7 @@
<Field abbreviation="cCape" level="2.5kmAgl" />
</Method>
<Method name="Union" levels="0-3kmAgl">
<Field abbreviation="cCape" level="0kmAgl" />
<Field abbreviation="cCape" level="0FHAG" />
<Field abbreviation="cCape" level="0.5kmAgl" />
<Field abbreviation="cCape" level="1kmAgl" />
<Field abbreviation="cCape" level="1.5kmAgl" />
@ -58,7 +58,7 @@
<Field abbreviation="cCape" level="3kmAgl" />
</Method>
<Method name="Union" levels="0-4kmAgl">
<Field abbreviation="cCape" level="0kmAgl" />
<Field abbreviation="cCape" level="0FHAG" />
<Field abbreviation="cCape" level="0.5kmAgl" />
<Field abbreviation="cCape" level="1kmAgl" />
<Field abbreviation="cCape" level="1.5kmAgl" />
@ -69,7 +69,7 @@
<Field abbreviation="cCape" level="4kmAgl" />
</Method>
<Method name="Union" levels="0-5kmAgl">
<Field abbreviation="cCape" level="0kmAgl" />
<Field abbreviation="cCape" level="0FHAG" />
<Field abbreviation="cCape" level="0.5kmAgl" />
<Field abbreviation="cCape" level="1kmAgl" />
<Field abbreviation="cCape" level="1.5kmAgl" />
@ -82,7 +82,7 @@
<Field abbreviation="cCape" level="5kmAgl" />
</Method>
<Method name="Union" levels="0-6kmAgl">
<Field abbreviation="cCape" level="0kmAgl" />
<Field abbreviation="cCape" level="0FAHG" />
<Field abbreviation="cCape" level="0.5kmAgl" />
<Field abbreviation="cCape" level="1kmAgl" />
<Field abbreviation="cCape" level="1.5kmAgl" />
@ -97,7 +97,7 @@
<Field abbreviation="cCape" level="6kmAgl" />
</Method>
<Method name="Union" levels="0-8kmAgl">
<Field abbreviation="cCape" level="0kmAgl" />
<Field abbreviation="cCape" level="0FHAG" />
<Field abbreviation="cCape" level="0.5kmAgl" />
<Field abbreviation="cCape" level="1kmAgl" />
<Field abbreviation="cCape" level="1.5kmAgl" />
@ -114,7 +114,7 @@
<Field abbreviation="cCape" level="8kmAgl" />
</Method>
<Method name="Union" levels="0-10kmAgl">
<Field abbreviation="cCape" level="0kmAgl" />
<Field abbreviation="cCape" level="0FHAG" />
<Field abbreviation="cCape" level="0.5kmAgl" />
<Field abbreviation="cCape" level="1kmAgl" />
<Field abbreviation="cCape" level="1.5kmAgl" />

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge0ftCumul_PHISH" name="PHISH probability &gt; 0 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge0ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -18,8 +18,9 @@
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG" name="Probabilistic Storm Surge height w/10% chance of being exceeded" unit="ft">
<Method models="TPCSurgeProb" name="Alias">
<Field abbreviation="Surge10pctRun"/>
<DerivedParameter abbreviation="PSurge0ftIncr_PHISH" name="PHISH probability &gt; 0 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge0ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge10ftCumul_PHISH" name="PHISH probability &gt; 10 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge10ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge10ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 10 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge10ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge10ftIncr_PHISH" name="PHISH probability &gt; 10 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge10ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge11ftCumul_PHISH" name="PHISH probability &gt; 11 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge11ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge11ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 11 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge11ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge11ftIncr_PHISH" name="PHISH probability &gt; 11 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge11ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge12ftCumul_PHISH" name="PHISH probability &gt; 12 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge12ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge12ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 12 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge12ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge12ftIncr_PHISH" name="PHISH probability &gt; 12 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge12ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge13ftCumul_PHISH" name="PHISH probability &gt; 13 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge13ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge13ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 13 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge13ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge13ftIncr_PHISH" name="PHISH probability &gt; 13 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge13ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge14ftCumul_PHISH" name="PHISH probability &gt; 14 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge14ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge14ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 14 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge14ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge14ftIncr_PHISH" name="PHISH probability &gt; 14 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge14ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge15ftCumul_PHISH" name="PHISH probability &gt; 15 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge15ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge15ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 15 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge15ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge15ftIncr_PHISH" name="PHISH probability &gt; 15 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge15ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge16ftCumul_PHISH" name="PHISH probability &gt; 16 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge16ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge16ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 16 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge16ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge16ftIncr_PHISH" name="PHISH probability &gt; 16 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge16ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge17ftCumul_PHISH" name="PHISH probability &gt; 17 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge17ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge17ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 17 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge17ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge17ftIncr_PHISH" name="PHISH probability &gt; 17 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge17ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge18ftCumul_PHISH" name="PHISH probability &gt; 18 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge18ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge18ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 18 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge18ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge18ftIncr_PHISH" name="PHISH probability &gt; 18 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge18ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge19ftCumul_PHISH" name="PHISH probability &gt; 19 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge19ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge19ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 19 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge19ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge19ftIncr_PHISH" name="PHISH probability &gt; 19 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge19ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge1ftCumul_PHISH" name="PHISH probability &gt; 1 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge1ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -18,8 +18,9 @@
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG-518E2" name="Probabilistic Storm Surge probability &gt; 17 feet" unit="%">
<Method models="TPCSurgeProb" name="Alias">
<Field abbreviation="PSurge17ftRun"/>
<DerivedParameter abbreviation="PSurge1ftIncr_PHISH" name="PHISH probability &gt; 1 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge1ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge20ftCumul_PHISH" name="PHISH probability &gt; 20 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge20ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge20ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 20 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge20ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge20ftIncr_PHISH" name="PHISH probability &gt; 20 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge20ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge21ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 21 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge21ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge22ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 22 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge22ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge23ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 23 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge23ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge24ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 24 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge24ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge25ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 25 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge25ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge2ftCumul_PHISH" name="PHISH probability &gt; 2 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge2ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge2ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 2 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge2ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -18,8 +18,9 @@
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG-549E2" name="Probabilistic Storm Surge probability &gt; 18 feet" unit="%">
<Method models="TPCSurgeProb" name="Alias">
<Field abbreviation="PSurge18ftRun"/>
<DerivedParameter abbreviation="PSurge2ftIncr_PHISH" name="PHISH probability &gt; 2 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge2ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge3ftCumul_PHISH" name="PHISH probability &gt; 3 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge3ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge3ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 3 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge3ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -18,8 +18,9 @@
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG-579E2" name="Probabilistic Storm Surge probability &gt; 19 feet" unit="%">
<Method models="TPCSurgeProb" name="Alias">
<Field abbreviation="PSurge19ftRun"/>
<DerivedParameter abbreviation="PSurge3ftIncr_PHISH" name="PHISH probability &gt; 3 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge3ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge4ftCumul_PHISH" name="PHISH probability &gt; 4 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge4ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge4ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 4 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge4ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge4ftIncr_PHISH" name="PHISH probability &gt; 4 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge4ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge5ftCumul_PHISH" name="PHISH probability &gt; 5 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge5ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge5ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 5 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge5ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge5ftIncr_PHISH" name="PHISH probability &gt; 5 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge5ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge6ftCumul_PHISH" name="PHISH probability &gt; 6 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge6ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge6ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 6 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge6ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge6ftIncr_PHISH" name="PHISH probability &gt; 6 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge6ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge7ftCumul_PHISH" name="PHISH probability &gt; 7 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge7ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge7ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 7 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge7ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge7ftIncr_PHISH" name="PHISH probability &gt; 7 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge7ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge8ftCumul_PHISH" name="PHISH probability &gt; 8 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge8ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge8ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 8 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge8ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge8ftIncr_PHISH" name="PHISH probability &gt; 8 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge8ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge9ftCumul_PHISH" name="PHISH probability &gt; 9 feet - cumulative [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge9ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge9ftCumul_wTide" name="Psurge + Tide [NAVD88] probability &gt; 9 feet" unit="%">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge9ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="PSurge9ftIncr_PHISH" name="PHISH probability &gt; 9 feet - incremental [agl]" unit="%">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="PSurge9ft6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="Surge10pctCumul_PHISH" name="PHISH height w/10% chance of being exceeded - cumulative [agl]" unit="ft">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="Surge10pctCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="Surge10pctCumul_wTide" name="Psurge + Tide [NAVD88] height w/10% chance of being exceeded" unit="ft">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="Surge10pctCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="Surge10pctIncr_PHISH" name="PHISH height w/10% chance of being exceeded - incremental [agl]" unit="ft">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="Surge10pct6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="Surge20pctCumul_PHISH" name="PHISH height w/20% chance of being exceeded - cumulative [agl]" unit="ft">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="Surge20pctCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="Surge20pctCumul_wTide" name="Psurge + Tide [NAVD88] height w/20% chance of being exceeded" unit="ft">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="Surge20pctCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="Surge20pctIncr_PHISH" name="PHISH height w/20% chance of being exceeded - incremental [agl]" unit="ft">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="Surge20pct6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="Surge30pctCumul_PHISH" name="PHISH height w/30% chance of being exceeded - cumulative [agl]" unit="ft">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="Surge30pctCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="Surge30pctCumul_wTide" name="Psurge + Tide [NAVD88] height w/30% chance of being exceeded" unit="ft">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="Surge30pctCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="Surge30pctIncr_PHISH" name="PHISH height w/30% chance of being exceeded - incremental [agl]" unit="ft">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="Surge30pct6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="Surge40pctCumul_PHISH" name="PHISH height w/40% chance of being exceeded - cumulative [agl]" unit="ft">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="Surge40pctCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="Surge40pctCumul_wTide" name="Psurge + Tide [NAVD88] height w/40% chance of being exceeded" unit="ft">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="Surge40pctCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="Surge40pctIncr_PHISH" name="PHISH height w/40% chance of being exceeded - incremental [agl]" unit="ft">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="Surge40pct6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="Surge50pctCumul_PHISH" name="PHISH height w/50% chance of being exceeded - cumulative [agl]" unit="ft">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from PHISH.
This makes it possible to easily distinguish it from the cumulative surge from Psurge + Tide. -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="Surge50pctCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="Surge50pctCumul_wTide" name="Psurge + Tide [NAVD88] height w/50% chance of being exceeded" unit="ft">
<!-- This parameter provides a custom legend and parameter name for the cumulative surge that is coming from Psurge + Tide.
This makes it possible to easily distinguish it from the cumulative surge from PHISH. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="Surge50pctCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="Surge50pctIncr_PHISH" name="PHISH height w/50% chance of being exceeded - incremental [agl]" unit="ft">
<!-- This parameter provides a custom legend and parameter name for the incremental surge that is coming from PHISH -->
<Method models="TPCSurgeProb" name="Alias" levels="0FHAG">
<Field abbreviation="Surge50pct6hr"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG" name="Probabilistic Storm Surge height w/10% chance of being exceeded" unit="ft">
<!-- This parameter maps the newer PSurge2.0 + Tide parameter abbreviation to the older PSurge1.0
abbreviation so that bundles and menus designed for PSurge1.0 can load the newer data.
This parameter should be considered deprecated and can be removed in the future. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="Surge10pctCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG-518E2" name="Probabilistic Storm Surge probability &gt; 17 feet" unit="%">
<!-- This parameter maps the newer PSurge2.0 + Tide parameter abbreviation to the older PSurge1.0
abbreviation so that bundles and menus designed for PSurge1.0 can load the newer data.
This parameter should be considered deprecated and can be removed in the future. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge17ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG-549E2" name="Probabilistic Storm Surge probability &gt; 18 feet" unit="%">
<!-- This parameter maps the newer PSurge2.0 + Tide parameter abbreviation to the older PSurge1.0
abbreviation so that bundles and menus designed for PSurge1.0 can load the newer data.
This parameter should be considered deprecated and can be removed in the future. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge18ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
This_software_product_contains_export-restricted_data_whose
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
an_export_license_or_other_authorization.
Contractor_Name:________Raytheon_Company
Contractor_Address:_____6825_Pine_Street,_Suite_340
________________________Mail_Stop_B8
________________________Omaha,_NE_68106
________________________402.291.0100
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG-579E2" name="Probabilistic Storm Surge probability &gt; 19 feet" unit="%">
<!-- This parameter maps the newer PSurge2.0 + Tide parameter abbreviation to the older PSurge1.0
abbreviation so that bundles and menus designed for PSurge1.0 can load the newer data.
This parameter should be considered deprecated and can be removed in the future. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge19ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -19,7 +19,10 @@
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG-122E2" name="Probabilistic Storm Surge probability &gt; 4 feet" unit="%">
<Method models="TPCSurgeProb" name="Alias">
<Field abbreviation="PSurge4ftRun"/>
<!-- This parameter maps the newer PSurge2.0 + Tide parameter abbreviation to the older PSurge1.0
abbreviation so that bundles and menus designed for PSurge1.0 can load the newer data.
This parameter should be considered deprecated and can be removed in the future. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge4ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -19,7 +19,10 @@
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG-152E2" name="Probabilistic Storm Surge probability &gt; 5 feet" unit="%">
<Method models="TPCSurgeProb" name="Alias">
<Field abbreviation="PSurge5ftRun"/>
<!-- This parameter maps the newer PSurge2.0 + Tide parameter abbreviation to the older PSurge1.0
abbreviation so that bundles and menus designed for PSurge1.0 can load the newer data.
This parameter should be considered deprecated and can be removed in the future. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge5ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -19,7 +19,10 @@
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG-183E2" name="Probabilistic Storm Surge probability &gt; 6 feet" unit="%">
<Method models="TPCSurgeProb" name="Alias">
<Field abbreviation="PSurge6ftRun"/>
<!-- This parameter maps the newer PSurge2.0 + Tide parameter abbreviation to the older PSurge1.0
abbreviation so that bundles and menus designed for PSurge1.0 can load the newer data.
This parameter should be considered deprecated and can be removed in the future. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge6ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -19,7 +19,10 @@
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG-20" name="Probabilistic Storm Surge height w/20% chance of being exceeded" unit="ft">
<Method models="TPCSurgeProb" name="Alias">
<Field abbreviation="Surge20pctRun"/>
<!-- This parameter maps the newer PSurge2.0 + Tide parameter abbreviation to the older PSurge1.0
abbreviation so that bundles and menus designed for PSurge1.0 can load the newer data.
This parameter should be considered deprecated and can be removed in the future. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="Surge20pctCumul"/>
</Method>
</DerivedParameter>
</DerivedParameter>

View file

@ -19,7 +19,10 @@
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG-213E2" name="Probabilistic Storm Surge probability &gt; 7 feet" unit="%">
<Method models="TPCSurgeProb" name="Alias">
<Field abbreviation="PSurge7ftRun"/>
<!-- This parameter maps the newer PSurge2.0 + Tide parameter abbreviation to the older PSurge1.0
abbreviation so that bundles and menus designed for PSurge1.0 can load the newer data.
This parameter should be considered deprecated and can be removed in the future. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge7ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -19,7 +19,10 @@
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG-244E2" name="Probabilistic Storm Surge probability &gt; 8 feet" unit="%">
<Method models="TPCSurgeProb" name="Alias">
<Field abbreviation="PSurge8ftRun"/>
<!-- This parameter maps the newer PSurge2.0 + Tide parameter abbreviation to the older PSurge1.0
abbreviation so that bundles and menus designed for PSurge1.0 can load the newer data.
This parameter should be considered deprecated and can be removed in the future. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge8ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -19,7 +19,10 @@
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG-274E2" name="Probabilistic Storm Surge probability &gt; 9 feet" unit="%">
<Method models="TPCSurgeProb" name="Alias">
<Field abbreviation="PSurge9ftRun"/>
<!-- This parameter maps the newer PSurge2.0 + Tide parameter abbreviation to the older PSurge1.0
abbreviation so that bundles and menus designed for PSurge1.0 can load the newer data.
This parameter should be considered deprecated and can be removed in the future. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge9ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -19,7 +19,10 @@
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG-30" name="Probabilistic Storm Surge height w/30% chance of being exceeded" unit="ft">
<Method models="TPCSurgeProb" name="Alias">
<Field abbreviation="Surge30pctRun"/>
<!-- This parameter maps the newer PSurge2.0 + Tide parameter abbreviation to the older PSurge1.0
abbreviation so that bundles and menus designed for PSurge1.0 can load the newer data.
This parameter should be considered deprecated and can be removed in the future. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="Surge30pctCumul"/>
</Method>
</DerivedParameter>

View file

@ -19,7 +19,10 @@
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG-305E2" name="Probabilistic Storm Surge probability &gt; 10 feet" unit="%">
<Method models="TPCSurgeProb" name="Alias">
<Field abbreviation="PSurge10ftRun"/>
<!-- This parameter maps the newer PSurge2.0 + Tide parameter abbreviation to the older PSurge1.0
abbreviation so that bundles and menus designed for PSurge1.0 can load the newer data.
This parameter should be considered deprecated and can be removed in the future. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge10ftCumul"/>
</Method>
</DerivedParameter>

View file

@ -19,7 +19,10 @@
further_licensing_information.
-->
<DerivedParameter abbreviation="TPCSG-335E2" name="Probabilistic Storm Surge probability &gt; 11 feet" unit="%">
<Method models="TPCSurgeProb" name="Alias">
<Field abbreviation="PSurge11ftRun"/>
<!-- This parameter maps the newer PSurge2.0 + Tide parameter abbreviation to the older PSurge1.0
abbreviation so that bundles and menus designed for PSurge1.0 can load the newer data.
This parameter should be considered deprecated and can be removed in the future. -->
<Method models="TPCSurgeProb" name="Alias" levels="Surface">
<Field abbreviation="PSurge11ftCumul"/>
</Method>
</DerivedParameter>

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