> For the complete documentation index, see [llms.txt](https://flutter-docs.taxi.ridy.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://flutter-docs.taxi.ridy.io/configuration/measurement-system.md).

# Measurement System

Most countries use the metric system for measurements (e.g., kilometers, Celsius), while others, like the USA, use the imperial system (e.g., miles, feet, Fahrenheit). Ridy supports both systems in its client-side apps. To change the default system from metric to imperial, navigate to `<app>->lib->config->env.dart` and update the `defaultMetricSystem` value.

<pre class="language-dart" data-title="constants.dart" data-full-width="false"><code class="lang-dart">...
  static const List&#x3C;double> walletPresets = [10, 20, 50];
  static const MapProviderEnum defaultMapProvider = MapProviderEnum.mapBox;
<strong>  static const MeasurementSystem defaultMeasurementSystem = MeasurementSystem.imperial;
</strong>}
</code></pre>
