ASM #16909 added routine tohandle the option -sw in metar2shef_options
Change-Id: I081533d665cd32ad44e6aec18385db1dddaae59d Former-commit-id: 306f27d50825c78d1c0c22ac3b9c737dde3f8880
This commit is contained in:
parent
56dadb8d3e
commit
04b07d9207
1 changed files with 20 additions and 3 deletions
|
@ -36,6 +36,7 @@ import com.raytheon.uf.common.dataplugin.sfcobs.ObsCommon;
|
|||
* Date Ticket# Engineer Description
|
||||
* ------------ ---------- ----------- --------------------------
|
||||
* Mar 5, 2010 jkorman Initial creation
|
||||
* Jul , 2015 #16909 lbousaidi added a routine to apply -sw option
|
||||
*
|
||||
* </pre>
|
||||
*
|
||||
|
@ -167,11 +168,13 @@ public enum SHEF_SM_Codes implements SHEF_Obs_Codes<ObsCommon> {
|
|||
}
|
||||
},
|
||||
// 7 Precip 6 hour
|
||||
PPQRVZZ("%s %6.2f", "PPQ") {
|
||||
PPQRZZZ("%s %6.2f", "PPQ") {
|
||||
@Override
|
||||
StringBuilder intFormat(StringBuilder buffer, ObsCommon report,
|
||||
String format, String reportText, ObsToSHEFOptions options) {
|
||||
List<AncPrecip> precip = report.getAncPrecip();
|
||||
String pedtsep = checkPEDTSEP(name(), options);
|
||||
|
||||
if ((precip != null) && (precip.size() > 0)) {
|
||||
for (AncPrecip p : precip) {
|
||||
if (HOURS_06.equals(p.getTimePeriod())) {
|
||||
|
@ -180,12 +183,12 @@ public enum SHEF_SM_Codes implements SHEF_Obs_Codes<ObsCommon> {
|
|||
if (d == 0) {
|
||||
if ((!options.isOptZero6HourPrecip())
|
||||
&& (!options.isOptZeroAuto6HourPrecip())) {
|
||||
d = -9999.0;
|
||||
d = -9999.0;
|
||||
}
|
||||
}
|
||||
if (d > -9999) {
|
||||
d = d * 0.03937D;
|
||||
buffer.append(String.format(format, name(), d));
|
||||
buffer.append(String.format(format,pedtsep, d));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -544,6 +547,20 @@ public enum SHEF_SM_Codes implements SHEF_Obs_Codes<ObsCommon> {
|
|||
|
||||
return formattedData;
|
||||
}
|
||||
|
||||
private static final String checkPEDTSEP(String pedtsep, ObsToSHEFOptions options) {
|
||||
StringBuilder sb = null;
|
||||
|
||||
// 0123456789
|
||||
// PEDTSEP
|
||||
if(pedtsep != null) {
|
||||
sb = new StringBuilder(pedtsep);
|
||||
if(options.isOptTypeSrcV()) {
|
||||
sb.setCharAt(4, 'V');
|
||||
}
|
||||
}
|
||||
return (sb != null) ? sb.toString() : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* This default does nothing. Each enum may override this method to provide
|
||||
|
|
Loading…
Add table
Reference in a new issue