|
|
|
|
Significant Weather Time-Weighted Sample Threshold | YES | NO | |
Default Pencil Width | YES | NO | |
Pencil Influence Sizes | YES | NO | |
Interpolation Algorithm | YES | NO | |
Smoothing Algorithm | YES | NO | |
Contour Sub Sample | YES | NO |
For example, let's say there are three weather grids, the first is an hour long, the second is two hours long, and the third is three hours long. There is Rain in the first grid, Snow in the second grid, and Thunder and Rain in the third grid. The total duration of the three grids is 6 hours. The percentages calculated via this algorithm is shown in the following table:
|
|
|
|
|
|
Rain | 1 hour | 0 hours | 3 hours | 4 hours | 66.6% |
Snow | 0 hours | 2 hours | 0 hours | 2 hours | 33.3% |
Thunder | 0 hours | 0 hours | 3 hours | 3 hours | 50.0% |
Depending upon the threshold, the time-weighted results can be different, as shown in the following table:
|
|
|
20% | Rain, Snow, Thunder | all of the weather types are above the threshold |
40% | Rain, Thunder | Snow is only 33.3%, so it is not part of the time-weighted average |
60% | Rain | Only rain is above the threshold. |
80% | Rain | Since none of the entries are above the threshold, the result is the subkey that is most predominent. |
T_pencilWidth = 5
PencilToolInfluence_list = [2, 4, 8, 12, 16]
You are allowed to enter as many sizes as you want, but be warned. The resulting menu may be too long to be completely displayed on the screen.
|
|
QPF | CUBIC_ADVECT |
Sky | CUBIC_ADVECT |
PoP | CUBIC_ADVECT |
all others | CUBIC_NOADVECT |
|
|
CUBIC_ADVECT | Cubic spline is applied to the data points temporally. Software looks for areas that can be advected. The advection component of the algorithm works best for weather elements that contain areas of zero value. |
CUBIC_NOADVECT | Cubic spline is applied to the data points temporally. Software gradually adjusts points from starting value to ending value without advection considerations. |
LINEAR_ADVECT | Linear calculations are applied to adjacent base grids temporally. Software looks for areas that can be advected. The advection component of the algorithm works best for weather elements that contain areas of zero value. |
LINEAR_NOADVECT | Linear calculations are applied to adjacent base grids temporally. Software gradually adjusts points from starting value to ending value without advection considerations. |
T_interpolateAlgorithm = "LINEAR_ADVECT"
For those weather elements that are not surface based, the format
is
parmName_level_interpolateAlgorithm.
SmoothSize = 7
In this example the smoothing filter size will default to 7x7, when the GFE is started.
The list of possible filter sizes can be configured in the GFE as well. To define a new list, which appears in the main menu item GFE->Editing Preferences, use the following syntax in your GFEConfig file.
SmoothSizeList = [3, 5, 7, 9, 11]
Note that all of the integer values are odd. Even values
will
give the same results. For example, a value of 2 will give the
same
results as 3, 4 the same as 5, and so on. We recommend that you
define
the list with odd values simply for consistency.
ContourSubSample = 4