|
Autopsy
4.22.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
|
Inherits org.sleuthkit.autopsy.geolocation.datamodel.GeoPath.
Classes | |
| class | TrackWaypoint |
Public Member Functions | |
| Track (BlackboardArtifact artifact) throws GeoLocationDataException | |
| final BlackboardArtifact | getArtifact () |
| Long | getEndTime () |
| String | getLabel () |
| final List< Waypoint > | getPath () |
| Long | getStartTime () |
Static Public Member Functions | |
| static GeoLocationParseResult< Area > | getAreas (SleuthkitCase skCase, List<?extends Content > sourceList) throws GeoLocationDataException |
| static List< Route > | getRoutes (SleuthkitCase skCase) throws GeoLocationDataException |
| static GeoLocationParseResult< Track > | getTracks (SleuthkitCase skCase, List<?extends Content > sourceList) throws GeoLocationDataException |
Private Member Functions | |
| Track (BlackboardArtifact artifact, Map< BlackboardAttribute.ATTRIBUTE_TYPE, BlackboardAttribute > attributeMap) throws GeoLocationDataException | |
| void | buildPath (GeoTrackPoints points, BlackboardArtifact artifact) throws GeoLocationDataException |
| GeoTrackPoints | getPointsList (Map< BlackboardAttribute.ATTRIBUTE_TYPE, BlackboardAttribute > attributeMap) throws GeoLocationDataException |
Static Private Member Functions | |
| static String | getTrackName (Map< BlackboardAttribute.ATTRIBUTE_TYPE, BlackboardAttribute > attributeMap) |
Private Attributes | |
| final Long | endTimeStamp |
| final Long | startTimestamp |
A GPS track with which wraps the TSK_GPS_TRACK artifact.
Definition at line 35 of file Track.java.
| org.sleuthkit.autopsy.geolocation.datamodel.Track.Track | ( | BlackboardArtifact | artifact | ) | throws GeoLocationDataException |
Construct a new Track for the given artifact.
| artifact |
| GeoLocationDataException |
Definition at line 47 of file Track.java.
References org.sleuthkit.autopsy.geolocation.datamodel.GeoPath.artifact.
|
private |
Construct a Track for the given artifact and attributeMap.
| artifact | TSK_GPD_TRACK artifact |
| attributeMap | Map of the artifact attributes |
| GeoLocationDataException |
Definition at line 59 of file Track.java.
References org.sleuthkit.autopsy.geolocation.datamodel.GeoPath.artifact, org.sleuthkit.autopsy.geolocation.datamodel.Track.buildPath(), org::sleuthkit::datamodel::blackboardutils::attributes::GeoTrackPoints.getEndTime(), org.sleuthkit.autopsy.geolocation.datamodel.Track.getPointsList(), org::sleuthkit::datamodel::blackboardutils::attributes::GeoTrackPoints.getStartTime(), and org.sleuthkit.autopsy.geolocation.datamodel.Track.getTrackName().
|
private |
Create the list of TrackWaypoints from the GeoTrackPoint list.
| points | GeoTrackPoints object. |
| artifact | The artifact to which these points belong |
| GeoLocationDataException |
Definition at line 115 of file Track.java.
References org.sleuthkit.autopsy.geolocation.datamodel.GeoPath.getLabel().
Referenced by org.sleuthkit.autopsy.geolocation.datamodel.Track.Track().
|
staticinherited |
Gets the list of Areas from the TSK_GPS_AREA artifacts.
| skCase | Currently open SleuthkitCase |
| sourceList | List of source to return areas from, may be null to return areas from all sources |
| GeoLocationDataException |
Definition at line 115 of file GeoPath.java.
References org::sleuthkit::datamodel::BlackboardArtifact.getArtifactID(), org::sleuthkit::datamodel::BlackboardArtifact.getDataSource(), and org::sleuthkit::datamodel::BlackboardArtifact::ARTIFACT_TYPE.TSK_GPS_AREA.
Referenced by org.sleuthkit.autopsy.geolocation.AbstractWaypointFetcher.process().
|
inherited |
Returns the BlackboardARtifact that this path represents.
Definition at line 173 of file GeoPath.java.
References org.sleuthkit.autopsy.geolocation.datamodel.GeoPath.artifact.
| Long org.sleuthkit.autopsy.geolocation.datamodel.Track.getEndTime | ( | ) |
Returns the end time of this track.
Definition at line 85 of file Track.java.
References org.sleuthkit.autopsy.geolocation.datamodel.Track.endTimeStamp.
|
inherited |
Returns the label or display name for this path.
Definition at line 182 of file GeoPath.java.
Referenced by org.sleuthkit.autopsy.report.modules.kml.KMLReport.addAreaToReport(), org.sleuthkit.autopsy.report.modules.kml.KMLReport.addRouteToReport(), org.sleuthkit.autopsy.report.modules.kml.KMLReport.addTrackToReport(), org.sleuthkit.autopsy.geolocation.datamodel.Area.buildPath(), org.sleuthkit.autopsy.geolocation.datamodel.Track.buildPath(), org.sleuthkit.autopsy.geolocation.datamodel.Route.createRoute(), and org.sleuthkit.autopsy.report.modules.kml.KMLReport.getFormattedDetails().
|
inherited |
Get the list of way points for this route;
Definition at line 164 of file GeoPath.java.
Referenced by org.sleuthkit.autopsy.report.modules.kml.KMLReport.addAreaToReport(), org.sleuthkit.autopsy.report.modules.kml.KMLReport.addTrackToReport(), and org.sleuthkit.autopsy.geolocation.datamodel.Route.getRoute().
|
private |
Returns the list of GeoTrackPoints from the attributeMap. Creates the GeoTrackPoint list from the TSK_GEO_TRACKPOINTS attribute.
| attributeMap | Map of artifact attributes. |
| GeoLocationDataException |
Definition at line 131 of file Track.java.
References org::sleuthkit::datamodel::blackboardutils::attributes::BlackboardJsonAttrUtil.fromAttribute(), and org::sleuthkit::datamodel::BlackboardAttribute::ATTRIBUTE_TYPE.TSK_GEO_TRACKPOINTS.
Referenced by org.sleuthkit.autopsy.geolocation.datamodel.Track.Track().
|
staticinherited |
Gets the list of Routes from the TSK_GPS_ROUTE artifacts.
| skCase | Currently open SleuthkitCase |
| GeoLocationDataException |
Definition at line 52 of file GeoPath.java.
References org::sleuthkit::datamodel::BlackboardArtifact::ARTIFACT_TYPE.TSK_GPS_ROUTE.
| Long org.sleuthkit.autopsy.geolocation.datamodel.Track.getStartTime | ( | ) |
Returns the start time of this track.
Definition at line 75 of file Track.java.
References org.sleuthkit.autopsy.geolocation.datamodel.Track.startTimestamp.
|
staticprivate |
Return the name of the track from the attributeMap. Track name is stored in the attribute TSK_NAME
| attributeMap |
Definition at line 97 of file Track.java.
References org::sleuthkit::datamodel::AbstractAttribute.getValueString(), and org::sleuthkit::datamodel::BlackboardAttribute::ATTRIBUTE_TYPE.TSK_NAME.
Referenced by org.sleuthkit.autopsy.geolocation.datamodel.Track.Track().
|
staticinherited |
Gets the list of Tracks from the TSK_GPS_TRACK artifacts.
| skCase | Currently open SleuthkitCase |
| sourceList | List of source to return tracks from, maybe null to return tracks from all sources |
| GeoLocationDataException |
Definition at line 80 of file GeoPath.java.
References org::sleuthkit::datamodel::BlackboardArtifact.getArtifactID(), org::sleuthkit::datamodel::BlackboardArtifact.getDataSource(), and org::sleuthkit::datamodel::BlackboardArtifact::ARTIFACT_TYPE.TSK_GPS_TRACK.
Referenced by org.sleuthkit.autopsy.geolocation.AbstractWaypointFetcher.process().
|
private |
Definition at line 38 of file Track.java.
Referenced by org.sleuthkit.autopsy.geolocation.datamodel.Track.getEndTime().
|
private |
Definition at line 37 of file Track.java.
Referenced by org.sleuthkit.autopsy.geolocation.datamodel.Track.getStartTime().
Copyright © 2012-2024 Sleuth Kit Labs. Generated on: Mon Mar 17 2025
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.