mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
49 lines
2.1 KiB
Plaintext
49 lines
2.1 KiB
Plaintext
/*! \page gpx_page GPX Analyzer
|
|
|
|
\section gpx_overview Overview
|
|
|
|
The GPX Analyzer modules allows you to import GPS data from a GPX file. Information on the GPX format can be found <a href="https://www.topografix.com/gpx.asp">here</a>. The following is a short sample of a GPX file:
|
|
|
|
\verbatim
|
|
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
|
|
|
<gpx xmlns="http://www.topografix.com/GPX/1/1" xmlns:gpxx="http://www.garmin.com/xmlschemas/GpxExtensions/v3" xmlns:gpxtpx="http://www.garmin.com/xmlschemas/TrackPointExtension/v1" creator="Oregon 400t" version="1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd http://www.garmin.com/xmlschemas/GpxExtensions/v3 http://www.garmin.com/xmlschemas/GpxExtensionsv3.xsd http://www.garmin.com/xmlschemas/TrackPointExtension/v1 http://www.garmin.com/xmlschemas/TrackPointExtensionv1.xsd">
|
|
<metadata>
|
|
<link href="http://www.garmin.com">
|
|
<text>Garmin International</text>
|
|
</link>
|
|
<time>2009-10-17T22:58:43Z</time>
|
|
</metadata>
|
|
<trk>
|
|
<name>Example GPX Document</name>
|
|
<trkseg>
|
|
<trkpt lat="47.644548" lon="-122.326897">
|
|
<ele>4.46</ele>
|
|
<time>2009-10-17T18:37:26Z</time>
|
|
</trkpt>
|
|
<trkpt lat="47.644548" lon="-122.326897">
|
|
<ele>4.94</ele>
|
|
<time>2009-10-17T18:37:31Z</time>
|
|
</trkpt>
|
|
<trkpt lat="47.644548" lon="-122.326897">
|
|
<ele>6.87</ele>
|
|
<time>2009-10-17T18:37:34Z</time>
|
|
</trkpt>
|
|
</trkseg>
|
|
</trk>
|
|
</gpx>
|
|
\endverbatim
|
|
|
|
\section gpx_config Running the Module
|
|
|
|
To enable the GPX Analyzer ingest module select the checkbox in the \ref ingest_configure "Ingest Modules configuration screen".
|
|
|
|
\section gpx_results Viewing Results
|
|
|
|
Results are show in the Results tree under "Extracted Content". The GPX data types "wptType", "rteType", and "trkType" produce results of type GPS Bookmark, GPS Route, and GPS Track, respectively.
|
|
|
|
\image html gpx_results.png
|
|
|
|
GPS results can also be seen in the \ref geolocation_page window and the KML Report.
|
|
|
|
*/ |