> For the complete documentation index, see [llms.txt](https://docs.kuzquality.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kuzquality.com/resources/free-resources/dragy/config.md).

# Config

```lua
Config = {}


-- Whether or not you want to use Imperial units
-- true = Imperial (mph)
-- false = Metric (km/h)
Config.useImperial = false


-- Times that will be logged (this setup is recommended for metric units)
-- I'd recommend speeds like (30, 60, 100, 120, 155) for imperial units
Config.times = {
    {
        speed = 60,
    },
    {
        speed = 100,
    },
    {
        speed = 150,
    },
    {
        speed = 200,
    },
    {
        speed = 250,
    },
    {
        speed = 300,
    }
}

-- Distances that will be logged (this setup is recommended for metric units)
-- I'd recommend distances like (1320, 2640, 5280) for imperial units
Config.distances = {
    {
        distance = 500,
    },
    {
        distance = 1000,
    },
    {
        distance = 2000,
    },
}
```
