Merge "Omaha #3133 remove some unnecessary edex dependencies" into omaha_14.4.1

Former-commit-id: e324b90667 [formerly 555b8a2109] [formerly b2ce12a907] [formerly e324b90667 [formerly 555b8a2109] [formerly b2ce12a907] [formerly 5e6e619e82 [formerly b2ce12a907 [formerly 37f5013d6e64616a2959d95de9d2b1569e3f4286]]]]
Former-commit-id: 5e6e619e82
Former-commit-id: 07296dab2d [formerly d5eb22ae5d] [formerly ab03fa4433fd6be81a0130625f1afbe542d4a78d [formerly ba573df2b1]]
Former-commit-id: 7b54948fa6462788b0e557e247644308fca5ec4a [formerly b5e70dde3b]
Former-commit-id: 8c941695eb
This commit is contained in:
Richard Peter 2014-05-12 15:21:38 -05:00 committed by Gerrit Code Review
commit 565486354c
5 changed files with 12 additions and 14 deletions

View file

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Ncwf Plug-in
Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.bufrncwf
Bundle-Version: 1.12.1174.qualifier
Bundle-Version: 1.14.0.qualifier
Eclipse-RegisterBuddy: com.raytheon.uf.common.serialization
Bundle-Vendor: RAYTHEON
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
@ -14,5 +14,4 @@ Require-Bundle: com.raytheon.uf.common.serialization,
com.raytheon.uf.common.geospatial
Import-Package: com.raytheon.uf.common.pointdata,
com.raytheon.uf.common.pointdata.spatial,
com.raytheon.uf.common.status,
com.raytheon.uf.edex.decodertools.core
com.raytheon.uf.common.status

View file

@ -25,7 +25,6 @@ import java.util.List;
import com.raytheon.uf.common.serialization.annotations.DynamicSerialize;
import com.raytheon.uf.common.serialization.annotations.DynamicSerializeElement;
import com.raytheon.uf.edex.decodertools.core.DecoderTools;
import com.vividsolutions.jts.geom.Coordinate;
/**
@ -38,6 +37,7 @@ import com.vividsolutions.jts.geom.Coordinate;
* ------------ ---------- ----------- --------------------------
* --/--/---- jkorman Initial creation
* Oct 15, 2013 2361 njensen Remove XML annotations
* May 12, 2014 3133 njensen Remove dependency on DecoderTools
*
* </pre>
*
@ -66,7 +66,7 @@ public class NCWFFeature implements Serializable {
* Feature centroid longitude.
*/
public NCWFFeature(Double lat, Double lon) {
centroidLocation = DecoderTools.createCoordinate(lat, lon);
centroidLocation = new Coordinate(lon, lat);
}
/**
@ -81,7 +81,7 @@ public class NCWFFeature implements Serializable {
* @return
*/
public double getCentroidLatitude() {
return DecoderTools.getCoordinateLatitude(centroidLocation);
return centroidLocation.y;
}
/**
@ -89,7 +89,7 @@ public class NCWFFeature implements Serializable {
* @return
*/
public double getCentroidLongitude() {
return DecoderTools.getCoordinateLongitude(centroidLocation);
return centroidLocation.x;
}
/**

View file

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Bufrssmi Plug-in
Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.bufrssmi
Bundle-Version: 1.12.1174.qualifier
Bundle-Version: 1.14.0.qualifier
Eclipse-RegisterBuddy: com.raytheon.uf.common.serialization
Bundle-Vendor: RAYTHEON
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
@ -15,5 +15,4 @@ Require-Bundle: com.raytheon.uf.common.serialization,
com.raytheon.uf.common.dataplugin
Import-Package: com.raytheon.uf.common.dataplugin.bufrssmi,
com.raytheon.uf.common.pointdata,
com.raytheon.uf.common.status,
com.raytheon.uf.edex.decodertools.time
com.raytheon.uf.common.status

View file

@ -42,7 +42,7 @@ import com.raytheon.uf.common.pointdata.PointDataView;
import com.raytheon.uf.common.pointdata.spatial.SurfaceObsLocation;
import com.raytheon.uf.common.serialization.annotations.DynamicSerialize;
import com.raytheon.uf.common.serialization.annotations.DynamicSerializeElement;
import com.raytheon.uf.edex.decodertools.time.TimeTools;
import com.raytheon.uf.common.time.util.TimeUtil;
import com.vividsolutions.jts.geom.Geometry;
/**
@ -62,6 +62,7 @@ import com.vividsolutions.jts.geom.Geometry;
* May 17, 2013 1869 bsteffen Remove DataURI column from sat plot
* types.
* Aug 30, 2013 2298 rjpeter Make getPluginName abstract
* May 12, 2014 3133 njensen Use TimeUtil instead of TimeTools
*
* </pre>
*
@ -315,7 +316,7 @@ public class SSMIScanData extends PersistablePluginDataObject implements
SSMIScanData obs = new SSMIScanData();
obs.dataTime = dataTime.clone();
obs.timeObs = TimeTools.copy(timeObs);
obs.timeObs = TimeUtil.newCalendar(timeObs);
obs.orbitNumber = orbitNumber;
obs.satId = satId;
obs.scanNumber = scanNumber;

View file

@ -8,8 +8,7 @@ Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Eclipse-RegisterBuddy: com.raytheon.uf.common.serialization
Require-Bundle: com.raytheon.uf.common.serialization,
org.hibernate,
com.raytheon.uf.common.localization;bundle-version="1.12.1174",
com.raytheon.edex.common;bundle-version="1.12.1174"
com.raytheon.uf.common.localization;bundle-version="1.12.1174"
Import-Package: com.raytheon.uf.common.dataplugin.persist,
com.raytheon.uf.common.serialization,
com.raytheon.uf.common.serialization.annotations,