Omaha #3133 remove some unnecessary edex dependencies
Change-Id: I91f10fb36ecadf8e2fc830b135b5d245830417a2 Former-commit-id:15329c6b03
[formerly15329c6b03
[formerly 846003056f07ef205f59c7b043a31a4fa66e5977]] Former-commit-id:54dbc0ef71
Former-commit-id:2bb07cddf0
This commit is contained in:
parent
fa8fe83993
commit
54e1ebb9a9
5 changed files with 12 additions and 14 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue