[
  {
    "path": ".gitmodules",
    "content": "[submodule \"leaderboard\"]\n\tpath = leaderboard\n\turl = https://github.com/bradyz/leaderboard.git\n[submodule \"scenario_runner\"]\n\tpath = scenario_runner\n\turl = https://github.com/bradyz/scenario_runner.git\n[submodule \"carla_project\"]\n\tpath = carla_project\n\turl = https://github.com/bradyz/carla_project.git\n"
  },
  {
    "path": "README.md",
    "content": "# Learning by Cheating\n\n![teaser](https://github.com/dianchen96/LearningByCheating/blob/release-0.9.6/figs/fig1.png \"Pipeline\")\n> [**Learning by Cheating**](https://arxiv.org/abs/1912.12294)    \n> Dian Chen, Brady Zhou, Vladlen Koltun, Philipp Kr&auml;henb&uuml;hl,        \n> [Conference on Robot Learning](https://www.robot-learning.org) (CoRL 2019)      \n> _arXiv 1912.12294_\n\nIf you find our repo to be useful in your research, please consider citing our work\n```\n@inproceedings{chen2019lbc\n  author    = {Dian Chen and Brady Zhou and Vladlen Koltun and Philipp Kr\\\"ahenb\\\"uhl},\n  title     = {Learning by Cheating},\n  booktitle = {Conference on Robot Learning (CoRL)},\n  year      = {2019},\n}\n```\n\nThe code in this repo is based off of [link](https://github.com/dianchen96/LearningByCheating), which contains the code for the NoCrash and CoRL 17 benchmarks.\n\n## Installation\n\nClone this repo with all its submodules\n\n```bash\ngit clone https://github.com/bradyz/2020_CARLA_challenge.git --recursive\n```\n\nAll python packages used are specified in `carla_project/requirements.txt`.\n\nThis code uses CARLA 0.9.9 and works with CARLA 0.9.8, **0.9.10.1**.\n\nYou will also need to install CARLA 0.9.10.1, along with the additional maps.\nSee [link](https://github.com/carla-simulator/carla/releases/tag/0.9.10.1) for more instructions.\n\n## Dataset\n\nWe provide a dataset of over 70k samples collected over the 75 routes provided in `leaderboard/data/routes_*.xml`.\n\n[Link to full dataset (9 GB)](https://drive.google.com/file/d/1dwt9_EvXB1a6ihlMVMyYx0Bw0mN27SLy/view?usp=sharing).\n\n![sample](assets/sample_route.gif)\n\nThe dataset is collected using `leaderboard/team_code/autopilot.py`, using painfully hand-designed rules (i.e. if pedestrian is 5 meters ahead, then brake).\n\nAdditionally, we change the weather for a single route once every couple of seconds to add visual diversity as a sort of on-the-fly augmentation.\nThe simulator is run at 20 FPS, and we save the following data at 2 Hz.\n\n* Left, Center, and Right RGB Images at 256 x 144 resolution\n* A semantic segmentation rendered in the overhead view\n* World position and heading\n* Raw control (steer, throttle, brake)\n\nNote: the overhead view does nothing to address obstructions, like overhead highways, etc.\n\nWe provide a sample trajectory in `sample_data`, which you can visualize by running\n\n```\npython3 -m carla_project.src.dataset sample_data/route_00/\n```\n\n## Data Collection\n\nThe autopilot that we used to collect the data can use a lot of work and currently does not support stop signs.\n\nIf you're interested in recollecting data after changing the autopilot's driving behavior in `leaderboard/team_code/autopilot.py`, you can collect your own dataset by running the following.\n\nFirst, spin up a CARLA server\n\n```bash\n./CarlaUE4.sh -quality-level=Epic -world-port=2000 -resx=800 -resy=600 -opengl\n```\n\nthen run the agent.\n\n```bash\nexport CARLA_ROOT=/home/bradyzhou/software/CARLA_0.9.10.1           # change to where you installed CARLA\nexport PORT=2000                                                    # change to port that CARLA is running on\nexport ROUTES=leaderboard/data/routes_training/route_19.xml         # change to desired route\nexport TEAM_AGENT=auto_pilot.py                                     # no need to change\nexport TEAM_CONFIG=sample_data                                      # change path to save data\n\n./run_agent.sh\n```\n\n## Run a pretrained model\n\nDownload the checkpoint from our [Wandb project](https://app.wandb.ai/bradyz/2020_carla_challenge_lbc).\n\nNavigate to one of the runs, like https://app.wandb.ai/bradyz/2020_carla_challenge_lbc/runs/command_coefficient=0.01_sample_by=even_stage2/files\n\nGo to the \"files\" tab, and download the model weights, named \"epoch=24.ckpt\", and pass in the file path as the `TEAM_CONFIG` below.\n\nSpin up a CARLA server\n\n```bash\n./CarlaUE4.sh -quality-level=Epic -world-port=2000 -resx=800 -resy=600 -opengl\n```\n\nthen run the agent.\n\n```bash\nexport CARLA_ROOT=/home/bradyzhou/software/CARLA_0.9.10.1           # change to where you installed CARLA\nexport PORT=2000                                                    # change to port that CARLA is running on\nexport ROUTES=leaderboard/data/routes_training/route_19.xml         # change to desired route\nexport TEAM_AGENT=image_agent.py                                    # no need to change\nexport TEAM_CONFIG=model.ckpt                                       # change path to checkpoint\nexport HAS_DISPLAY=1                                                # set to 0 if you don't want a debug window\n\n./run_agent.sh\n```\n\n## Training models from scratch\n\nFirst, download and extract our provided dataset.\n\nThen run the stage 1 training of the privileged agent.\n\n```python\npython3 -m carla_project.src.map_model --dataset_dir /path/to/data --hack\n```\n\nWe use wandb for logging, so navigate to the generated experiment page to visualize training.\n\n**Important**: If you're interested in tuning hyperparameters, see `carla_project/src/map_model.py` for more detail.  \nTo see what hyperparameters we used for our models, you can see all of them by navigating to the corresponding [wandb run config](https://wandb.ai/bradyz/2020_carla_challenge_lbc/runs/command_coefficient=0.01_sample_by=even_stage2/overview).\n\n![sample](assets/stage_1.gif)\n\nTraining the sensorimotor agent (acts only on raw images) is similar, and can be done by\n\n```python\npython3 -m carla_project.src.image_model --dataset_dir /path/to/data\n```\n\n## Docker\n\nBuild the docker container to submit, make sure to edit `scripts/Dockerfile.master` appropriately.\n\n```bash\nsudo ./scripts/make_docker.sh\n```\n\nSpin up a CARLA server\n\n```bash\n./CarlaUE4.sh -quality-level=Epic -world-port=2000 -resx=800 -resy=600 -opengl\n```\n\nNow you can either run the docker container or run it interactively.\n\nTo run the docker container,\n\n```bash\nsudo docker run --net=host --gpus all -e NVIDIA_VISIBLE_DEVICES=0 -e REPETITIONS=1 -e DEBUG_CHALLENGE=0 -e PORT=2000 -e ROUTES=leaderboard/data/routes_devtest.xml -e CHECKPOINT_ENDPOINT=tmp.txt -e SCENARIOS=leaderboard/data/all_towns_traffic_scenarios_public.json leaderboard-user:latest ./leaderboard/scripts/run_evaluation.sh\n```\n\nOr if you need to debug something, you can run it interactively\n\n```bash\nsudo docker run --net=host --gpus all -it leaderboard-user:latest /bin/bash\n```\n\nRun the evaluation through the interactive shell.\n\n```bash\nexport PORT=2000\nexport DEBUG_CHALLENGE=0\nexport REPETITIONS=1\nexport ROUTES=leaderboard/data/routes_devtest/route_00.xml         # change to desired route\nexport CHECKPOINT_ENDPOINT=tmp.txt\nexport SCENARIOS=leaderboard/data/all_towns_traffic_scenarios_public.json\n\nconda activate python37\n\n./leaderboard/scripts/run_evaluation.sh\n```\n"
  },
  {
    "path": "run_agent.sh",
    "content": "#!/bin/bash\nexport PYTHONPATH=$PYTHONPATH:$CARLA_ROOT/PythonAPI/carla\nexport PYTHONPATH=$PYTHONPATH:$CARLA_ROOT/PythonAPI/carla/dist/carla-0.9.10-py3.7-linux-x86_64.egg\nexport PYTHONPATH=$PYTHONPATH:leaderboard\nexport PYTHONPATH=$PYTHONPATH:leaderboard/team_code\nexport PYTHONPATH=$PYTHONPATH:scenario_runner\n\nif [ -d \"$TEAM_CONFIG\" ]; then\n    CHECKPOINT_ENDPOINT=\"$TEAM_CONFIG/$(basename $ROUTES .xml).txt\"\nelse\n    CHECKPOINT_ENDPOINT=\"$(dirname $TEAM_CONFIG)/$(basename $ROUTES .xml).txt\"\nfi\n\npython3 leaderboard/leaderboard/leaderboard_evaluator.py \\\n--track=SENSORS \\\n--scenarios=leaderboard/data/all_towns_traffic_scenarios_public.json  \\\n--agent=${TEAM_AGENT} \\\n--agent-config=${TEAM_CONFIG} \\\n--routes=${ROUTES} \\\n--checkpoint=${CHECKPOINT_ENDPOINT} \\\n--port=${PORT}\n\necho \"Done. See $CHECKPOINT_ENDPOINT for detailed results.\"\n"
  },
  {
    "path": "sample_data/route_00/measurements/0000.json",
    "content": "{'x': -226.46817199206743, 'y': 338.76315306981644, 'theta': 0.0005980199784971774, 'speed': 3.3797341881785896e-08, 'target_speed': 7.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0001.json",
    "content": "{'x': -226.46817199206743, 'y': 338.76315306981644, 'theta': 0.0005980199784971774, 'speed': 3.352230199313333e-08, 'target_speed': 7.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0002.json",
    "content": "{'x': -226.46817199206743, 'y': 338.76315306981644, 'theta': 0.0005980199784971774, 'speed': -4.4254745117890757e-08, 'target_speed': 7.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0003.json",
    "content": "{'x': -226.3955796335324, 'y': 338.76315306981644, 'theta': 0.0009134905994869769, 'speed': 1.1073648751585912, 'target_speed': 7.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': -0.0, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0004.json",
    "content": "{'x': -225.19018341192762, 'y': 338.7655334409221, 'theta': 0.0013372133253142238, 'speed': 3.2242275164501613, 'target_speed': 7.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': -0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0005.json",
    "content": "{'x': -223.24619833424183, 'y': 338.7608947689973, 'theta': 6.2812323570251465, 'speed': 4.484101990680977, 'target_speed': 7.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0006.json",
    "content": "{'x': -220.7225743557678, 'y': 338.75619506205896, 'theta': 6.282495021820068, 'speed': 5.548496461942215, 'target_speed': 7.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0007.json",
    "content": "{'x': -218.01816523498735, 'y': 338.7507018979989, 'theta': 6.275488376617432, 'speed': 3.7197551879255757, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0055, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0008.json",
    "content": "{'x': -217.50249628750353, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': -0.01753278274022307, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.007, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0009.json",
    "content": "{'x': -217.49488150422113, 'y': 338.7487182553244, 'theta': 6.275613307952881, 'speed': -0.0041927202363261145, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0075, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0010.json",
    "content": "{'x': -217.4941337571747, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': -0.00022642588155692982, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.008, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0011.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': -3.757994374547926e-05, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0085, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0012.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': -1.9669654469562847e-06, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0085, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0013.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': -7.362043902331187e-07, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0085, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0014.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': -7.33916745849816e-08, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0085, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0015.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': -4.7163590824656944e-08, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0085, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0016.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': -2.6494531292559518e-08, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0085, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0017.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': -4.812141621617573e-09, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0085, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0018.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': -9.20385336979367e-09, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0085, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0019.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': 2.3740653472839056e-08, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0085, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0020.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': -1.128490337153138e-08, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0085, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0021.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': 5.178855062527387e-08, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0085, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0022.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': -4.8126899073037395e-09, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0085, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0023.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': -1.13892073934647e-08, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0085, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0024.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': -1.2318421021989945e-08, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0085, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0025.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': 4.105473234744735e-08, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0085, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0026.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': 1.5888131301566665e-09, 'target_speed': 0.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.0085, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0027.json",
    "content": "{'x': -217.4940421994759, 'y': 338.7487182553244, 'theta': 6.275605201721191, 'speed': -7.710912178132837e-10, 'target_speed': 7.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.017, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0028.json",
    "content": "{'x': -217.40336675088193, 'y': 338.7483215268933, 'theta': 6.277693748474121, 'speed': 0.6541252962001288, 'target_speed': 7.0, 'x_command': -209.17174534259908, 'y_command': 338.77359008151757, 'command': 4, 'steer': 0.014, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0029.json",
    "content": "{'x': -216.52907056233923, 'y': 338.7536315853938, 'theta': 0.001035801018588245, 'speed': 2.5728384660417736, 'target_speed': 7.0, 'x_command': -195.17150706875657, 'y_command': 325.6698608337601, 'command': 4, 'steer': 0.008, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0030.json",
    "content": "{'x': -214.90045335991232, 'y': 338.76751708346694, 'theta': 0.006224398966878653, 'speed': 3.8815104007893946, 'target_speed': 7.0, 'x_command': -195.17150706875657, 'y_command': 325.6698608337601, 'command': 4, 'steer': -0.0, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0031.json",
    "content": "{'x': -212.65488701192297, 'y': 338.77636718118407, 'theta': 0.003068801248446107, 'speed': 5.034492407600175, 'target_speed': 7.0, 'x_command': -195.17150706875657, 'y_command': 325.6698608337601, 'command': 1, 'steer': -0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0032.json",
    "content": "{'x': -209.88883114681377, 'y': 338.77774047216667, 'theta': 6.282840251922607, 'speed': 5.921043552742379, 'target_speed': 7.0, 'x_command': -195.17150706875657, 'y_command': 325.6698608337601, 'command': 1, 'steer': -0.0, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0033.json",
    "content": "{'x': -206.7336451425754, 'y': 338.755340569794, 'theta': 6.2716875076293945, 'speed': 6.650376741956694, 'target_speed': 4, 'x_command': -195.17150706875657, 'y_command': 325.6698608337601, 'command': 1, 'steer': -0.067, 'throttle': 0.109375, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0034.json",
    "content": "{'x': -203.69742828572123, 'y': 338.4725036557799, 'theta': 6.147345066070557, 'speed': 5.371613083223117, 'target_speed': 4, 'x_command': -195.17150706875657, 'y_command': 325.6698608337601, 'command': 1, 'steer': -0.156, 'throttle': 0.078125, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0035.json",
    "content": "{'x': -201.5377500042595, 'y': 337.8275451596756, 'theta': 5.974531650543213, 'speed': 3.7199858033269435, 'target_speed': 4, 'x_command': -195.17150706875657, 'y_command': 325.6698608337601, 'command': 1, 'steer': -0.245, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0036.json",
    "content": "{'x': -200.01037231674124, 'y': 336.9641418394371, 'theta': 5.7929887771606445, 'speed': 3.7377661931867494, 'target_speed': 4, 'x_command': -195.17150706875657, 'y_command': 325.6698608337601, 'command': 1, 'steer': -0.304, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0037.json",
    "content": "{'x': -198.4463404440709, 'y': 335.59963988622053, 'theta': 5.569595813751221, 'speed': 4.066008420103172, 'target_speed': 4, 'x_command': -195.17150706875657, 'y_command': 325.6698608337601, 'command': 1, 'steer': -0.336, 'throttle': 0.03894301873516179, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0038.json",
    "content": "{'x': -197.3570944102813, 'y': 334.1234435972461, 'theta': 5.371364593505859, 'speed': 3.6561895503103594, 'target_speed': 4, 'x_command': -195.17150706875657, 'y_command': 325.6698608337601, 'command': 1, 'steer': -0.263, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0039.json",
    "content": "{'x': -196.4695404157287, 'y': 332.2718200620989, 'theta': 5.170128345489502, 'speed': 4.117710666512781, 'target_speed': 4, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 1, 'steer': -0.244, 'throttle': 0.06635216396456148, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0040.json",
    "content": "{'x': -195.95459069467424, 'y': 330.50439452509727, 'theta': 5.015497207641602, 'speed': 3.6194898698153546, 'target_speed': 4, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 1, 'steer': -0.204, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0041.json",
    "content": "{'x': -195.63132223512324, 'y': 328.48135375354934, 'theta': 4.880986213684082, 'speed': 4.283697140724472, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': -0.135, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0042.json",
    "content": "{'x': -195.47054257498286, 'y': 326.26208495481006, 'theta': 4.787971019744873, 'speed': 4.838760896869136, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': -0.061, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0043.json",
    "content": "{'x': -195.3876958839083, 'y': 323.58383178101616, 'theta': 4.739457130432129, 'speed': 5.813607601272365, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': -0.019, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0044.json",
    "content": "{'x': -195.33910795622518, 'y': 320.4721679627677, 'theta': 4.729913234710693, 'speed': 6.584968162402411, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0045.json",
    "content": "{'x': -195.26576826196833, 'y': 316.99462890034084, 'theta': 4.734169960021973, 'speed': 7.108481432241087, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': 0.001, 'throttle': 0.10371837573239243, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0046.json",
    "content": "{'x': -195.19931084194303, 'y': 313.7772827089824, 'theta': 4.7340497970581055, 'speed': 5.513108046326403, 'target_speed': 0.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': -0.0035, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0047.json",
    "content": "{'x': -195.17991534471244, 'y': 312.6521911562766, 'theta': 4.731593132019043, 'speed': -0.008344398665597151, 'target_speed': 0.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': -0.0065, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0048.json",
    "content": "{'x': -195.17961014500037, 'y': 312.6420288027201, 'theta': 4.731605529785156, 'speed': -0.008093485756507148, 'target_speed': 0.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': -0.009, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0049.json",
    "content": "{'x': -195.1795643614049, 'y': 312.64031981831994, 'theta': 4.7316060066223145, 'speed': -0.0003564082722736302, 'target_speed': 0.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': -0.0105, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0050.json",
    "content": "{'x': -195.17954910442515, 'y': 312.6382751406319, 'theta': 4.731547832489014, 'speed': 0.03312204480252528, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': -0.022, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0051.json",
    "content": "{'x': -195.1797017058632, 'y': 312.2497253359362, 'theta': 4.727866172790527, 'speed': 1.7067342054292647, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': -0.019, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0052.json",
    "content": "{'x': -195.17657339853142, 'y': 310.97277831452226, 'theta': 4.719550132751465, 'speed': 3.240228799822682, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': -0.012, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0053.json",
    "content": "{'x': -195.1792744250007, 'y': 309.02691649808935, 'theta': 4.711544990539551, 'speed': 4.480569151649531, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': -0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0054.json",
    "content": "{'x': -195.19363411274404, 'y': 306.50646972076777, 'theta': 4.70775032043457, 'speed': 5.542929369928773, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': 0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0055.json",
    "content": "{'x': -195.19644195705592, 'y': 303.5168456973932, 'theta': 4.712689399719238, 'speed': 6.340958967451142, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': 0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0056.json",
    "content": "{'x': -195.18347093290672, 'y': 300.1411437931435, 'theta': 4.715156555175781, 'speed': 7.127641958841397, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': 0.002, 'throttle': 0.11313893305058835, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0057.json",
    "content": "{'x': -195.1735519153703, 'y': 296.7454833928997, 'theta': 4.71572732925415, 'speed': 6.218707295353548, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': 0.0, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0058.json",
    "content": "{'x': -195.16604398157085, 'y': 293.6729736273487, 'theta': 4.713319778442383, 'speed': 6.276107975990063, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': -0.0, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0059.json",
    "content": "{'x': -195.17306359393257, 'y': 290.3311767523093, 'theta': 4.7100749015808105, 'speed': 7.081756125118284, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': 0.002, 'throttle': 0.08923349163446352, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0060.json",
    "content": "{'x': -195.18362353434478, 'y': 286.9061584418057, 'theta': 4.710579872131348, 'speed': 6.254462762165091, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': 0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0061.json",
    "content": "{'x': -195.19216914843085, 'y': 283.85797118602886, 'theta': 4.710286617279053, 'speed': 6.17986315384307, 'target_speed': 7.0, 'x_command': -195.16728004056293, 'y_command': 273.66986083462854, 'command': 4, 'steer': 0.008, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0062.json",
    "content": "{'x': -195.18414237290608, 'y': 280.57400512167277, 'theta': 4.7180633544921875, 'speed': 6.968715550101033, 'target_speed': 7.0, 'x_command': -195.1630530155333, 'y_command': 221.66987609447742, 'command': 4, 'steer': -0.0, 'throttle': 0.2076256826198078, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0063.json",
    "content": "{'x': -195.16607450185845, 'y': 277.0954284615512, 'theta': 4.7169036865234375, 'speed': 6.457750816357263, 'target_speed': 7.0, 'x_command': -195.1630530155333, 'y_command': 221.66987609447742, 'command': 4, 'steer': -0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0064.json",
    "content": "{'x': -195.158566568059, 'y': 274.02822875463045, 'theta': 4.714670181274414, 'speed': 6.139339016665957, 'target_speed': 7.0, 'x_command': -195.1630530155333, 'y_command': 221.66987609447742, 'command': 4, 'steer': -0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0065.json",
    "content": "{'x': -195.15211157785404, 'y': 270.7826232859798, 'theta': 4.712001800537109, 'speed': 6.879769056702974, 'target_speed': 7.0, 'x_command': -195.1630530155333, 'y_command': 221.66987609447742, 'command': 4, 'steer': -0.004, 'throttle': 0.6542219848022459, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0066.json",
    "content": "{'x': -195.16201533208263, 'y': 267.2806701609341, 'theta': 4.7077555656433105, 'speed': 6.629589404123426, 'target_speed': 7.0, 'x_command': -195.1630530155333, 'y_command': 221.66987609447742, 'command': 4, 'steer': 0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0067.json",
    "content": "{'x': -195.1821585700316, 'y': 264.25585937008145, 'theta': 4.707123756408691, 'speed': 5.88303193756274, 'target_speed': 7.0, 'x_command': -195.1630530155333, 'y_command': 221.66987609447742, 'command': 4, 'steer': 0.007, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0068.json",
    "content": "{'x': -195.19459549231166, 'y': 261.1773986767663, 'theta': 4.711673736572266, 'speed': 6.50985355324941, 'target_speed': 7.0, 'x_command': -195.1630530155333, 'y_command': 221.66987609447742, 'command': 4, 'steer': 0.007, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0069.json",
    "content": "{'x': -195.1737350339319, 'y': 257.70727538580104, 'theta': 4.717020511627197, 'speed': 7.1419881266734295, 'target_speed': 7.0, 'x_command': -195.1630530155333, 'y_command': 221.66987609447742, 'command': 4, 'steer': 0.0, 'throttle': 0.0806915626184461, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0070.json",
    "content": "{'x': -195.1597415896399, 'y': 254.45130919931344, 'theta': 4.714755535125732, 'speed': 6.103294102964932, 'target_speed': 7.0, 'x_command': -195.1630530155333, 'y_command': 221.66987609447742, 'command': 4, 'steer': -0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0071.json",
    "content": "{'x': -195.15397329957807, 'y': 251.3349151564253, 'theta': 4.716068744659424, 'speed': 6.488756334523469, 'target_speed': 7.0, 'x_command': -195.1630530155333, 'y_command': 221.66987609447742, 'command': 4, 'steer': -0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0072.json",
    "content": "{'x': -195.1528593185724, 'y': 247.87915038595818, 'theta': 4.7109246253967285, 'speed': 7.163644773112906, 'target_speed': 7.0, 'x_command': -195.1630530155333, 'y_command': 221.66987609447742, 'command': 4, 'steer': -0.003, 'throttle': 0.07998064146388115, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0073.json",
    "content": "{'x': -195.17129342990734, 'y': 244.60955810082118, 'theta': 4.705924987792969, 'speed': 6.048345613772617, 'target_speed': 7.0, 'x_command': -195.1630530155333, 'y_command': 221.66987609447742, 'command': 4, 'steer': 0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0074.json",
    "content": "{'x': -195.18034262873897, 'y': 241.5473632766848, 'theta': 4.7092461585998535, 'speed': 6.3461748003611875, 'target_speed': 7.0, 'x_command': -195.1630530155333, 'y_command': 221.66987609447742, 'command': 4, 'steer': 0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0075.json",
    "content": "{'x': -195.181349788738, 'y': 238.1546478226866, 'theta': 4.713927268981934, 'speed': 7.175384329459435, 'target_speed': 7.0, 'x_command': -195.1630530155333, 'y_command': 221.66987609447742, 'command': 4, 'steer': 0.003, 'throttle': 0.08547562979964037, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0076.json",
    "content": "{'x': -195.16618131970105, 'y': 234.78099059612492, 'theta': 4.718552112579346, 'speed': 6.162328501054263, 'target_speed': 7.0, 'x_command': -195.1630530155333, 'y_command': 221.66987609447742, 'command': 4, 'steer': -0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0077.json",
    "content": "{'x': -195.1578493444642, 'y': 231.72216796436658, 'theta': 4.715599060058594, 'speed': 6.265326312699296, 'target_speed': 7.0, 'x_command': -195.1630530155333, 'y_command': 221.66987609447742, 'command': 4, 'steer': -0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0078.json",
    "content": "{'x': -195.1604130328033, 'y': 228.3819274858693, 'theta': 4.708124160766602, 'speed': 7.081550644524896, 'target_speed': 7.0, 'x_command': -195.15882598733967, 'y_command': 169.6698760953459, 'command': 4, 'steer': 0.003, 'throttle': 0.08898034543113478, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0079.json",
    "content": "{'x': -195.16561670070834, 'y': 224.95550536681142, 'theta': 4.711723327636719, 'speed': 6.252149721374127, 'target_speed': 7.0, 'x_command': -195.15882598733967, 'y_command': 169.6698760953459, 'command': 4, 'steer': 0.0, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0080.json",
    "content": "{'x': -195.17399445321257, 'y': 221.91737365302558, 'theta': 4.709409713745117, 'speed': 6.152857671010768, 'target_speed': 7.0, 'x_command': -195.15882598733967, 'y_command': 169.6698760953459, 'command': 4, 'steer': 0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0081.json",
    "content": "{'x': -195.16750894272, 'y': 218.64762878003043, 'theta': 4.715082168579102, 'speed': 6.941489504517816, 'target_speed': 7.0, 'x_command': -195.15882598733967, 'y_command': 169.6698760953459, 'command': 4, 'steer': -0.001, 'throttle': 0.34423996276473967, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0082.json",
    "content": "{'x': -195.1568727047528, 'y': 215.15452575283163, 'theta': 4.7171783447265625, 'speed': 6.530466063058412, 'target_speed': 7.0, 'x_command': -195.15882598733967, 'y_command': 169.6698760953459, 'command': 4, 'steer': -0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0083.json",
    "content": "{'x': -195.15330185641469, 'y': 212.08544921480194, 'theta': 4.714591979980469, 'speed': 6.103501964745821, 'target_speed': 7.0, 'x_command': -195.15882598733967, 'y_command': 169.6698760953459, 'command': 4, 'steer': -0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0084.json",
    "content": "{'x': -195.14800663081084, 'y': 208.86616515719126, 'theta': 4.712380886077881, 'speed': 6.819333176189752, 'target_speed': 7.0, 'x_command': -195.15882598733967, 'y_command': 169.6698760953459, 'command': 4, 'steer': -0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0085.json",
    "content": "{'x': -195.1467705654907, 'y': 205.35742187109685, 'theta': 4.712234973907471, 'speed': 6.731401685903765, 'target_speed': 7.0, 'x_command': -195.15882598733967, 'y_command': 169.6698760953459, 'command': 4, 'steer': -0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0086.json",
    "content": "{'x': -195.17475745407475, 'y': 202.27433776470755, 'theta': 4.702927112579346, 'speed': 6.0087105238767435, 'target_speed': 7.0, 'x_command': -195.15882598733967, 'y_command': 169.6698760953459, 'command': 4, 'steer': 0.009, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0087.json",
    "content": "{'x': -195.18067834557462, 'y': 199.1312866173618, 'theta': 4.711474418640137, 'speed': 6.639856327627994, 'target_speed': 7.0, 'x_command': -195.15882598733967, 'y_command': 169.6698760953459, 'command': 4, 'steer': 0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0088.json",
    "content": "{'x': -195.16894338674555, 'y': 195.63108825313859, 'theta': 4.715072154998779, 'speed': 7.008342383967934, 'target_speed': 7.0, 'x_command': -195.15882598733967, 'y_command': 169.6698760953459, 'command': 4, 'steer': 0.001, 'throttle': 0.07521745506114239, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0089.json",
    "content": "{'x': -195.16845506530782, 'y': 192.46162414190826, 'theta': 4.71256160736084, 'speed': 6.000155700392794, 'target_speed': 7.0, 'x_command': -195.15882598733967, 'y_command': 169.6698760953459, 'command': 4, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0090.json",
    "content": "{'x': -195.16370919538886, 'y': 189.37014770150589, 'theta': 4.714869499206543, 'speed': 6.474738727143164, 'target_speed': 7.0, 'x_command': -195.15882598733967, 'y_command': 169.6698760953459, 'command': 4, 'steer': -0.0, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0091.json",
    "content": "{'x': -195.15876494676445, 'y': 185.9156188930139, 'theta': 4.713128089904785, 'speed': 7.161053369357815, 'target_speed': 7.0, 'x_command': -195.15882598733967, 'y_command': 169.6698760953459, 'command': 4, 'steer': -0.001, 'throttle': 0.08014749944998946, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0092.json",
    "content": "{'x': -195.1629919781221, 'y': 182.64640807758707, 'theta': 4.710029602050781, 'speed': 6.059043207291435, 'target_speed': 7.0, 'x_command': -195.15882598733967, 'y_command': 169.6698760953459, 'command': 4, 'steer': 0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0093.json",
    "content": "{'x': -195.15682692432136, 'y': 179.57446288717597, 'theta': 4.715742588043213, 'speed': 6.37081473249852, 'target_speed': 7.0, 'x_command': -195.15882598733967, 'y_command': 169.6698760953459, 'command': 4, 'steer': -0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0094.json",
    "content": "{'x': -195.1508755125339, 'y': 176.16966247221976, 'theta': 4.710965633392334, 'speed': 7.1803430126918215, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.001, 'throttle': 0.08454117805238776, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0095.json",
    "content": "{'x': -195.1459007436219, 'y': 172.8185577360186, 'theta': 4.7159929275512695, 'speed': 6.140548991829203, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.006, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0096.json",
    "content": "{'x': -195.14342861930967, 'y': 169.7507934538282, 'theta': 4.713472366333008, 'speed': 6.30618984123666, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0097.json",
    "content": "{'x': -195.1455345033346, 'y': 166.38549804370797, 'theta': 4.711695194244385, 'speed': 7.124671822783743, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.08754077764428239, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0098.json",
    "content": "{'x': -195.1438864204598, 'y': 162.9843292205535, 'theta': 4.711997985839844, 'speed': 6.208372937113553, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0099.json",
    "content": "{'x': -195.15304243713405, 'y': 159.9486541717375, 'theta': 4.70814323425293, 'speed': 5.699772962420868, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0100.json",
    "content": "{'x': -195.1552551421656, 'y': 157.98530578313105, 'theta': 4.70865535736084, 'speed': 4.070814842263885, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0101.json",
    "content": "{'x': -195.16128285150808, 'y': 155.47515868850317, 'theta': 4.710039138793945, 'speed': 4.512623099901867, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.0015, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0102.json",
    "content": "{'x': -195.1617864330896, 'y': 153.79359435736546, 'theta': 4.711198329925537, 'speed': 3.278160285076825, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0103.json",
    "content": "{'x': -195.16125233122045, 'y': 152.0566406220529, 'theta': 4.71197509765625, 'speed': 3.994788110424457, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.001, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0104.json",
    "content": "{'x': -195.16087083078935, 'y': 150.8304290742978, 'theta': 4.712703227996826, 'speed': 0.49627870490328996, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.0005, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0105.json",
    "content": "{'x': -195.16085557380958, 'y': 150.80690002151553, 'theta': 4.712649345397949, 'speed': 0.13356775899342638, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0106.json",
    "content": "{'x': -195.15827662849074, 'y': 150.29904174519015, 'theta': 4.711772441864014, 'speed': 2.0001406758782507, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0107.json",
    "content": "{'x': -195.15878020690823, 'y': 148.9200897188903, 'theta': 4.7123565673828125, 'speed': 3.41263059427285, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0108.json",
    "content": "{'x': -195.16293093438287, 'y': 146.76351928435164, 'theta': 4.710852146148682, 'speed': 3.901544423079966, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.0015, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0109.json",
    "content": "{'x': -195.16526572056486, 'y': 145.83938598360663, 'theta': 4.710413932800293, 'speed': 0.19507565890403422, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0110.json",
    "content": "{'x': -195.16531149783225, 'y': 145.8288574190609, 'theta': 4.71044921875, 'speed': 0.03175181994284998, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0111.json",
    "content": "{'x': -195.16494525754496, 'y': 145.43261718475898, 'theta': 4.712262153625488, 'speed': 1.763887037422561, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0112.json",
    "content": "{'x': -195.1572999856153, 'y': 144.1515808078392, 'theta': 4.7164106369018555, 'speed': 3.228555414939097, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0113.json",
    "content": "{'x': -195.1479303269278, 'y': 142.235183713102, 'theta': 4.716649055480957, 'speed': 4.063242893392017, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.0025, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0114.json",
    "content": "{'x': -195.14773194822234, 'y': 140.95045470923725, 'theta': 4.7142333984375, 'speed': 0.1879404242452304, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0115.json",
    "content": "{'x': -195.14773194822234, 'y': 140.92057800025972, 'theta': 4.71466588973999, 'speed': 0.27418104221706385, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0116.json",
    "content": "{'x': -195.1467553053469, 'y': 140.16195678444393, 'theta': 4.714345932006836, 'speed': 2.237467422772166, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0117.json",
    "content": "{'x': -195.14382537988456, 'y': 138.80262756085023, 'theta': 4.7150559425354, 'speed': 3.5615351465002183, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0118.json",
    "content": "{'x': -195.14139903600378, 'y': 137.5746002171294, 'theta': 4.714478969573975, 'speed': 0.6319486037638588, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0119.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55735778539915, 'theta': 4.714473724365234, 'speed': -0.008689943100695598, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0120.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55526733141852, 'theta': 4.714473724365234, 'speed': -0.0006202991844464668, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0121.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55520629614554, 'theta': 4.714473724365234, 'speed': -8.692007250236469e-06, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0122.json",
    "content": "{'x': -195.14139903600378, 'y': 137.5551910374246, 'theta': 4.714473724365234, 'speed': -3.066283948457551e-06, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0123.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -6.390318394590731e-07, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0124.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -1.0485686498456691e-07, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0125.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -6.835367648057675e-08, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0126.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -1.948064079237831e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0127.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -4.2814336038644824e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0128.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -4.5410994204368554e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0129.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -1.1686719367593324e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0130.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 1.95421974062263e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0131.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -1.1700345609075184e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0132.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -3.3827001097047567e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0133.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -1.3052823666957758e-10, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0134.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 3.123865513916597e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0135.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -1.1553804322405632e-08, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0136.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -1.1700640898411334e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0137.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -4.28471302974006e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0138.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -4.536952378411806e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0139.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 6.550750123118587e-10, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0140.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 3.888619567587629e-10, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0141.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 9.123445368471963e-10, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0142.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 3.628824193455129e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0143.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -6.625080984254277e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0144.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -5.319509176646735e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0145.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -3.762781982794821e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0146.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 1.3029902013345597e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0147.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -4.285378760831687e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0148.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 4.0056697462528547e-08, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0149.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -2.2055267936798833e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0150.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -3.745830309638077e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0151.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 3.6399237312497494e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0152.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 1.1283204452259392e-08, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0153.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -2.1403726035551547e-08, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0154.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -4.812267733074147e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0155.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 0.0, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0156.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -3.1155768375987626e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0157.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -3.878882629104284e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0158.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -1.29114618806453e-10, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0159.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 2.6119405134247887e-08, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0160.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 3.37314030569865e-08, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0161.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 9.11992425694634e-10, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0162.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 6.429181798507103e-10, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0163.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -1.5514730867598508e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0164.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -4.143745956164865e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0165.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -8.548963684290498e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0166.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 2.3436445941771984e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0167.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -4.282723230727353e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0168.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 2.623526725748135e-10, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0169.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -1.3023341868968237e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0170.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 2.1669895014847367e-08, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0171.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 1.5605901409540677e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0172.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': 4.153256302945403e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0173.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -2.2068204546969993e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0174.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -1.8196621512656707e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0175.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -2.4661399615341973e-09, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0176.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55517577857393, 'theta': 4.714473724365234, 'speed': -6.51325769641422e-10, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0177.json",
    "content": "{'x': -195.14139903600378, 'y': 137.55574035384356, 'theta': 4.714476585388184, 'speed': 0.0009380232792357309, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.006, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0178.json",
    "content": "{'x': -195.141460076579, 'y': 137.31407165264335, 'theta': 4.714181900024414, 'speed': 1.297114744566005, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.006, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0179.json",
    "content": "{'x': -195.14518352319112, 'y': 136.1939086888577, 'theta': 4.711129665374756, 'speed': 2.8346624785951064, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': -0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0180.json",
    "content": "{'x': -195.15694900230778, 'y': 134.3747100803728, 'theta': 4.707646369934082, 'speed': 4.244710972536144, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.0015, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0181.json",
    "content": "{'x': -195.160275688345, 'y': 132.59045409905247, 'theta': 4.709442138671875, 'speed': 3.1352498639789412, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0182.json",
    "content": "{'x': -195.16311405294448, 'y': 130.9216155981364, 'theta': 4.710413932800293, 'speed': 3.763884358377008, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0183.json",
    "content": "{'x': -195.16770732458946, 'y': 129.53950500245986, 'theta': 4.709458351135254, 'speed': 1.1469278290282494, 'target_speed': 0.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0184.json",
    "content": "{'x': -195.16720374300792, 'y': 129.45745849356794, 'theta': 4.708749771118164, 'speed': 0.6375732727138009, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.007, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0185.json",
    "content": "{'x': -195.16813460545197, 'y': 128.78080749265013, 'theta': 4.709407329559326, 'speed': 2.2874272929396997, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.007, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0186.json",
    "content": "{'x': -195.16218319366448, 'y': 127.28100585689948, 'theta': 4.714288711547852, 'speed': 3.6373156162944915, 'target_speed': 7.0, 'x_command': -195.1546142192898, 'y_command': 117.6698760963441, 'command': 4, 'steer': 0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0187.json",
    "content": "{'x': -195.1597873700713, 'y': 124.90357970954933, 'theta': 4.713567733764648, 'speed': 4.826375021519734, 'target_speed': 7.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': 0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0188.json",
    "content": "{'x': -195.15806298331344, 'y': 122.34264373547985, 'theta': 4.711784362792969, 'speed': 4.55643186333166, 'target_speed': 7.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': 0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0189.json",
    "content": "{'x': -195.15102811397196, 'y': 120.39472198250819, 'theta': 4.715013027191162, 'speed': 4.30817206516211, 'target_speed': 7.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0190.json",
    "content": "{'x': -195.14646536577862, 'y': 118.26412200700071, 'theta': 4.714825630187988, 'speed': 3.2037807643166207, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0191.json",
    "content": "{'x': -195.14532086132132, 'y': 117.58937835463378, 'theta': 4.714024543762207, 'speed': -0.0016020646540395613, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0192.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58280181658645, 'theta': 4.714029788970947, 'speed': -0.00466008109692159, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0193.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58193969496102, 'theta': 4.714029788970947, 'speed': -7.432970319635489e-05, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0194.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58190154802892, 'theta': 4.714029788970947, 'speed': -1.293564331046177e-05, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0195.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -2.7415804075781088e-06, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0196.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -5.117901987527098e-07, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0197.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -7.199224789674852e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0198.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -4.418071362846362e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0199.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 8.042225715967714e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0200.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -3.852659089430355e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0201.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 8.04685744637643e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0202.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 1.0411180225845567e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0203.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -5.45369267496954e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0204.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -1.5388166995076026e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0205.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -8.439757065434607e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0206.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 3.712683465393837e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0207.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -8.035164058324844e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0208.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -2.6614794552914553e-10, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0209.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 4.2756549455365285e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0210.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 3.182271441484488e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0211.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 8.293930889077733e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0212.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -6.516292425979103e-10, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0213.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -6.2350436815889e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0214.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -1.5423963232131607e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0215.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 1.9284553908224575e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0216.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -5.712688384007086e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0217.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 3.29847715419411e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0218.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -6.280189341891427e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0219.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 8.04124325790718e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0220.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -9.468476629272409e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0221.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -3.6335222221644132e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0222.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -6.512448299840967e-10, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0223.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -7.116682723302457e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0224.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 1.0897726764800614e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0225.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -9.246379375211697e-10, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0226.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 1.6861217744685276e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0227.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 8.045271067775593e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0228.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 2.8469930704728095e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0229.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 1.0898685778103903e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0230.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 6.451980874235589e-10, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0231.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 1.711076262948709e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0232.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 6.292518638995331e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0233.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -7.771372353949728e-10, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0234.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 9.081714701965771e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0235.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -3.796307620606791e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0236.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 1.426071315480525e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0237.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 1.1711355345651116e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0238.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -7.817070192329329e-10, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0239.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -3.036086101950086e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0240.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 2.1915763703673176e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0241.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 6.4957480534492636e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0242.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 3.1839347151447624e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0243.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -4.417703937711075e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0244.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -1.3642658486397598e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0245.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -2.982513244818264e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0246.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 3.7127101901497346e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0247.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 1.0618134878993647e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0248.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -2.090449992030525e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0249.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -2.5860563099840023e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0250.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -7.397976670202226e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0251.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -1.053986205292341e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0252.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -8.402862315620272e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0253.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -1.8189275031379265e-09, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0254.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': 1.0637758903027402e-08, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0255.json",
    "content": "{'x': -195.14535138477297, 'y': 117.58189391866846, 'theta': 4.714029788970947, 'speed': -7.129831032316007e-09, 'target_speed': 7.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0256.json",
    "content": "{'x': -195.1451072224721, 'y': 117.52309417492397, 'theta': 4.713415145874023, 'speed': 0.40749528740278307, 'target_speed': 7.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0257.json",
    "content": "{'x': -195.1466332273605, 'y': 116.7906341530593, 'theta': 4.711550235748291, 'speed': 2.225436030987969, 'target_speed': 7.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': -0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0258.json",
    "content": "{'x': -195.1490900915289, 'y': 115.42030334249482, 'theta': 4.710093021392822, 'speed': 3.6240998977407206, 'target_speed': 7.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': 0.0, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0259.json",
    "content": "{'x': -195.1621679366847, 'y': 113.07211303498835, 'theta': 4.708279132843018, 'speed': 4.659029789062652, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': 0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0260.json",
    "content": "{'x': -195.16450271970268, 'y': 111.28052520543108, 'theta': 4.71024751663208, 'speed': 3.4288355978518283, 'target_speed': 7.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': 0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0261.json",
    "content": "{'x': -195.16775310502086, 'y': 109.50743865753086, 'theta': 4.7104597091674805, 'speed': 4.4184559479380265, 'target_speed': 0.0, 'x_command': -195.1532865962709, 'y_command': 101.4250946025066, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0262.json",
    "content": "{'x': -195.16889760631415, 'y': 107.17398071087224, 'theta': 4.712258338928223, 'speed': 3.6401330191183487, 'target_speed': 7.0, 'x_command': -208.33909516860058, 'y_command': 88.40167236153945, 'command': 4, 'steer': 0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0263.json",
    "content": "{'x': -195.15218787540903, 'y': 105.16449737346998, 'theta': 4.719994068145752, 'speed': 4.389602241590194, 'target_speed': 7.0, 'x_command': -208.33909516860058, 'y_command': 88.40167236153945, 'command': 1, 'steer': -0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0264.json",
    "content": "{'x': -195.14098701528508, 'y': 103.0106887797472, 'theta': 4.717453956604004, 'speed': 4.408049759741699, 'target_speed': 7.0, 'x_command': -208.33909516860058, 'y_command': 88.40167236153945, 'command': 1, 'steer': -0.023, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0265.json",
    "content": "{'x': -195.18783529923058, 'y': 100.94465637005915, 'theta': 4.690454006195068, 'speed': 3.8664463645129152, 'target_speed': 4, 'x_command': -208.33909516860058, 'y_command': 88.40167236153945, 'command': 1, 'steer': -0.096, 'throttle': 0.7018394156225548, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0266.json",
    "content": "{'x': -195.38583416218427, 'y': 98.87775420951492, 'theta': 4.6235809326171875, 'speed': 3.8577912448268887, 'target_speed': 4, 'x_command': -208.33909516860058, 'y_command': 88.40167236153945, 'command': 1, 'steer': -0.117, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0267.json",
    "content": "{'x': -195.76811313588018, 'y': 97.0783157330031, 'theta': 4.508255958557129, 'speed': 3.8412574598405493, 'target_speed': 4, 'x_command': -208.33909516860058, 'y_command': 88.40167236153945, 'command': 1, 'steer': -0.177, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0268.json",
    "content": "{'x': -196.48731835037208, 'y': 95.13351440247601, 'theta': 4.373465538024902, 'speed': 3.864425680425466, 'target_speed': 4, 'x_command': -208.33909516860058, 'y_command': 88.40167236153945, 'command': 1, 'steer': -0.261, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0269.json",
    "content": "{'x': -197.42092712986863, 'y': 93.5554733258342, 'theta': 4.194320201873779, 'speed': 3.7981362902696914, 'target_speed': 4, 'x_command': -208.33909516860058, 'y_command': 88.40167236153945, 'command': 1, 'steer': -0.21, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0270.json",
    "content": "{'x': -198.75125123855162, 'y': 91.98775481996748, 'theta': 4.012816429138184, 'speed': 3.9345371352018605, 'target_speed': 4, 'x_command': -208.33909516860058, 'y_command': 88.40167236153945, 'command': 1, 'steer': -0.245, 'throttle': 0.4214783810812617, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0271.json",
    "content": "{'x': -200.16271330719957, 'y': 90.85289001290562, 'theta': 3.841176986694336, 'speed': 3.7547398258863938, 'target_speed': 4, 'x_command': -208.33909516860058, 'y_command': 88.40167236153945, 'command': 1, 'steer': -0.201, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0272.json",
    "content": "{'x': -201.96904467376254, 'y': 89.8497314435082, 'theta': 3.650991439819336, 'speed': 3.9788402157829883, 'target_speed': 4, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 1, 'steer': -0.224, 'throttle': 0.17934543408997655, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0273.json",
    "content": "{'x': -203.70081601866175, 'y': 89.2627410870946, 'theta': 3.504835605621338, 'speed': 3.7673342894806296, 'target_speed': 4, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 1, 'steer': -0.232, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0274.json",
    "content": "{'x': -205.75784074289098, 'y': 88.86672973464471, 'theta': 3.351991891860962, 'speed': 4.009701751334351, 'target_speed': 4, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 4, 'steer': -0.168, 'throttle': 0.06436936043200782, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0275.json",
    "content": "{'x': -207.6060322785852, 'y': 88.70204925363956, 'theta': 3.244422197341919, 'speed': 3.782587232651621, 'target_speed': 7.0, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 4, 'steer': -0.097, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0276.json",
    "content": "{'x': -209.83166693604727, 'y': 88.62693023506326, 'theta': 3.1814780235290527, 'speed': 4.865772377361778, 'target_speed': 7.0, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 4, 'steer': -0.035, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0277.json",
    "content": "{'x': -212.5806009641037, 'y': 88.58725738351846, 'theta': 3.154179811477661, 'speed': 5.867210563007056, 'target_speed': 7.0, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 4, 'steer': -0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0278.json",
    "content": "{'x': -215.7495701529749, 'y': 88.53491210766454, 'theta': 3.159269332885742, 'speed': 6.626029587622481, 'target_speed': 7.0, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 4, 'steer': 0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0279.json",
    "content": "{'x': -219.25878019471938, 'y': 88.46015167058727, 'theta': 3.1633012294769287, 'speed': 7.084714482107964, 'target_speed': 7.0, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 4, 'steer': -0.003, 'throttle': 0.10193235436995458, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0280.json",
    "content": "{'x': -222.44052590814204, 'y': 88.40747070144548, 'theta': 3.155390739440918, 'speed': 6.0927295424998595, 'target_speed': 7.0, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 4, 'steer': -0.007, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0281.json",
    "content": "{'x': -225.59317240992962, 'y': 88.39736175367176, 'theta': 3.143284320831299, 'speed': 6.533118925675552, 'target_speed': 7.0, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 4, 'steer': -0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0282.json",
    "content": "{'x': -229.0895549197044, 'y': 88.40005492998387, 'theta': 3.1375811100006104, 'speed': 7.137540611121044, 'target_speed': 7.0, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 4, 'steer': -0.001, 'throttle': 0.07740916206230662, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0283.json",
    "content": "{'x': -232.3176818041656, 'y': 88.41518401926285, 'theta': 3.1382808685302734, 'speed': 6.1884839202489035, 'target_speed': 7.0, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 4, 'steer': 0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0284.json",
    "content": "{'x': -235.51660266547722, 'y': 88.41826629464562, 'theta': 3.1411044597625732, 'speed': 6.625002645853399, 'target_speed': 7.0, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 4, 'steer': 0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0285.json",
    "content": "{'x': -239.0247417412803, 'y': 88.41105651682491, 'theta': 3.145045518875122, 'speed': 6.930220631953284, 'target_speed': 7.0, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 4, 'steer': -0.001, 'throttle': 0.4586300208794853, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0286.json",
    "content": "{'x': -242.21686044490642, 'y': 88.40246581853143, 'theta': 3.1440584659576416, 'speed': 6.205438468529964, 'target_speed': 7.0, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 4, 'steer': -0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0287.json",
    "content": "{'x': -245.45054967551482, 'y': 88.40095519841167, 'theta': 3.1415927410125732, 'speed': 6.721867892200842, 'target_speed': 7.0, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 4, 'steer': -0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0288.json",
    "content": "{'x': -248.97772447555002, 'y': 88.40441894363434, 'theta': 3.1387245655059814, 'speed': 6.981703933677739, 'target_speed': 7.0, 'x_command': -259.3436051384126, 'y_command': 88.40942382641866, 'command': 4, 'steer': 0.001, 'throttle': 0.17027206524284513, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0289.json",
    "content": "{'x': -252.09429573160347, 'y': 88.41588592353996, 'theta': 3.139409065246582, 'speed': 6.011517797903232, 'target_speed': 7.0, 'x_command': -311.3486710150318, 'y_command': 88.41732787915599, 'command': 4, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0290.json",
    "content": "{'x': -255.22861634789462, 'y': 88.39690398996765, 'theta': 3.147041082382202, 'speed': 6.516106538459411, 'target_speed': 7.0, 'x_command': -311.3486710150318, 'y_command': 88.41732787915599, 'command': 4, 'steer': -0.007, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0291.json",
    "content": "{'x': -258.70023497283927, 'y': 88.41349792307382, 'theta': 3.1357333660125732, 'speed': 6.885837432266919, 'target_speed': 7.0, 'x_command': -311.3486710150318, 'y_command': 88.41732787915599, 'command': 4, 'steer': 0.006, 'throttle': 0.7032447397479785, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0292.json",
    "content": "{'x': -261.8945929910365, 'y': 88.42525482010447, 'theta': 3.1404476165771484, 'speed': 6.24307854139098, 'target_speed': 7.0, 'x_command': -311.3486710150318, 'y_command': 88.41732787915599, 'command': 4, 'steer': 0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0293.json",
    "content": "{'x': -265.1690079637723, 'y': 88.4199752790458, 'theta': 3.1425693035125732, 'speed': 6.897258177384286, 'target_speed': 7.0, 'x_command': -311.3486710150318, 'y_command': 88.41732787915599, 'command': 4, 'steer': 0.001, 'throttle': 0.5713031996033234, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0294.json",
    "content": "{'x': -268.60567162358336, 'y': 88.41716766180767, 'theta': 3.140902042388916, 'speed': 6.528358557873955, 'target_speed': 7.0, 'x_command': -311.3486710150318, 'y_command': 88.41732787915599, 'command': 4, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0295.json",
    "content": "{'x': -271.7152189420384, 'y': 88.4190673811278, 'theta': 3.139765739440918, 'speed': 6.299058169284604, 'target_speed': 7.0, 'x_command': -311.3486710150318, 'y_command': 88.41732787915599, 'command': 4, 'steer': 0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0296.json",
    "content": "{'x': -275.05608282987174, 'y': 88.41671752759376, 'theta': 3.1428377628326416, 'speed': 6.9869052499556785, 'target_speed': 7.0, 'x_command': -311.3486710150318, 'y_command': 88.41732787915599, 'command': 4, 'steer': 0.0, 'throttle': 0.11794181371149975, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0297.json",
    "content": "{'x': -278.48744205040725, 'y': 88.41040801833059, 'theta': 3.143483877182007, 'speed': 6.409280995709333, 'target_speed': 7.0, 'x_command': -311.3486710150318, 'y_command': 88.41732787915599, 'command': 4, 'steer': -0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0298.json",
    "content": "{'x': -281.5195948458865, 'y': 88.40767669508638, 'theta': 3.1435458660125732, 'speed': 6.081816330934808, 'target_speed': 7.0, 'x_command': -311.3486710150318, 'y_command': 88.41732787915599, 'command': 4, 'steer': -0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0299.json",
    "content": "{'x': -284.77503762506143, 'y': 88.41184997381689, 'theta': 3.1404476165771484, 'speed': 6.825231607048947, 'target_speed': 7.0, 'x_command': -311.3486710150318, 'y_command': 88.41732787915599, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0300.json",
    "content": "{'x': -288.25468640155685, 'y': 88.41954040355284, 'theta': 3.140500783920288, 'speed': 6.665066760250296, 'target_speed': 7.0, 'x_command': -311.3486710150318, 'y_command': 88.41732787915599, 'command': 4, 'steer': 0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0301.json",
    "content": "{'x': -291.38264865096284, 'y': 88.41934203927242, 'theta': 3.140679121017456, 'speed': 6.286094620322483, 'target_speed': 7.0, 'x_command': -311.3486710150318, 'y_command': 88.41732787915599, 'command': 4, 'steer': 0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0302.json",
    "content": "{'x': -294.7060666000826, 'y': 88.4251174909673, 'theta': 3.140211582183838, 'speed': 6.944798244773964, 'target_speed': 7.0, 'x_command': -311.3486710150318, 'y_command': 88.41732787915599, 'command': 4, 'steer': 0.003, 'throttle': 0.3296357961769426, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0303.json",
    "content": "{'x': -298.1683248496202, 'y': 88.42919921698294, 'theta': 3.1420810222625732, 'speed': 6.525413482708166, 'target_speed': 7.0, 'x_command': -311.3486710150318, 'y_command': 88.41732787915599, 'command': 4, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0304.json",
    "content": "{'x': -301.2314363351573, 'y': 88.42145538159393, 'theta': 3.1433191299438477, 'speed': 6.124902094375567, 'target_speed': 7.0, 'x_command': -311.3486710150318, 'y_command': 88.41732787915599, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0305.json",
    "content": "{'x': -304.50047237772685, 'y': 88.40161132639619, 'theta': 3.1471922397613525, 'speed': 6.843876122216528, 'target_speed': 7.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': -0.007, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0306.json",
    "content": "{'x': -307.96453746246254, 'y': 88.40304565252202, 'theta': 3.1385045051574707, 'speed': 6.01908086669071, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': -0.0005, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0307.json",
    "content": "{'x': -309.31086567148236, 'y': 88.41082763497286, 'theta': 3.1349244117736816, 'speed': 0.3530747261429328, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.0015, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0308.json",
    "content": "{'x': -309.32148686762423, 'y': 88.41088867011611, 'theta': 3.134960174560547, 'speed': -0.01158528477928014, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.002, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0309.json",
    "content": "{'x': -309.32356227565805, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': -0.0002469893227589021, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.0025, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0310.json",
    "content": "{'x': -309.3237453973837, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': -5.900663795000374e-05, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0311.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': -1.293438363875864e-05, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0312.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': -2.3941392536350224e-06, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0313.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': -4.098584174341352e-07, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0314.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': -3.604700471573901e-08, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0315.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': -1.7152149663036326e-08, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0316.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': 3.344666302000595e-08, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0317.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': -2.969684741225508e-08, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0318.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': 1.472424878398855e-08, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0319.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': 5.44238901932105e-09, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0320.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': 4.455773990381804e-09, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0321.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': -2.2582483502714086e-08, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0322.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': 4.044252136261361e-09, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0323.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': -3.812622516101703e-12, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0324.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': 4.1074927881278154e-08, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0325.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': 7.308191145251225e-09, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0326.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': 6.023315930169126e-09, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0327.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': 2.344638812216429e-08, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0328.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': 1.6498587599490578e-08, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0329.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': -1.3121851792702642e-09, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0330.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': 6.9531954753447475e-09, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0331.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': -3.16155818730505e-08, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0332.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': -1.1714340682287955e-08, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0333.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': 1.4212561344493194e-08, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0334.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': 3.08357468044297e-09, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0335.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': 7.842453860846978e-09, 'target_speed': 0.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0336.json",
    "content": "{'x': -309.3237759208354, 'y': 88.41091918768774, 'theta': 3.13495135307312, 'speed': -5.625877027269227e-09, 'target_speed': 7.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.006, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0337.json",
    "content": "{'x': -309.41594838225933, 'y': 88.41158294503273, 'theta': 3.1350326538085938, 'speed': 0.5481662605364536, 'target_speed': 7.0, 'x_command': -317.32661002020734, 'y_command': 88.41823577707399, 'command': 4, 'steer': 0.007, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0338.json",
    "content": "{'x': -310.26506439064104, 'y': 88.41471862619828, 'theta': 3.1374928951263428, 'speed': 2.4032783727236007, 'target_speed': 7.0, 'x_command': -326.60177520785675, 'y_command': 79.41427612154756, 'command': 4, 'steer': 0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0339.json",
    "content": "{'x': -311.89041336258884, 'y': 88.4140472394928, 'theta': 3.1396396160125732, 'speed': 3.7539467988251514, 'target_speed': 7.0, 'x_command': -326.60177520785675, 'y_command': 79.41427612154756, 'command': 4, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0340.json",
    "content": "{'x': -314.1352721436201, 'y': 88.41752624343641, 'theta': 3.1401278972625732, 'speed': 4.926135801516815, 'target_speed': 7.0, 'x_command': -326.60177520785675, 'y_command': 79.41427612154756, 'command': 2, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0341.json",
    "content": "{'x': -316.9011511011696, 'y': 88.41378021070865, 'theta': 3.146655559539795, 'speed': 5.851584587226611, 'target_speed': 7.0, 'x_command': -326.60177520785675, 'y_command': 79.41427612154756, 'command': 2, 'steer': 0.025, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0342.json",
    "content": "{'x': -319.95844346957665, 'y': 88.19067382643846, 'theta': 3.2352116107940674, 'speed': 5.960535503107814, 'target_speed': 4, 'x_command': -326.60177520785675, 'y_command': 79.41427612154756, 'command': 2, 'steer': 0.238, 'throttle': 0.1, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0343.json",
    "content": "{'x': -322.42973899429114, 'y': 87.43547820878351, 'theta': 3.4813811779022217, 'speed': 4.557775101577432, 'target_speed': 4, 'x_command': -326.60177520785675, 'y_command': 79.41427612154756, 'command': 2, 'steer': 0.315, 'throttle': 0.06875, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0344.json",
    "content": "{'x': -323.9888004359423, 'y': 86.37951659982807, 'theta': 3.7215681076049805, 'speed': 3.5124053498042977, 'target_speed': 4, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 2, 'steer': 0.427, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0345.json",
    "content": "{'x': -325.25077312338453, 'y': 84.80040740804965, 'theta': 4.032850742340088, 'speed': 4.211033305935625, 'target_speed': 4, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 2, 'steer': 0.413, 'throttle': 0.04212719618523689, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0346.json",
    "content": "{'x': -325.93242406369075, 'y': 83.00272369223057, 'theta': 4.2971906661987305, 'speed': 3.520953358376825, 'target_speed': 4, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 4, 'steer': 0.383, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0347.json",
    "content": "{'x': -326.22740735469154, 'y': 81.01593780355677, 'theta': 4.544910430908203, 'speed': 4.241591454338832, 'target_speed': 4, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 4, 'steer': 0.221, 'throttle': 0.06498298179591662, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0348.json",
    "content": "{'x': -326.28240579256686, 'y': 79.00693511806976, 'theta': 4.666563034057617, 'speed': 4.109921945060116, 'target_speed': 7.0, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 4, 'steer': 0.083, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0349.json",
    "content": "{'x': -326.2797504864123, 'y': 76.63233184667871, 'theta': 4.707385063171387, 'speed': 5.140236906075551, 'target_speed': 7.0, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 4, 'steer': -0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0350.json",
    "content": "{'x': -326.3151240661148, 'y': 73.79427337501701, 'theta': 4.694456100463867, 'speed': 5.940510225861286, 'target_speed': 7.0, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 4, 'steer': -0.029, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0351.json",
    "content": "{'x': -326.43189655962016, 'y': 70.5954055772342, 'theta': 4.6717047691345215, 'speed': 6.83129621986235, 'target_speed': 7.0, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 4, 'steer': -0.011, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0352.json",
    "content": "{'x': -326.5796781652551, 'y': 67.0859222399306, 'theta': 4.674463272094727, 'speed': 6.744015808654159, 'target_speed': 7.0, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 4, 'steer': 0.016, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0353.json",
    "content": "{'x': -326.6460913805387, 'y': 63.9184265123944, 'theta': 4.700639247894287, 'speed': 6.260403442782734, 'target_speed': 7.0, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 4, 'steer': 0.016, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0354.json",
    "content": "{'x': -326.6326011919325, 'y': 60.60910034056935, 'theta': 4.7184858322143555, 'speed': 6.904676643021452, 'target_speed': 7.0, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 4, 'steer': 0.009, 'throttle': 0.5323303108302282, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0355.json",
    "content": "{'x': -326.58862075190643, 'y': 57.14358138921217, 'theta': 4.7252116203308105, 'speed': 6.567022901180313, 'target_speed': 7.0, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 4, 'steer': -0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0356.json",
    "content": "{'x': -326.56255600863466, 'y': 54.10357284431735, 'theta': 4.720020294189453, 'speed': 6.046954536289805, 'target_speed': 7.0, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 4, 'steer': -0.007, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0357.json",
    "content": "{'x': -326.5575200789141, 'y': 50.88453674215451, 'theta': 4.708796977996826, 'speed': 6.830022532182012, 'target_speed': 7.0, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 4, 'steer': -0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0358.json",
    "content": "{'x': -326.5786099362045, 'y': 47.37665557768553, 'theta': 4.708888053894043, 'speed': 6.858311224593104, 'target_speed': 7.0, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 4, 'steer': -0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0359.json",
    "content": "{'x': -326.5926800166033, 'y': 44.2893486013983, 'theta': 4.707000255584717, 'speed': 6.039139465473285, 'target_speed': 7.0, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 4, 'steer': 0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0360.json",
    "content": "{'x': -326.59896729710016, 'y': 41.12586975011912, 'theta': 4.712164878845215, 'speed': 6.597586836416789, 'target_speed': 7.0, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 4, 'steer': 0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0361.json",
    "content": "{'x': -326.58736940113016, 'y': 37.61465454020418, 'theta': 4.715865135192871, 'speed': 7.081589206639722, 'target_speed': 7.0, 'x_command': -326.5739097391397, 'y_command': 27.41428565921392, 'command': 4, 'steer': 0.001, 'throttle': 0.07445863546599671, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0362.json",
    "content": "{'x': -326.5713765141356, 'y': 34.43264388969632, 'theta': 4.718597412109375, 'speed': 6.128141792382362, 'target_speed': 7.0, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': -0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0363.json",
    "content": "{'x': -326.5575811194893, 'y': 31.24951171813936, 'theta': 4.7159929275512695, 'speed': 6.606425064882872, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': -0.006, 'throttle': 0.09333975565687819, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0364.json",
    "content": "{'x': -326.5698809947304, 'y': 28.01350021303044, 'theta': 4.711434364318848, 'speed': 6.023123951552669, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': -0.001, 'throttle': 0.06208975565687819, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0365.json",
    "content": "{'x': -326.571345993848, 'y': 25.546840667178834, 'theta': 4.7106709480285645, 'speed': 4.27143537284654, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.001, 'throttle': 0.055188724833271495, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0366.json",
    "content": "{'x': -326.56801922554587, 'y': 23.752031325793936, 'theta': 4.713845729827881, 'speed': 3.5053773498357326, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': -0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0367.json",
    "content": "{'x': -326.575313694518, 'y': 21.71666145271492, 'theta': 4.7095947265625, 'speed': 4.264863235177938, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.004, 'throttle': 0.035080057358373495, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0368.json",
    "content": "{'x': -326.5802885836634, 'y': 19.881471633455337, 'theta': 4.709610939025879, 'speed': 3.4476698535836214, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.006, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0369.json",
    "content": "{'x': -326.58337117700853, 'y': 17.88340949966613, 'theta': 4.710935592651367, 'speed': 4.320406764329666, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.006, 'throttle': 0.06969610383649788, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0370.json",
    "content": "{'x': -326.57394025942733, 'y': 15.955039977589209, 'theta': 4.715524673461914, 'speed': 3.6748905836495167, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0371.json",
    "content": "{'x': -326.5672867291511, 'y': 13.91673278775481, 'theta': 4.714932441711426, 'speed': 4.230564613767852, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': -0.0, 'throttle': 0.06239564525685883, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0372.json",
    "content": "{'x': -326.5526672772472, 'y': 12.069619178409615, 'theta': 4.722705841064453, 'speed': 3.5499217598796315, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.035, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0373.json",
    "content": "{'x': -326.4423651859643, 'y': 10.076182365131968, 'theta': 4.7725629806518555, 'speed': 4.038606924950752, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.164, 'throttle': 0.056585111234845886, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0374.json",
    "content": "{'x': -326.10733862266375, 'y': 8.287569045738062, 'theta': 4.894003868103027, 'speed': 3.703246313057068, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.232, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0375.json",
    "content": "{'x': -325.3238703702478, 'y': 6.378126621034772, 'theta': 5.105339527130127, 'speed': 4.100308892503605, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.344, 'throttle': 0.06142834866791132, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0376.json",
    "content": "{'x': -324.233058116677, 'y': 4.9433217046734335, 'theta': 5.33651065826416, 'speed': 3.594026022999992, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.362, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0377.json",
    "content": "{'x': -322.61582404497415, 'y': 3.6864576338692427, 'theta': 5.613320827484131, 'speed': 4.185664874714451, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.428, 'throttle': 0.06968433193491286, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0378.json",
    "content": "{'x': -320.865519987898, 'y': 2.953689813513225, 'theta': 5.859913349151611, 'speed': 3.6623596330039403, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.3, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0379.json",
    "content": "{'x': -318.8374167419308, 'y': 2.5427947043273558, 'theta': 6.052023410797119, 'speed': 4.214645083751405, 'target_speed': 4, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.205, 'throttle': 0.06750577116135274, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0380.json",
    "content": "{'x': -317.1665288114384, 'y': 2.4081299304284283, 'theta': 6.176641464233398, 'speed': 3.5900794262641393, 'target_speed': 7.0, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.105, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0381.json",
    "content": "{'x': -315.1180390796277, 'y': 2.330484628594977, 'theta': 6.237307548522949, 'speed': 4.613532521488807, 'target_speed': 7.0, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.032, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0382.json",
    "content": "{'x': -312.78912588879683, 'y': 2.2657132147585037, 'theta': 6.250121116638184, 'speed': 3.81409585891442, 'target_speed': 0.0, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': -0.001, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0383.json",
    "content": "{'x': -311.83620860406506, 'y': 2.232930421675438, 'theta': 6.249757289886475, 'speed': 0.001543487808465619, 'target_speed': 0.0, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': -0.008, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0384.json",
    "content": "{'x': -311.8290972821309, 'y': 2.2327077387679615, 'theta': 6.249765872955322, 'speed': -0.0066611673616035596, 'target_speed': 7.0, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': -0.025, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0385.json",
    "content": "{'x': -311.79283869318857, 'y': 2.2316856382400956, 'theta': 6.247909069061279, 'speed': 0.290494362327067, 'target_speed': 7.0, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': -0.024, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0386.json",
    "content": "{'x': -311.2333943510071, 'y': 2.206021547154648, 'theta': 6.242498397827148, 'speed': 2.1308500760908555, 'target_speed': 7.0, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': -0.009, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0387.json",
    "content": "{'x': -309.80014276503573, 'y': 2.1457450388450825, 'theta': 6.242811679840088, 'speed': 3.515688281895054, 'target_speed': 7.0, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0388.json",
    "content": "{'x': -307.7264456771621, 'y': 2.0674595832154594, 'theta': 6.245835304260254, 'speed': 4.72007358637452, 'target_speed': 7.0, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.018, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0389.json",
    "content": "{'x': -305.09495376012586, 'y': 2.0136184690709404, 'theta': 6.26406717300415, 'speed': 5.745499947165607, 'target_speed': 7.0, 'x_command': -296.62184516081567, 'y_command': 2.012741804062243, 'command': 4, 'steer': 0.019, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0390.json",
    "content": "{'x': -302.02231770155316, 'y': 2.0022978782086005, 'theta': 6.2826972007751465, 'speed': 6.508467765371638, 'target_speed': 7.0, 'x_command': -245.61699230446325, 'y_command': 2.019400596472447, 'command': 4, 'steer': 0.009, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0391.json",
    "content": "{'x': -298.56845021503426, 'y': 2.022086620186143, 'theta': 0.007016668561846018, 'speed': 7.163135394663799, 'target_speed': 7.0, 'x_command': -245.61699230446325, 'y_command': 2.019400596472447, 'command': 4, 'steer': -0.002, 'throttle': 0.1064753765198951, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0392.json",
    "content": "{'x': -295.28293653939267, 'y': 2.032759904783625, 'theta': 6.282840251922607, 'speed': 6.087711636993022, 'target_speed': 7.0, 'x_command': -245.61699230446325, 'y_command': 2.019400596472447, 'command': 4, 'steer': -0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0393.json",
    "content": "{'x': -292.20121078549636, 'y': 2.022621631538017, 'theta': 6.279340744018555, 'speed': 6.383237470391906, 'target_speed': 7.0, 'x_command': -245.61699230446325, 'y_command': 2.019400596472447, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0394.json",
    "content": "{'x': -288.7903223786818, 'y': 2.0140237806461103, 'theta': 6.281848430633545, 'speed': 7.2064723912897195, 'target_speed': 7.0, 'x_command': -245.61699230446325, 'y_command': 2.019400596472447, 'command': 4, 'steer': -0.0, 'throttle': 0.08382031414126433, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0395.json",
    "content": "{'x': -285.4127645147844, 'y': 2.0107576846256494, 'theta': 6.280338287353516, 'speed': 6.131855502070735, 'target_speed': 7.0, 'x_command': -245.61699230446325, 'y_command': 2.019400596472447, 'command': 4, 'steer': 0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0396.json",
    "content": "{'x': -282.3828070696013, 'y': 2.002319812636178, 'theta': 6.2802557945251465, 'speed': 6.189048291855854, 'target_speed': 7.0, 'x_command': -245.61699230446325, 'y_command': 2.019400596472447, 'command': 4, 'steer': 0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0397.json",
    "content": "{'x': -279.0827446962204, 'y': 1.9996136425796434, 'theta': 6.282840251922607, 'speed': 7.006496474489678, 'target_speed': 7.0, 'x_command': -245.61699230446325, 'y_command': 2.019400596472447, 'command': 4, 'steer': 0.005, 'throttle': 0.05177748696257975, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0398.json",
    "content": "{'x': -275.61958274748457, 'y': 2.0207147597491937, 'theta': 0.0071429540403187275, 'speed': 6.382007105420009, 'target_speed': 7.0, 'x_command': -245.61699230446325, 'y_command': 2.019400596472447, 'command': 4, 'steer': -0.006, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0399.json",
    "content": "{'x': -272.5621927432663, 'y': 2.038280010116089, 'theta': 0.0038447328843176365, 'speed': 6.1440356726637235, 'target_speed': 7.0, 'x_command': -245.61699230446325, 'y_command': 2.019400596472447, 'command': 4, 'steer': -0.007, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0400.json",
    "content": "{'x': -269.3085273199696, 'y': 2.0282039641134673, 'theta': 6.281294345855713, 'speed': 6.899117690561478, 'target_speed': 7.0, 'x_command': -245.61699230446325, 'y_command': 2.019400596472447, 'command': 4, 'steer': -0.002, 'throttle': 0.5569065286933557, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0401.json",
    "content": "{'x': -265.8125620009477, 'y': 2.028155088283743, 'theta': 6.2831854820251465, 'speed': 6.583343522416454, 'target_speed': 7.0, 'x_command': -245.61699230446325, 'y_command': 2.019400596472447, 'command': 4, 'steer': -0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0402.json",
    "content": "{'x': -262.4448457084868, 'y': 2.0098724363431737, 'theta': 6.277904033660889, 'speed': 6.053848224106342, 'target_speed': 7.0, 'x_command': -245.61699230446325, 'y_command': 2.019400596472447, 'command': 4, 'steer': 0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0403.json",
    "content": "{'x': -259.2233547306234, 'y': 2.0107989309651693, 'theta': 0.0021001773420721292, 'speed': 6.744952394178793, 'target_speed': 7.0, 'x_command': -245.61699230446325, 'y_command': 2.019400596472447, 'command': 4, 'steer': -0.0, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0404.json",
    "content": "{'x': -256.0521937509961, 'y': 2.0232641695336615, 'theta': 0.003469892079010606, 'speed': 6.857425815000065, 'target_speed': 7.0, 'x_command': -245.61699230446325, 'y_command': 2.019400596472447, 'command': 4, 'steer': -0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0405.json",
    "content": "{'x': -252.6237631048797, 'y': 2.03642201415699, 'theta': 0.0027404725551605225, 'speed': 6.0335066089835845, 'target_speed': 7.0, 'x_command': -194.6113267529052, 'y_command': 1.9957600830783748, 'command': 4, 'steer': -0.006, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0406.json",
    "content": "{'x': -249.7861170705346, 'y': 2.028770446690809, 'theta': 6.279159069061279, 'speed': 6.614501381048338, 'target_speed': 7.0, 'x_command': -194.6113267529052, 'y_command': 1.9957600830783748, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0407.json",
    "content": "{'x': -246.30949869028862, 'y': 2.015951156446613, 'theta': 6.280276298522949, 'speed': 6.9128699867019945, 'target_speed': 7.0, 'x_command': -194.6113267529052, 'y_command': 1.9957600830783748, 'command': 4, 'steer': 0.002, 'throttle': 0.5529205084885838, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0408.json",
    "content": "{'x': -243.14872200596403, 'y': 2.004991292836876, 'theta': 6.278886795043945, 'speed': 6.091217686495843, 'target_speed': 7.0, 'x_command': -194.6113267529052, 'y_command': 1.9957600830783748, 'command': 4, 'steer': 0.006, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0409.json",
    "content": "{'x': -239.98353693092395, 'y': 1.9856165646717663, 'theta': 6.279750347137451, 'speed': 6.658995625707838, 'target_speed': 7.0, 'x_command': -194.6113267529052, 'y_command': 1.9957600830783748, 'command': 4, 'steer': 0.01, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0410.json",
    "content": "{'x': -236.51121279880843, 'y': 2.0090069769941588, 'theta': 0.011070158332586288, 'speed': 6.7900634639541035, 'target_speed': 7.0, 'x_command': -194.6113267529052, 'y_command': 1.9957600830783748, 'command': 4, 'steer': -0.006, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0411.json",
    "content": "{'x': -233.07026567073626, 'y': 2.021041631576857, 'theta': 0.0031832056120038033, 'speed': 6.126668983851245, 'target_speed': 7.0, 'x_command': -194.6113267529052, 'y_command': 1.9957600830783748, 'command': 4, 'steer': -0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0412.json",
    "content": "{'x': -230.17247423329314, 'y': 2.020342588261283, 'theta': 6.280672073364258, 'speed': 6.763320621303995, 'target_speed': 7.0, 'x_command': -194.6113267529052, 'y_command': 1.9957600830783748, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0413.json",
    "content": "{'x': -226.32257525111467, 'y': 2.0095093248910976, 'theta': 6.28180456161499, 'speed': 6.84236761963846, 'target_speed': 7.0, 'x_command': -194.6113267529052, 'y_command': 1.9957600830783748, 'command': 4, 'steer': 0.0, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0414.json",
    "content": "{'x': -223.22326239505546, 'y': 2.006649970861705, 'theta': 6.281641483306885, 'speed': 6.072110614792459, 'target_speed': 7.0, 'x_command': -194.6113267529052, 'y_command': 1.9957600830783748, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0415.json",
    "content": "{'x': -220.02579833484512, 'y': 1.9994729755891507, 'theta': 6.281566143035889, 'speed': 6.671111541256079, 'target_speed': 7.0, 'x_command': -194.6113267529052, 'y_command': 1.9957600830783748, 'command': 4, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0416.json",
    "content": "{'x': -216.85691826420123, 'y': 2.0013971327592843, 'theta': 0.0011451210593804717, 'speed': 6.972925948226299, 'target_speed': 7.0, 'x_command': -194.6113267529052, 'y_command': 1.9957600830783748, 'command': 4, 'steer': 0.001, 'throttle': 0.22256553263031803, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0417.json",
    "content": "{'x': -213.38248746021588, 'y': 2.0114815233303287, 'theta': 0.0027186358347535133, 'speed': 6.074674823971967, 'target_speed': 7.0, 'x_command': -194.6113267529052, 'y_command': 1.9957600830783748, 'command': 4, 'steer': -0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0418.json",
    "content": "{'x': -210.54759306108983, 'y': 2.016614675345723, 'theta': 0.002264067530632019, 'speed': 6.589882051524038, 'target_speed': 7.0, 'x_command': -194.6113267529052, 'y_command': 1.9957600830783748, 'command': 4, 'steer': -0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0419.json",
    "content": "{'x': -207.05712788643888, 'y': 2.0077509878991338, 'theta': 6.280215263366699, 'speed': 7.082138392056861, 'target_speed': 7.0, 'x_command': -194.6113267529052, 'y_command': 1.9957600830783748, 'command': 4, 'steer': 0.0, 'throttle': 0.07634790625838742, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0420.json",
    "content": "{'x': -203.84342119873827, 'y': 1.9968754051829074, 'theta': 6.28135871887207, 'speed': 6.057645035892544, 'target_speed': 7.0, 'x_command': -194.6113267529052, 'y_command': 1.9957600830783748, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0421.json",
    "content": "{'x': -200.7332404941403, 'y': 1.9897594450536025, 'theta': 6.280921459197998, 'speed': 6.4971670192374305, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0422.json",
    "content": "{'x': -197.27133302224786, 'y': 1.974990963804273, 'theta': 6.27920389175415, 'speed': 7.160177937481949, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': 0.008, 'throttle': 0.07952526189976802, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0423.json",
    "content": "{'x': -193.99675976230202, 'y': 1.9825918673559912, 'theta': 0.0029499635566025972, 'speed': 6.108324588680796, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0424.json",
    "content": "{'x': -190.89023173116738, 'y': 1.9877959488516341, 'theta': 6.281989574432373, 'speed': 6.451531131102469, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0425.json",
    "content": "{'x': -187.44972492927658, 'y': 1.999109268022341, 'theta': 0.004041249398142099, 'speed': 7.186539113230087, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': -0.004, 'throttle': 0.0818679847410144, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0426.json",
    "content": "{'x': -184.14350823766782, 'y': 1.9942649601254587, 'theta': 6.2822089195251465, 'speed': 6.117906508682834, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': -0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0427.json",
    "content": "{'x': -181.05102491453033, 'y': 1.9842312334688776, 'theta': 6.278971195220947, 'speed': 6.399835246323939, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0428.json",
    "content": "{'x': -177.63535220742014, 'y': 1.9957101343718608, 'theta': 0.0006905339541845024, 'speed': 7.183558858113455, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': -0.003, 'throttle': 0.0835203218709852, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0429.json",
    "content": "{'x': -174.00228807951478, 'y': 1.9841185807573218, 'theta': 6.277596950531006, 'speed': 6.0835572827607844, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': 0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0430.json",
    "content": "{'x': -170.9523856991513, 'y': 1.9841082095285356, 'theta': 0.000845727976411581, 'speed': 6.243207219212012, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': -0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0431.json",
    "content": "{'x': -167.57587624478532, 'y': 1.9835253952237266, 'theta': 0.0009134905994869769, 'speed': 7.076484621906148, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': -0.002, 'throttle': 0.08708004810341385, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0432.json",
    "content": "{'x': -164.19454670804484, 'y': 1.9815652368750736, 'theta': 6.2817206382751465, 'speed': 6.144201747183824, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0433.json",
    "content": "{'x': -161.4762938746301, 'y': 1.9888796805077522, 'theta': 0.0042985426262021065, 'speed': 6.116898646797556, 'target_speed': 0.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0434.json",
    "content": "{'x': -158.74662795023804, 'y': 1.9993782042439077, 'theta': 6.2831854820251465, 'speed': 2.798396298992737, 'target_speed': 0.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0435.json",
    "content": "{'x': -158.56918551980925, 'y': 1.9988185165961434, 'theta': 6.282840251922607, 'speed': -0.017809530026105535, 'target_speed': 0.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0436.json",
    "content": "{'x': -158.56398188354456, 'y': 1.9988055228517225, 'theta': 6.282840251922607, 'speed': -0.0028606539799167835, 'target_speed': 0.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': -0.003, 'throttle': 0.0, 'brake': True}"
  },
  {
    "path": "sample_data/route_00/measurements/0437.json",
    "content": "{'x': -158.56367668383248, 'y': 1.998804449974933, 'theta': 6.28258752822876, 'speed': -6.541049815226554e-05, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': -0.006, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0438.json",
    "content": "{'x': -158.4747418345149, 'y': 1.9989167450176486, 'theta': 6.281893730163574, 'speed': 0.5064357891142957, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': -0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0439.json",
    "content": "{'x': -157.6333858544708, 'y': 1.9925483463648017, 'theta': 6.278514862060547, 'speed': 2.4007522899656326, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': -0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0440.json",
    "content": "{'x': -156.00823469486605, 'y': 1.982495784688065, 'theta': 6.277377128601074, 'speed': 3.878279765442547, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': 0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0441.json",
    "content": "{'x': -154.01327523461342, 'y': 1.9734095334272146, 'theta': 6.277585983276367, 'speed': 4.927203719876159, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': 0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0442.json",
    "content": "{'x': -150.99939723178338, 'y': 1.9667791127053251, 'theta': 6.280695915222168, 'speed': 5.8467282754636996, 'target_speed': 7.0, 'x_command': -142.6073709528717, 'y_command': 1.9686006305941177, 'command': 4, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0443.json",
    "content": "{'x': -147.84320706072367, 'y': 1.980773568097567, 'theta': 0.0035881216172128916, 'speed': 6.626217831878416, 'target_speed': 7.0, 'x_command': -91.60394999982427, 'y_command': 1.9419636724793692, 'command': 4, 'steer': -0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0444.json",
    "content": "{'x': -144.6817540226524, 'y': 1.9867620466790834, 'theta': 0.0012448779307305813, 'speed': 7.064890811586489, 'target_speed': 7.0, 'x_command': -91.60394999982427, 'y_command': 1.9419636724793692, 'command': 4, 'steer': -0.005, 'throttle': 0.09985961630061665, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0445.json",
    "content": "{'x': -141.14492501904215, 'y': 1.9720492361890563, 'theta': 6.27831506729126, 'speed': 6.158349828007084, 'target_speed': 7.0, 'x_command': -91.60394999982427, 'y_command': 1.9419636724793692, 'command': 4, 'steer': 0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0446.json",
    "content": "{'x': -138.27893741404782, 'y': 1.9647785424480482, 'theta': 6.280445098876953, 'speed': 6.648708415299603, 'target_speed': 7.0, 'x_command': -91.60394999982427, 'y_command': 1.9419636724793692, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0447.json",
    "content": "{'x': -134.7791329174829, 'y': 1.9600929020011868, 'theta': 6.281494140625, 'speed': 7.004950160450957, 'target_speed': 7.0, 'x_command': -91.60394999982427, 'y_command': 1.9419636724793692, 'command': 4, 'steer': 0.001, 'throttle': 0.07447183604901686, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0448.json",
    "content": "{'x': -131.61167494796163, 'y': 1.9491007327350867, 'theta': 6.28180456161499, 'speed': 5.994576035410092, 'target_speed': 7.0, 'x_command': -91.60394999982427, 'y_command': 1.9419636724793692, 'command': 4, 'steer': 0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0449.json",
    "content": "{'x': -128.52276120438395, 'y': 1.9497720002176173, 'theta': 6.280510902404785, 'speed': 6.467924208594146, 'target_speed': 7.0, 'x_command': -91.60394999982427, 'y_command': 1.9419636724793692, 'command': 4, 'steer': 0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0450.json",
    "content": "{'x': -124.71476000222813, 'y': 1.9494270084480163, 'theta': 0.00048828125, 'speed': 7.1671050600896695, 'target_speed': 7.0, 'x_command': -91.60394999982427, 'y_command': 1.9419636724793692, 'command': 4, 'steer': 0.002, 'throttle': 0.08049525211670379, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0451.json",
    "content": "{'x': -121.49891124975527, 'y': 1.9561527966298826, 'theta': 0.0015440810238942504, 'speed': 6.031691016460928, 'target_speed': 7.0, 'x_command': -91.60394999982427, 'y_command': 1.9419636724793692, 'command': 4, 'steer': -0.0, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0452.json",
    "content": "{'x': -118.4332896176899, 'y': 1.9552521704035133, 'theta': 6.282495021820068, 'speed': 6.306721833708328, 'target_speed': 7.0, 'x_command': -91.60394999982427, 'y_command': 1.9419636724793692, 'command': 4, 'steer': 0.0, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0453.json",
    "content": "{'x': -115.02245468940544, 'y': 1.960314750607499, 'theta': 0.0021836606319993734, 'speed': 7.119129070675858, 'target_speed': 7.0, 'x_command': -91.60394999982427, 'y_command': 1.9419636724793692, 'command': 4, 'steer': -0.003, 'throttle': 0.08489955638098402, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0454.json",
    "content": "{'x': -111.70308145674684, 'y': 1.9704083203075933, 'theta': 0.003921481780707836, 'speed': 6.196536055482532, 'target_speed': 7.0, 'x_command': -91.60394999982427, 'y_command': 1.9419636724793692, 'command': 4, 'steer': -0.008, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0455.json",
    "content": "{'x': -108.59898005425619, 'y': 1.9735459087808178, 'theta': 0.0, 'speed': 6.349978134088587, 'target_speed': 7.0, 'x_command': -91.60394999982427, 'y_command': 1.9419636724793692, 'command': 4, 'steer': -0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0456.json",
    "content": "{'x': -105.17634773755582, 'y': 1.9516910313199656, 'theta': 6.278040885925293, 'speed': 7.185473595178107, 'target_speed': 7.0, 'x_command': -91.60394999982427, 'y_command': 1.9419636724793692, 'command': 4, 'steer': 0.001, 'throttle': 0.08563349997398492, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0457.json",
    "content": "{'x': -101.86113868901533, 'y': 1.942475199635089, 'theta': 6.281172275543213, 'speed': 6.097931954158989, 'target_speed': 7.0, 'x_command': -91.60394999982427, 'y_command': 1.9419636724793692, 'command': 4, 'steer': 0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0458.json",
    "content": "{'x': -98.88594963416959, 'y': 1.9342013596093173, 'theta': 6.280359268188477, 'speed': 6.088933953224664, 'target_speed': 7.0, 'x_command': -49.60330090480868, 'y_command': 1.9547302721487383, 'command': 4, 'steer': 0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0459.json",
    "content": "{'x': -95.63176809971029, 'y': 1.9207265376250557, 'theta': 6.279371738433838, 'speed': 6.9283395060041055, 'target_speed': 7.0, 'x_command': -49.60330090480868, 'y_command': 1.9547302721487383, 'command': 4, 'steer': 0.009, 'throttle': 0.36616304389376575, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0460.json",
    "content": "{'x': -92.17152088906577, 'y': 1.9217460153778245, 'theta': 0.0003452669770922512, 'speed': 6.596248036437406, 'target_speed': 7.0, 'x_command': -49.60330090480868, 'y_command': 1.9547302721487383, 'command': 4, 'steer': 0.005, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0461.json",
    "content": "{'x': -89.11083673775262, 'y': 1.9375100134217127, 'theta': 0.0058593833819031715, 'speed': 6.12891563241729, 'target_speed': 7.0, 'x_command': -49.60330090480868, 'y_command': 1.9547302721487383, 'command': 4, 'steer': -0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0462.json",
    "content": "{'x': -85.8698300830936, 'y': 1.9536088703225778, 'theta': 0.0023670317605137825, 'speed': 6.783157989639636, 'target_speed': 7.0, 'x_command': -49.60330090480868, 'y_command': 1.9547302721487383, 'command': 4, 'steer': -0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0463.json",
    "content": "{'x': -82.36247458704038, 'y': 1.9521121977308162, 'theta': 6.282149791717529, 'speed': 6.6613357158105435, 'target_speed': 7.0, 'x_command': -49.60330090480868, 'y_command': 1.9547302721487383, 'command': 4, 'steer': -0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0464.json",
    "content": "{'x': -79.2547272789586, 'y': 1.9504520891603574, 'theta': 0.0009134905994869769, 'speed': 6.149916718387963, 'target_speed': 7.0, 'x_command': -49.60330090480868, 'y_command': 1.9547302721487383, 'command': 4, 'steer': -0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0465.json",
    "content": "{'x': -76.02015072303631, 'y': 1.9418799875708617, 'theta': 6.279435157775879, 'speed': 6.754148725200663, 'target_speed': 7.0, 'x_command': -49.60330090480868, 'y_command': 1.9547302721487383, 'command': 4, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0466.json",
    "content": "{'x': -72.47677332688953, 'y': 1.9376970528195105, 'theta': 0.001091830083169043, 'speed': 7.015113105744557, 'target_speed': 7.0, 'x_command': -49.60330090480868, 'y_command': 1.9547302721487383, 'command': 4, 'steer': 0.001, 'throttle': 0.07298502653689104, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0467.json",
    "content": "{'x': -69.36506404187817, 'y': 1.938217520658387, 'theta': 6.282840251922607, 'speed': 5.964717504839965, 'target_speed': 7.0, 'x_command': -49.60330090480868, 'y_command': 1.9547302721487383, 'command': 4, 'steer': 0.003, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0468.json",
    "content": "{'x': -66.26770059879027, 'y': 1.9428750274736335, 'theta': 0.003686444601044059, 'speed': 6.429802398307369, 'target_speed': 7.0, 'x_command': -49.60330090480868, 'y_command': 1.9547302721487383, 'command': 4, 'steer': -0.001, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0469.json",
    "content": "{'x': -62.79649619673312, 'y': 1.9500118492834577, 'theta': 0.0, 'speed': 7.191577066323018, 'target_speed': 7.0, 'x_command': -49.60330090480868, 'y_command': 1.9547302721487383, 'command': 4, 'steer': 0.001, 'throttle': 0.07960881254449988, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0470.json",
    "content": "{'x': -59.50491916888778, 'y': 1.9560453890793275, 'theta': 0.004041249398142099, 'speed': 6.29340054426118, 'target_speed': 7.0, 'x_command': -49.60330090480868, 'y_command': 1.9547302721487383, 'command': 4, 'steer': -0.004, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "sample_data/route_00/measurements/0471.json",
    "content": "{'x': -56.264257903521305, 'y': 1.9593985079913425, 'theta': 0.0005980199784971774, 'speed': 6.6995370139187544, 'target_speed': 7.0, 'x_command': -49.60330090480868, 'y_command': 1.9547302721487383, 'command': 4, 'steer': -0.002, 'throttle': 0.75, 'brake': False}"
  },
  {
    "path": "scripts/Dockerfile.master",
    "content": "FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04\n\nARG HTTP_PROXY\nARG HTTPS_PROXY\nARG http_proxy\n\nRUN apt-get update && apt-get install --reinstall -y locales && locale-gen en_US.UTF-8\nENV LANG en_US.UTF-8\nENV LANGUAGE en_US\nENV LC_ALL en_US.UTF-8\n\nRUN apt-get update && apt-get install -y --no-install-recommends \\\n         build-essential \\\n         cmake \\\n         git \\\n         curl \\\n         vim \\\n         ca-certificates \\\n         libjpeg-dev \\\n\t     libpng16-16 \\\n\t     libtiff5 \\\n         libpng-dev \\\n         python-dev \\\n         python3.5 \\\n         python3.5-dev \\\n         python-networkx \\\n         python-setuptools \\\n         python3-setuptools \\\n         python-pip \\\n         python3-pip && \\\n         pip install --upgrade pip && \\\n         pip3 install --upgrade pip && \\\n         rm -rf /var/lib/apt/lists/*\n\n# installing conda\nRUN curl -o ~/miniconda.sh -LO https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh  && \\\n     chmod +x ~/miniconda.sh && \\\n     ~/miniconda.sh -b -p /opt/conda && \\\n     rm ~/miniconda.sh && \\\n     /opt/conda/bin/conda clean -ya && \\\n     /opt/conda/bin/conda create -n python37 python=3.7 numpy networkx scipy six requests\n\nRUN packages='py_trees==0.8.3 shapely six dictor requests' \\\n\t&& pip3 install ${packages}\n\nWORKDIR /workspace\nCOPY .tmp/PythonAPI /workspace/CARLA/PythonAPI\nENV CARLA_ROOT /workspace/CARLA\n\nENV PATH \"/workspace/CARLA/PythonAPI/carla/dist/carla-0.9.9-py3.7-linux-x86_64.egg\":/opt/conda/envs/python37/bin:/opt/conda/envs/bin:$PATH\n\n# adding CARLA egg to default python environment\nRUN pip install --user setuptools py_trees==0.8.3 psutil shapely six dictor requests\n\nENV SCENARIO_RUNNER_ROOT \"/workspace/scenario_runner\"\nENV LEADERBOARD_ROOT \"/workspace/leaderboard\"\nENV TEAM_CODE_ROOT \"/workspace/team_code\"\nENV PYTHONPATH \"/workspace/CARLA/PythonAPI/carla/dist/carla-0.9.9-py3.7-linux-x86_64.egg\":\"${SCENARIO_RUNNER_ROOT}\":\"${CARLA_ROOT}/PythonAPI/carla\":\"${LEADERBOARD_ROOT}\":${PYTHONPATH}\n\nCOPY .tmp/scenario_runner /workspace/scenario_runner\nCOPY .tmp/leaderboard /workspace/leaderboard\nCOPY .tmp/team_code ${TEAM_CODE_ROOT}\n\nRUN mkdir -p /workspace/results\nRUN chmod +x /workspace/leaderboard/scripts/run_evaluation.sh\n\n########################################################################################################################\n########################################################################################################################\n############                                BEGINNING OF USER COMMANDS                                      ############\n########################################################################################################################\n########################################################################################################################\n\nCOPY .tmp/carla_project /workspace/carla_project\n\nENV PYTHONPATH \"/workspace/CARLA/PythonAPI/carla/dist/carla-0.9.9-py3.7-linux-x86_64.egg\":${PYTHONPATH}\nENV PYTHONPATH \"/workspace/\":${PYTHONPATH}\nENV TEAM_AGENT /workspace/team_code/image_agent.py\nENV TEAM_CONFIG /workspace/team_code/model.ckpt\nENV CHALLENGE_PHASE_CODENAME SENSORS\n\nRUN apt-get update && apt-get install -y --no-install-recommends \\\n         libgtk2.0-dev\n\nENV PATH=\"/opt/conda/bin:${PATH}\"\nRUN /opt/conda/envs/python37/bin/pip install -r /workspace/carla_project/requirements.txt\nRUN /opt/conda/bin/conda install -c anaconda libgcc=7.2.0\nRUN /opt/conda/bin/conda init bash\n\nRUN cp /opt/conda/lib/libstdc++.so.6.0.26 /usr/lib/x86_64-linux-gnu/libstdc++.so.6\nENV CONDA_DEFAULT_ENV python37\nENV PATH /opt/conda/envs/python37/bin:$PATH\n\n########################################################################################################################\n########################################################################################################################\n############                                   END OF USER COMMANDS                                         ############\n########################################################################################################################\n########################################################################################################################\n\nENV SCENARIOS ${LEADERBOARD_ROOT}/data/all_towns_traffic_scenarios_public.json\nENV ROUTES ${LEADERBOARD_ROOT}/data/routes_training.xml\nENV REPETITIONS 1\nENV CHECKPOINT_ENDPOINT /workspace/results/results.json\nENV DEBUG_CHALLENGE 0\n\nENV HTTP_PROXY \"\"\nENV HTTPS_PROXY \"\"\nENV http_proxy \"\"\nENV https_proxy \"\"\n\nCMD [\"/bin/bash\"]\n"
  },
  {
    "path": "scripts/make_docker.sh",
    "content": "#!/bin/bash\n\nCARLA_ROOT=/home/bradyzhou/software/CARLA_0.9.9\nSCENARIO_RUNNER_ROOT=/home/bradyzhou/code/2020_CARLA_challenge/scenario_runner\nLEADERBOARD_ROOT=/home/bradyzhou/code/2020_CARLA_challenge/leaderboard\nTEAM_CODE_ROOT=/home/bradyzhou/code/2020_CARLA_challenge/leaderboard/team_code\n\nmkdir .tmp\n\ncp -fr ${CARLA_ROOT}/PythonAPI  .tmp\ncp -fr ${SCENARIO_RUNNER_ROOT}/ .tmp\ncp -fr ${LEADERBOARD_ROOT}/ .tmp\ncp -fr ${TEAM_CODE_ROOT}/ .tmp/team_code\ncp -fr /home/bradyzhou/code/2020_CARLA_challenge/carla_project .tmp\n\n# build docker image\ndocker build --force-rm -t leaderboard-user -f scripts/Dockerfile.master .\n\nrm -fr .tmp\n"
  }
]