* add flag to auto load a route from the most suitable source
* split to functions
* early return
* add --auto to replay
* README
* cleanup
* remove prefix
* parse datetime
* cleanup
* improve help
* do not modify logreader.py
* fix seg_num
* cleanup
@ -23,6 +23,7 @@ int main(int argc, char *argv[]) {
cmd_parser.addHelpOption();
cmd_parser.addHelpOption();
cmd_parser.addPositionalArgument("route","the drive to replay. find your drives at connect.comma.ai");
cmd_parser.addPositionalArgument("route","the drive to replay. find your drives at connect.comma.ai");
cmd_parser.addOption({"demo","use a demo route instead of providing your own"});
cmd_parser.addOption({"demo","use a demo route instead of providing your own"});
cmd_parser.addOption({"auto","Auto load the route from the best available source (no video): internal, openpilotci, comma_api, car_segments, testing_closet"});