1
0
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:
Richard Cordovano
2020-03-09 11:42:05 -04:00
parent 751abdfc4a
commit e81fc04495

View File

@@ -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)