mirror of
https://github.com/elisspace/autopsy.git
synced 2026-08-30 08:01:57 +00:00
Update GPX parser for geo helper API changes
This commit is contained in:
@@ -216,7 +216,7 @@ class GPXParserDataSourceIngestModule(DataSourceIngestModule):
|
||||
geoWaypointList = TskGeoWaypointsUtil.GeoWaypointList()
|
||||
|
||||
for point in route.points:
|
||||
geoWaypointList.addPoint(GeoWaypoint(point.latitude, point.longitude, point.name))
|
||||
geoWaypointList.addPoint(GeoWaypoint(point.latitude, point.longitude, point.elevation, point.name))
|
||||
|
||||
try:
|
||||
geoArtifactHelper.addRoute(None, None, geoWaypointList, None)
|
||||
|
||||
Reference in New Issue
Block a user