# lachesis ## Description Implements the first-stage stop point detection algorithm from Hariharan and Toyama (2004) *Project Lachesis: Parsing and Modeling Location Histories* ## Installation ``` cargo install lachesis ``` ## Data format This binary requires a `.csv` file (no header) with the columns: `id` (String), `time` (String), `x` (Float), `y` (Float). ## Example usage ``` {shell} cat data/gps_data.csv | lachesis --distance 200 --time 300 --fmt-time '%Y-%m-%d %H:%M:%S' > output.csv ``` ## API Documentation ``` lachesis --help ``` ``` GPS stop point detection from Hariharan and Toyama (2004) 'Project Lachesis: Parsing and Modeling Location Histories' Usage: lachesis --distance --time