Hi Brent,
have you tried using MakeLine() in its version acting as an
aggregate function?
this SQL spatial function is documented here:
https://www.gaia-gis.it/gaia-sins/spatialite-sql-5.1.0.html#p0
---------------
MakeLine( geom PointGeometry ) : LinestringGeometry
"a Linestring Geometry will be returned connecting all the input
Points (accordingly to input sequence)
aggregate function
---------------
basically something like this:
SELECT MakeLine(pt_geom)
FROM gps_points
WHERE <timestamp> BETWEEN <start> AND <finish>
ORDER BY <timestamp>;
best regards,
Sandro