VLab Issue #4602
Fixes MPE Gage Table Data Reading problem introduced in a earlier 14.3.1 build, a.k.a Redmine O&M DR 16699 Change-Id: I12b879fb873f66d43d7f735165fa4f303c026174 Former-commit-id: 4d87ebeef93e561a303566853fd2616316c568ca
This commit is contained in:
parent
51f2d9df8e
commit
4911ac1917
2 changed files with 2 additions and 9 deletions
|
@ -62,6 +62,7 @@ import com.vividsolutions.jts.geom.Coordinate;
|
||||||
* May 20, 2013 15962 lbousaidi Added a new routine getRadarIdsTrue()
|
* May 20, 2013 15962 lbousaidi Added a new routine getRadarIdsTrue()
|
||||||
* for Radar Sites dialog.
|
* for Radar Sites dialog.
|
||||||
* Mar 05, 2014 17114 lbousaidi display PC data in gage table.
|
* Mar 05, 2014 17114 lbousaidi display PC data in gage table.
|
||||||
|
* Sep 04, 2014 16699 cgobs Fixed 14.3.1 issue with reading MPE field data.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* @author mpduff
|
* @author mpduff
|
||||||
|
@ -1136,10 +1137,9 @@ public class GageTableDataManager {
|
||||||
double returnValue = -999.0;
|
double returnValue = -999.0;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
String cv_use = dataType.getCv_use();
|
|
||||||
String dirname = appsDefaults.getToken(dataType.getDirToken());
|
String dirname = appsDefaults.getToken(dataType.getDirToken());
|
||||||
String fname = FileUtil.join(dirname,
|
String fname = FileUtil.join(dirname,
|
||||||
cv_use + sdf.format(displayManager.getCurrentEditDate()) + "z");
|
dataType.getFileNamePrefix() + sdf.format(displayManager.getCurrentEditDate()) + "z");
|
||||||
|
|
||||||
Rectangle extent = dataManager.getHRAPExtent();
|
Rectangle extent = dataManager.getHRAPExtent();
|
||||||
|
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
<project basedir="." default="deploy" name="gov.noaa.nws.ohd.edex.plugin.hydrodualpol">
|
|
||||||
<available file="../build.edex" property="build.dir.location" value="../build.edex"/>
|
|
||||||
<available file="../../../../../build.edex" property="build.dir.location" value="../../../../../build.edex"/>
|
|
||||||
|
|
||||||
<import file="${build.dir.location}/basebuilds/component_deploy_base.xml" />
|
|
||||||
|
|
||||||
</project>
|
|
Loading…
Add table
Reference in a new issue