mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-12 07:56:16 +00:00
Cleanup
This commit is contained in:
parent
98f3d2a974
commit
821b733428
@ -118,7 +118,7 @@ abstract class AbstractWaypointFetcher implements WaypointBuilder.WaypointFilter
|
|||||||
for (List<Waypoint> t : geoDataSet.getAreas()) {
|
for (List<Waypoint> t : geoDataSet.getAreas()) {
|
||||||
areaSets.add(MapWaypoint.getWaypoints(t));
|
areaSets.add(MapWaypoint.getWaypoints(t));
|
||||||
}
|
}
|
||||||
// TODO check for area errors too TODO TODO
|
|
||||||
handleFilteredWaypointSet(
|
handleFilteredWaypointSet(
|
||||||
pointSet, trackSets, areaSets,
|
pointSet, trackSets, areaSets,
|
||||||
(trackResults == null || trackResults.isSuccessfullyParsed())
|
(trackResults == null || trackResults.isSuccessfullyParsed())
|
||||||
@ -296,6 +296,9 @@ abstract class AbstractWaypointFetcher implements WaypointBuilder.WaypointFilter
|
|||||||
return -1L;
|
return -1L;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Utility class to collect filtered GPS objects.
|
||||||
|
*/
|
||||||
static class GeoDataSet {
|
static class GeoDataSet {
|
||||||
private final List<Waypoint> waypoints;
|
private final List<Waypoint> waypoints;
|
||||||
private final List<List<Waypoint>> tracks;
|
private final List<List<Waypoint>> tracks;
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
CTL_RunIngestAction=Run Ingest
|
CTL_RunIngestAction=Run Ingest
|
||||||
CustomGPSIngestModule_Description=Just makes a few custom artifacts with GPS data
|
|
||||||
CustomGPSIngestModule_Name=Custom GPS Module
|
|
||||||
IngestJobSettingsPanel.IngestModulesTableRenderer.info.message=A previous version of this ingest module has been run before on this data source.
|
IngestJobSettingsPanel.IngestModulesTableRenderer.info.message=A previous version of this ingest module has been run before on this data source.
|
||||||
IngestJobSettingsPanel.IngestModulesTableRenderer.warning.message=This ingest module has been run before on this data source.
|
IngestJobSettingsPanel.IngestModulesTableRenderer.warning.message=This ingest module has been run before on this data source.
|
||||||
IngestJobSettingsPanel.noPerRunSettings=The selected module has no per-run settings.
|
IngestJobSettingsPanel.noPerRunSettings=The selected module has no per-run settings.
|
||||||
|
@ -747,7 +747,7 @@ public final class KMLReport implements GeneralReportModule {
|
|||||||
Element altitudeMode = new Element("altitudeMode", ns).addContent("clampToGround"); //NON-NLS
|
Element altitudeMode = new Element("altitudeMode", ns).addContent("clampToGround"); //NON-NLS
|
||||||
polygon.addContent(altitudeMode);
|
polygon.addContent(altitudeMode);
|
||||||
|
|
||||||
// KML uses lon, lat. Deliberately reversed.1
|
// KML uses lon, lat. Deliberately reversed.
|
||||||
Element coordinates = new Element("coordinates", ns);
|
Element coordinates = new Element("coordinates", ns);
|
||||||
for (Waypoint wp : waypoints) {
|
for (Waypoint wp : waypoints) {
|
||||||
coordinates.addContent(wp.getLongitude() + "," + wp.getLatitude() + ",0 "); //NON-NLS
|
coordinates.addContent(wp.getLongitude() + "," + wp.getLatitude() + ",0 "); //NON-NLS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user