Merge branch 'master_14.3.1' (14.3.1-38) into omaha_14.3.1
Former-commit-id: 8b512a56879fe37cdb5e3428f6f3d86f38349ed6
This commit is contained in:
commit
8d61bfc358
11 changed files with 104 additions and 154 deletions
|
@ -45,7 +45,6 @@ import com.raytheon.viz.mpe.util.MakeRsel;
|
|||
import com.raytheon.viz.mpe.util.QCStations;
|
||||
import com.raytheon.viz.mpe.util.QCTStations;
|
||||
import com.raytheon.viz.mpe.util.ReadFreezingStationList;
|
||||
import com.raytheon.viz.mpe.util.ReadPrecipStationList;
|
||||
import com.raytheon.viz.mpe.util.ReadTemperatureStationList;
|
||||
import com.raytheon.viz.mpe.util.RenderPcp;
|
||||
import com.raytheon.viz.mpe.util.RenderT;
|
||||
|
@ -442,8 +441,8 @@ public class OtherPrecipOptions {
|
|||
MakeRsel mr = new MakeRsel();
|
||||
// Hrap_Grid hrap_grid = DailyQcUtils.getHrap_grid();
|
||||
Calendar tmtime = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
|
||||
ReadPrecipStationList rp = new ReadPrecipStationList();
|
||||
int num_stations = rp.getNumPstations();
|
||||
// ReadPrecipStationList rp = new ReadPrecipStationList();
|
||||
int num_stations = dqc.precip_stations.size();
|
||||
String s = appsDefaults.getToken(dqc_ending_6hour_obstime_tok);
|
||||
int dqc_ending_6hour_obstime = ((!(null == s)) ? Integer.parseInt(s)
|
||||
: -1);
|
||||
|
|
|
@ -157,7 +157,7 @@ public class ChooseDataPeriodDialog extends CaveJFACEDialog {
|
|||
|
||||
displayMgr = MPEDisplayManager.getInstance(pane);
|
||||
dataMgr = MPEDataManager.getInstance();
|
||||
dateMap = dataMgr.getDateMap(false);
|
||||
dateMap = dataMgr.getDateMap(true);
|
||||
qcEnable = MPEDisplayManager.isMpeQcOptionEnabled();
|
||||
cal = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
|
||||
hydroCal = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
|
||||
|
@ -165,17 +165,18 @@ public class ChooseDataPeriodDialog extends CaveJFACEDialog {
|
|||
cal.setTime(prevDate);
|
||||
|
||||
if( prevHydDate == null ){
|
||||
// prevHydDate = prevDate;
|
||||
prevHydDate = displayMgr.getCurrentEditDate();
|
||||
|
||||
hydroCal.setTime(prevHydDate);
|
||||
|
||||
hydroCal.set(Calendar.MINUTE, 0);
|
||||
if ( cal.get(Calendar.HOUR_OF_DAY) >= 18 ){
|
||||
hydroCal.add(Calendar.DATE, 1);
|
||||
}
|
||||
}else{
|
||||
|
||||
hydroCal.setTime(prevHydDate);
|
||||
if ( cal.get(Calendar.HOUR_OF_DAY) >= 18 ){
|
||||
hydroCal.set(Calendar.MINUTE, 0);
|
||||
hydroCal.add(Calendar.DATE, 1);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -387,6 +387,7 @@ public class EditPrecipStationsDialog extends AbstractMPEDialog implements
|
|||
if (srain.data > -98) {
|
||||
if (time_pos == HOURS_24 && srain.data >= 0) {
|
||||
snow = true;
|
||||
System.out.println("Snow data is true for station.");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -476,6 +477,7 @@ public class EditPrecipStationsDialog extends AbstractMPEDialog implements
|
|||
"Snow water change is %5.2f in.", srain.data));
|
||||
if (time_pos == HOURS_24 && srain.data >= 0) {
|
||||
snow = true;
|
||||
System.out.println("Snow water change is available for " + selectedStation.hb5);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1045,7 +1045,7 @@ public class DailyQcUtils {
|
|||
*/
|
||||
Calendar currentTime = Calendar
|
||||
.getInstance(TimeZone.getTimeZone("GMT"));
|
||||
|
||||
btime.set(Calendar.DAY_OF_MONTH, hydro_curDay);
|
||||
emonth = btime.get(Calendar.MONTH);
|
||||
Calendar otime = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
|
||||
otime.setTime(btime.getTime());
|
||||
|
|
|
@ -86,6 +86,7 @@ public class ReadSnowData {
|
|||
}
|
||||
}
|
||||
in = new BufferedReader(new FileReader(prece));
|
||||
System.out.println("Reading Snow data from : " + prece);
|
||||
|
||||
// int p = 1;
|
||||
// String sn = cbuf;
|
||||
|
@ -168,6 +169,7 @@ public class ReadSnowData {
|
|||
dqc.pdata[i].stn[j].srain[kk].data = Float.parseFloat(qbuf);
|
||||
|
||||
dqc.pdata[i].stn[j].srain[kk].qual = 8;
|
||||
System.out.println("Loading Snow Data for Station "+ hb5 +" with value: "+ dqc.pdata[i].stn[j].srain[kk].data);
|
||||
|
||||
break;
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
|
||||
if [ ${#AWIPS_HOME} = 0 ]
|
||||
then
|
||||
path_to_script=`readlink -f $0`
|
||||
|
@ -8,6 +9,12 @@ fi
|
|||
|
||||
. ${AWIPS_HOME}/GFESuite/ServiceBackup/configuration/svcbu.env
|
||||
|
||||
if [ ${#IFPS_LOG} = 0 ]
|
||||
then
|
||||
echo "ERROR: environment variable IFPS_LOG is undfined, exit."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
find ${IFPS_LOG}/* -mtime +7 -exec rm -fr {} \; 2>/dev/null
|
||||
|
||||
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
* 01/13/2014 Chin Chen TTR829- when interpolation, edit graph is allowed
|
||||
* 02/03/2014 1106 Chin Chen Need to be able to use clicking on the Src,Time, or StnId to select display
|
||||
* 08/12/2014 Chin Chen fixed issue that "load archive file with wrong time line displayed"
|
||||
* 12/04/2014 DR16888 Chin Chen fixed issue that "Comp(Src) button not functioning properly in NSHARP display"
|
||||
* </pre>
|
||||
*
|
||||
* @author Chin Chen
|
||||
|
@ -575,11 +576,12 @@ public class NsharpResourceHandler {
|
|||
* The following code is to create a list of stns within the range
|
||||
* of user defined radius (minimum distance) to "current" station
|
||||
* and also has data loaded with same time line as "current" time
|
||||
* line. Note that we have two time line formats, yymmdd/hh(day)Vxxx
|
||||
* and yymmdd/hh(day). A same time line is compared by yymmdd/hh
|
||||
* line. Note that we have two time line formats, MM.DDVxxx(day)
|
||||
* and MM.DD(day). A same time line is compared by MM.DD
|
||||
* only. All qualified stations, including current station, found
|
||||
* will be listed and used for SND comparison.
|
||||
*/
|
||||
String TIME_COMPARE_STRING = "MM.DD";
|
||||
compSndSelectedElemList.clear();
|
||||
// CompSndSelectedElem curStnTimeIndexCouple = new
|
||||
// CompSndSelectedElem(currentStnElementListIndex,currentTimeElementListIndex,currentSndElementListIndex);
|
||||
|
@ -593,7 +595,12 @@ public class NsharpResourceHandler {
|
|||
.get(currentSndElementListIndex).getStnInfo();
|
||||
gc.setStartingGeographicPoint(currentStnInfo.getLongitude(),
|
||||
currentStnInfo.getLatitude());
|
||||
int timeLineLengthToComp = "yymmdd/hh".length();
|
||||
|
||||
// String curTimeString = timeElementList.get(currentTimeElementListIndex).getElementDescription();
|
||||
|
||||
int timeLineLengthToComp = TIME_COMPARE_STRING.length();
|
||||
|
||||
|
||||
String currentTimeLineToComp = timeElementList
|
||||
.get(currentTimeElementListIndex).getElementDescription()
|
||||
.substring(0, timeLineLengthToComp);
|
||||
|
@ -1862,15 +1869,15 @@ public class NsharpResourceHandler {
|
|||
NsharpStationInfo stnInfo, boolean fromArchive) {
|
||||
|
||||
// // testing code // stnInfo.setStnId("KUKI");
|
||||
// Set<String> keysettest = new HashSet<String>(soundMap.keySet());
|
||||
// for (String key : keysettest) {
|
||||
// List<NcSoundingLayer> sndLy = soundMap.remove(key); // String
|
||||
// Set<String> keysettest = new HashSet<String>(soundMap.keySet());
|
||||
// for (String key : keysettest) {
|
||||
// List<NcSoundingLayer> sndLy = soundMap.remove(key); // String
|
||||
// // newkey=
|
||||
// // key.replace("NCUAIR", "gpduair"); // String newkey =
|
||||
// // key.replace("NAMS", "SSS");
|
||||
// String newkey = key.replace("140303/12", "120109/12");
|
||||
// soundMap.put(newkey, sndLy);
|
||||
// } //
|
||||
// String newkey =key.replace("NCUAIR", "gpduair"); // String newkey =
|
||||
// String newkey= key.replace("NAMS", "SSS");
|
||||
//String newkey = key.replace("130925/00(Wed)V000", "130925/00(Thu)V000");
|
||||
// soundMap.put(newkey, sndLy);
|
||||
// }
|
||||
// // stnInfo.setSndType(stnInfo.getSndType().replace("NCUAIR", //
|
||||
// // "gpduair")); // stnInfo.setSndType(stnInfo.getSndType().replace(
|
||||
// // "NAMS","SSS"));
|
||||
|
|
|
@ -15,6 +15,8 @@ package gov.noaa.nws.ncep.ui.nsharp.display.rsc;
|
|||
* 05/23/2014 Chin Chen update SHIP, STP Stats based on bigsharp version 2013Jun12
|
||||
* 08/18/2014 Chin Chen implemented SARS, FIRE, HAIL, WINTER SPC graphs based on
|
||||
* bigsharp version 2013Jun12
|
||||
* 12/03/2014 DR#16884 Chin Chen fixed issue, NSHARP crashes if user loops a product and
|
||||
* then clicks WINTER/FIRE buttons in Toolbar
|
||||
*
|
||||
* </pre>
|
||||
*
|
||||
|
@ -109,21 +111,11 @@ public class NsharpSpcGraphsPaneResource extends NsharpAbstractPaneResource {
|
|||
private float nonSupercell[] = { 8.2f, 12.2f, 14.4f, 15.8f, 17.0f, 20.0f,
|
||||
23.2f, 27.0f, 30.4f, 32.0f };
|
||||
|
||||
private String hailSize[][] = {
|
||||
{ "", "<1", "1-1.5", "1.75", "2", "2.5", "2.75", "3-4", ">4" },
|
||||
{ "+1 STD", "1.9", "2.0", "2.3", "2.8", "2.9", "3.0", "3.0", "3.0" },
|
||||
{ "AVG", "1.5", "1.5", "1.8", "2.3", "2.5", "2.5", "2.6", "2.7" },
|
||||
{ "-1 STD", "1.1", "1.1", "1.3", "1.7", "2.1", "2.1", "2.2", "2.4" } };
|
||||
|
||||
private RGB white = NsharpConstants.color_white;
|
||||
|
||||
private RGB cyan = NsharpConstants.color_cyan_md;
|
||||
|
||||
private RGB hailSizeColor[][] = {
|
||||
{ white, white, white, white, white, white, white, white, white },
|
||||
{ white, cyan, cyan, cyan, cyan, cyan, cyan, cyan, cyan },
|
||||
{ white, cyan, cyan, cyan, cyan, cyan, cyan, cyan, cyan },
|
||||
{ white, cyan, cyan, cyan, cyan, cyan, cyan, cyan, cyan } };
|
||||
|
||||
private NsharpNative.NsharpLibrary.HailInfoStr hailInfo = new NsharpNative.NsharpLibrary.HailInfoStr();
|
||||
|
||||
|
@ -133,6 +125,18 @@ public class NsharpSpcGraphsPaneResource extends NsharpAbstractPaneResource {
|
|||
|
||||
private NsharpNative.NsharpLibrary.WinterInfoStr winterInfo = new NsharpNative.NsharpLibrary.WinterInfoStr();
|
||||
|
||||
private String hailSize[][] = {
|
||||
{ "", "<1", "1-1.5", "1.75", "2", "2.5", "2.75", "3-4", ">4" },
|
||||
{ "+1 STD", "1.9", "2.0", "2.3", "2.8", "2.9", "3.0", "3.0", "3.0" },
|
||||
{ "AVG", "1.5", "1.5", "1.8", "2.3", "2.5", "2.5", "2.6", "2.7" },
|
||||
{ "-1 STD", "1.1", "1.1", "1.3", "1.7", "2.1", "2.1", "2.2", "2.4" } };
|
||||
|
||||
private RGB hailSizeColor[][] = {
|
||||
{ white, white, white, white, white, white, white, white, white },
|
||||
{ white, cyan, cyan, cyan, cyan, cyan, cyan, cyan, cyan },
|
||||
{ white, cyan, cyan, cyan, cyan, cyan, cyan, cyan, cyan },
|
||||
{ white, cyan, cyan, cyan, cyan, cyan, cyan, cyan, cyan } };
|
||||
|
||||
public NsharpSpcGraphsPaneResource(AbstractResourceData resourceData,
|
||||
LoadProperties loadProperties, NsharpAbstractPaneDescriptor desc) {
|
||||
super(resourceData, loadProperties, desc);
|
||||
|
@ -140,21 +144,6 @@ public class NsharpSpcGraphsPaneResource extends NsharpAbstractPaneResource {
|
|||
rightGraph = NsharpPaletteWindow.getRightGraph();
|
||||
}
|
||||
|
||||
private void underDevelopment(int side) throws VizException {
|
||||
double xpos;
|
||||
if (side == left)
|
||||
xpos = spcLeftXOrig + spcFrameWidth / 2;
|
||||
else
|
||||
xpos = spcRightXOrig + spcFrameWidth / 2;
|
||||
DrawableString str = new DrawableString("under development",
|
||||
NsharpConstants.color_green);
|
||||
str.font = font12;
|
||||
str.horizontalAlignment = HorizontalAlignment.LEFT;
|
||||
str.verticallAlignment = VerticalAlignment.TOP;
|
||||
ypos = spcYOrig + spcHeight / 2;
|
||||
str.setCoordinates(xpos, ypos);
|
||||
target.drawStrings(str);
|
||||
}
|
||||
|
||||
private void setXyStartingPosition(int side) {
|
||||
ystart = spcYOrig;
|
||||
|
@ -298,35 +287,6 @@ public class NsharpSpcGraphsPaneResource extends NsharpAbstractPaneResource {
|
|||
// System.out.println("java hail str #"+ (i+1)+ " "+ hailStr);
|
||||
|
||||
}
|
||||
/*
|
||||
* ypos = spcYEnd - 4 * charHeight; for(int i=0; i < 2; i++){ String
|
||||
* supStr = new String(sarsInfo.getTorStr(), (i*60), 60);
|
||||
* //System.out.println("tor str #"+ (1+ i)+ " "+ supStr); RGB strColor
|
||||
* = NsharpConstants.gempakColorToRGB.get(sarsInfo.getTorStrColor());
|
||||
* supStr = supStr.substring(0, supStr.indexOf('\0'));// get rid of
|
||||
* tailing null char(s), as DrawableString will print them out
|
||||
* DrawableString supercellMatchStr = new DrawableString(supStr,
|
||||
* strColor); supercellMatchStr.font = font10;
|
||||
* supercellMatchStr.horizontalAlignment = HorizontalAlignment.LEFT;
|
||||
* supercellMatchStr.verticallAlignment = VerticalAlignment.TOP; xpos =
|
||||
* xstart ; ypos = ypos + charHeight;
|
||||
* supercellMatchStr.setCoordinates(xpos, ypos);
|
||||
* strList.add(supercellMatchStr);
|
||||
*
|
||||
* String sighailStr = new String(sarsInfo.getSighailStr(), (i*60), 60);
|
||||
* //System.out.println("sighail str #"+ (1+ i)+ " "+ sighailStr); RGB
|
||||
* strColor1 =
|
||||
* NsharpConstants.gempakColorToRGB.get(sarsInfo.getSighailStrColor());
|
||||
* sighailStr = sighailStr.substring(0, sighailStr.indexOf('\0'));// get
|
||||
* rid of tailing null char(s), as DrawableString will print them out
|
||||
* DrawableString sighailMatchStr = new DrawableString(sighailStr,
|
||||
* strColor1); sighailMatchStr.font = font10;
|
||||
* sighailMatchStr.horizontalAlignment = HorizontalAlignment.LEFT;
|
||||
* sighailMatchStr.verticallAlignment = VerticalAlignment.TOP; xpos =
|
||||
* xstart + 0.51 *spcFrameWidth; sighailMatchStr.setCoordinates(xpos,
|
||||
* ypos); strList.add(sighailMatchStr); }
|
||||
*/
|
||||
|
||||
target.drawStrings(strList.toArray(new DrawableString[strList.size()]));
|
||||
target.drawLine(lineList.toArray(new DrawableLine[lineList.size()]));
|
||||
}
|
||||
|
@ -1621,13 +1581,15 @@ public class NsharpSpcGraphsPaneResource extends NsharpAbstractPaneResource {
|
|||
// logic statements for Thompson et al. (2012) WAF sample
|
||||
// 39 sigtor, 28 non-sigtor supercells
|
||||
if (cin >= 10) {
|
||||
// setcolor(7)
|
||||
psigt_stpcin = "0.58";
|
||||
stpcColor = NsharpConstants.color_magenta;// setcolor(7);
|
||||
stpcColor = NsharpConstants.color_magenta;;
|
||||
}
|
||||
// 39 sigtor, 32 non-sigtor supercells
|
||||
else if (cin >= 8) {
|
||||
// setcolor(7)
|
||||
psigt_stpcin = "0.55";
|
||||
stpcColor = NsharpConstants.color_magenta;// setcolor(7);
|
||||
stpcColor = NsharpConstants.color_magenta;
|
||||
}
|
||||
// 54 sigtor, 104 non-sigtor supercells
|
||||
else if (cin >= 6) {
|
||||
|
@ -1745,17 +1707,6 @@ public class NsharpSpcGraphsPaneResource extends NsharpAbstractPaneResource {
|
|||
valueStp.verticallAlignment = VerticalAlignment.TOP;
|
||||
valueStp.setCoordinates(tboxValueStart, ypos);
|
||||
strList.add(valueStp);
|
||||
|
||||
// reset parcel to previous "oldlplchoice" , TBD
|
||||
/*
|
||||
* float pres; if(oldlplchoice ==
|
||||
* NsharpNativeConstants.PARCELTYPE_USER_DEFINED){
|
||||
* if(NsharpParcelDialog.getAccess() != null){ pres =
|
||||
* NsharpParcelDialog.getAccess().getUserDefdParcelMb(); } else pres =
|
||||
* NsharpNativeConstants.parcelToLayerMap.get(oldlplchoice); } else pres
|
||||
* = NsharpNativeConstants.parcelToLayerMap.get(oldlplchoice);
|
||||
* nsharpNative.nsharpLib.define_parcel(oldlplchoice,pres);
|
||||
*/
|
||||
target.drawStrings(strList.toArray(new DrawableString[strList.size()]));
|
||||
target.drawLine(lineList.toArray(new DrawableLine[lineList.size()]));
|
||||
|
||||
|
@ -1876,7 +1827,7 @@ public class NsharpSpcGraphsPaneResource extends NsharpAbstractPaneResource {
|
|||
|
||||
short oldlplchoice;
|
||||
_parcel pcl = new _parcel();
|
||||
;
|
||||
|
||||
_lplvalues lpvls = new _lplvalues();
|
||||
nsharpNative.nsharpLib.get_lpvaluesData(lpvls);
|
||||
// oldlplchoice = lpvls.flag;
|
||||
|
@ -1931,12 +1882,6 @@ public class NsharpSpcGraphsPaneResource extends NsharpAbstractPaneResource {
|
|||
lineList.add(ebsline);
|
||||
}
|
||||
float pres;
|
||||
/*
|
||||
* if(oldlplchoice == NsharpNativeConstants.PARCELTYPE_USER_DEFINED){
|
||||
* if(NsharpParcelDialog.getAccess() != null){ pres =
|
||||
* NsharpParcelDialog.getAccess().getUserDefdParcelMb(); } else pres =
|
||||
* NsharpNativeConstants.parcelToLayerMap.get(oldlplchoice); } else
|
||||
*/
|
||||
oldlplchoice = rscHandler.getCurrentParcel();
|
||||
pres = NsharpNativeConstants.parcelToLayerMap.get(oldlplchoice);
|
||||
nsharpNative.nsharpLib.define_parcel(oldlplchoice, pres);
|
||||
|
@ -1958,20 +1903,17 @@ public class NsharpSpcGraphsPaneResource extends NsharpAbstractPaneResource {
|
|||
hRatio = paintProps.getView().getExtent().getWidth()
|
||||
/ paintProps.getCanvasBounds().width;
|
||||
DrawableLine line = new DrawableLine();
|
||||
line.setCoordinates(spcRightXOrig, spcYOrig);
|
||||
line.addPoint(spcRightXOrig, spcYOrig + spcHeight);
|
||||
line.lineStyle = LineStyle.SOLID;
|
||||
line.basics.color = NsharpConstants.color_white;
|
||||
line.width = 1;
|
||||
line.setCoordinates(spcRightXOrig, spcYOrig);
|
||||
line.addPoint(spcRightXOrig, spcYOrig + spcHeight);
|
||||
target.drawLine(line);
|
||||
PixelExtent spcExt = new PixelExtent(new Rectangle((int) spcLeftXOrig,
|
||||
(int) spcYOrig, (int) spcWidth, (int) spcHeight));
|
||||
target.drawRect(spcExt, NsharpConstants.color_white, 1f, 1f); // box
|
||||
// border
|
||||
// line
|
||||
PixelExtent extent = new PixelExtent(new Rectangle((int) spcLeftXOrig,
|
||||
(int) spcYOrig, (int) spcFrameWidth, (int) spcHeight));
|
||||
// target.setupClippingPlane(extent);
|
||||
switch (leftGraph) {
|
||||
case EBS:
|
||||
plotEBS(left);
|
||||
|
@ -1995,10 +1937,6 @@ public class NsharpSpcGraphsPaneResource extends NsharpAbstractPaneResource {
|
|||
plotSars(left);
|
||||
break;
|
||||
}
|
||||
// target.clearClippingPlane();
|
||||
extent = new PixelExtent(new Rectangle((int) spcRightXOrig,
|
||||
(int) spcYOrig, (int) spcFrameWidth, (int) spcHeight));
|
||||
// target.setupClippingPlane(extent);
|
||||
switch (rightGraph) {
|
||||
case EBS:
|
||||
plotEBS(right);
|
||||
|
@ -2022,7 +1960,7 @@ public class NsharpSpcGraphsPaneResource extends NsharpAbstractPaneResource {
|
|||
plotSars(right);
|
||||
break;
|
||||
}
|
||||
// target.clearClippingPlane();
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -2030,19 +1968,46 @@ public class NsharpSpcGraphsPaneResource extends NsharpAbstractPaneResource {
|
|||
super.initInternal(target);
|
||||
}
|
||||
|
||||
/*
|
||||
* private void disposeEbsShape(){ if(ebsBkgLblShape != null)
|
||||
* ebsBkgLblShape.dispose(); if(ebsBkgLineShape != null)
|
||||
* ebsBkgLineShape.dispose(); if(ebsSupercellShape != null)
|
||||
* ebsSupercellShape.dispose(); if(ebsMrglSupShape != null)
|
||||
* ebsMrglSupShape.dispose(); if(ebsNonSupSgape != null)
|
||||
* ebsNonSupSgape.dispose(); }
|
||||
*/
|
||||
@Override
|
||||
protected void disposeInternal() {
|
||||
super.disposeInternal();
|
||||
}
|
||||
|
||||
|
||||
public NsharpConstants.SPCGraph getLeftGraph() {
|
||||
return leftGraph;
|
||||
}
|
||||
|
||||
public void setGraphs(NsharpConstants.SPCGraph leftGraph,
|
||||
NsharpConstants.SPCGraph rightGraph) {
|
||||
this.leftGraph = leftGraph;
|
||||
this.rightGraph = rightGraph;
|
||||
getSpcGraphsInfo();
|
||||
rscHandler.refreshPane();
|
||||
}
|
||||
|
||||
public NsharpConstants.SPCGraph getRightGraph() {
|
||||
return rightGraph;
|
||||
}
|
||||
|
||||
public synchronized void getSpcGraphsInfo() {
|
||||
if (rightGraph == NsharpConstants.SPCGraph.SARS
|
||||
|| leftGraph == NsharpConstants.SPCGraph.SARS) {
|
||||
nsharpNative.nsharpLib.getSarsInfo(sarsInfo);
|
||||
}
|
||||
if (leftGraph == NsharpConstants.SPCGraph.WINTER
|
||||
|| rightGraph == NsharpConstants.SPCGraph.WINTER) {
|
||||
nsharpNative.nsharpLib.getWinterInfo(winterInfo);
|
||||
}
|
||||
if (rightGraph == NsharpConstants.SPCGraph.FIRE
|
||||
|| leftGraph == NsharpConstants.SPCGraph.FIRE) {
|
||||
nsharpNative.nsharpLib.getFireInfo(fireInfo);
|
||||
}
|
||||
if (leftGraph == NsharpConstants.SPCGraph.HAIL
|
||||
|| rightGraph == NsharpConstants.SPCGraph.HAIL) {
|
||||
nsharpNative.nsharpLib.getHailInfo(hailInfo);
|
||||
}
|
||||
}
|
||||
@Override
|
||||
public void handleResize() {
|
||||
|
||||
|
@ -2064,38 +2029,4 @@ public class NsharpSpcGraphsPaneResource extends NsharpAbstractPaneResource {
|
|||
spcYEnd = ext.getMaxY();
|
||||
}
|
||||
|
||||
public NsharpConstants.SPCGraph getLeftGraph() {
|
||||
return leftGraph;
|
||||
}
|
||||
|
||||
public void setGraphs(NsharpConstants.SPCGraph leftGraph,
|
||||
NsharpConstants.SPCGraph rightGraph) {
|
||||
this.leftGraph = leftGraph;
|
||||
this.rightGraph = rightGraph;
|
||||
getSpcGraphsInfo();
|
||||
rscHandler.refreshPane();
|
||||
}
|
||||
|
||||
public NsharpConstants.SPCGraph getRightGraph() {
|
||||
return rightGraph;
|
||||
}
|
||||
|
||||
public void getSpcGraphsInfo() {
|
||||
if (leftGraph == NsharpConstants.SPCGraph.WINTER
|
||||
|| rightGraph == NsharpConstants.SPCGraph.WINTER) {
|
||||
nsharpNative.nsharpLib.getWinterInfo(winterInfo);
|
||||
}
|
||||
if (leftGraph == NsharpConstants.SPCGraph.FIRE
|
||||
|| rightGraph == NsharpConstants.SPCGraph.FIRE) {
|
||||
nsharpNative.nsharpLib.getFireInfo(fireInfo);
|
||||
}
|
||||
if (leftGraph == NsharpConstants.SPCGraph.HAIL
|
||||
|| rightGraph == NsharpConstants.SPCGraph.HAIL) {
|
||||
nsharpNative.nsharpLib.getHailInfo(hailInfo);
|
||||
}
|
||||
if (leftGraph == NsharpConstants.SPCGraph.SARS
|
||||
|| rightGraph == NsharpConstants.SPCGraph.SARS) {
|
||||
nsharpNative.nsharpLib.getSarsInfo(sarsInfo);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -790,12 +790,12 @@ public class NsharpNative {
|
|||
|
||||
@Override
|
||||
protected List getFieldOrder() {
|
||||
return Arrays.asList(new String[] { "oprh", "layerDepth",
|
||||
"meanLayerRh", "meanLayerMixRat", "meanLayerPw",
|
||||
"meanLayerOmega", "initPhase", "tempProfile1",
|
||||
"tempProfile2", "tempProfile3", "wetbulbProfile1",
|
||||
"wetbulbProfile2", "wetbulbProfile3", "bestGuess1",
|
||||
"bestGuess2" });
|
||||
return Arrays.asList(new String[] { "mopw", "oprh",
|
||||
"layerDepth", "meanLayerRh", "meanLayerMixRat",
|
||||
"meanLayerPw", "meanLayerOmega", "initPhase",
|
||||
"tempProfile1", "tempProfile2", "tempProfile3",
|
||||
"wetbulbProfile1", "wetbulbProfile2",
|
||||
"wetbulbProfile3", "bestGuess1", "bestGuess2" });
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1603,6 +1603,7 @@ public class NsharpPaletteWindow extends ViewPart implements SelectionListener,
|
|||
} else {
|
||||
hailBtn.setEnabled(false);
|
||||
}
|
||||
hailBtn.setEnabled(false); //Chin ::: temporarily disable HAIL button
|
||||
hailBtn.addListener(SWT.MouseUp, new Listener() {
|
||||
public void handleEvent(Event event) {
|
||||
if (leftGraph != NsharpConstants.SPCGraph.HAIL
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
Name: awips2-java
|
||||
Summary: AWIPS II Java Distribution
|
||||
Version: %{_java_version}
|
||||
Release: 2
|
||||
Release: 3
|
||||
Group: AWIPSII
|
||||
BuildRoot: %{_build_root}
|
||||
BuildArch: %{_build_arch}
|
||||
|
@ -177,7 +177,7 @@ rm -f %{_build_root}/awips2/java/bin/jmc
|
|||
# The licenses
|
||||
mkdir -p %{_build_root}/awips2/java/licenses
|
||||
LEGAL_DIR="%{_baseline_workspace}/rpms/legal"
|
||||
cp -v ${LEGAL_DIR}/*.txt ${LEGAL_DIR}/*.pdf \
|
||||
cp -v ${LEGAL_DIR}/*.pdf \
|
||||
%{_build_root}/awips2/java/licenses
|
||||
if [ $? -ne 0 ]; then
|
||||
exit 1
|
||||
|
|
Loading…
Add table
Reference in a new issue