Steps to Miles Calculator

Convert step count into miles and kilometres using your height and pace.

Distance (miles) β€”
Distance (km) β€”
Your stride length β€”

Results update as you type.

About this calculator

A steps-to-miles calculator converts a step count into distance. Stride length depends on height and pace, so this tool estimates your stride as a fraction of your height β€” about 0.41 for a normal walk up to 0.70 for a run β€” then multiplies by your steps. Enter your height for a personalised distance in both miles and kilometres.

For a 175 cm person walking, stride β‰ˆ 1.75 m Γ— 0.415 = 0.73 m. Ten thousand steps is then 10,000 Γ— 0.73 = 7,300 m, which is about 4.5 miles or 7.3 km. A taller person, or a faster pace with a longer stride, covers the same steps in more distance β€” which is why a fixed "2,000 steps per mile" rule is only a rough average.

Enter your step count and height, then choose the pace that matches how you moved β€” walking, brisk walk, jogging or running. The tool returns miles and kilometres plus your estimated stride. For an exact figure, measure your own stride over a known distance and compare; the calculator gives a close, personalised estimate rather than a lab measurement.

Frequently asked questions

How many steps are in a mile?

Roughly 2,000 for an average walk, but it depends on your height and stride. A taller person covers a mile in fewer steps. This steps-to-miles calculator estimates your stride from your height rather than assuming a fixed number.

How is stride length estimated?

Stride is taken as a fraction of your height β€” about 0.41 for a normal walk, rising to around 0.70 for running as your steps lengthen. Distance = steps Γ— stride length.

Are the miles and kilometres exact?

They are estimates. For an exact figure, measure your own stride by walking a known distance and dividing by the number of steps, then compare with this result.

How far is 10,000 steps?

It depends on height and pace. For a 175 cm person walking (stride β‰ˆ 0.73 m), 10,000 steps is about 4.5 miles or 7.3 km. Taller people with longer strides cover more.

How many steps are in a 5K?

A 5 km run is roughly 6,000–7,500 steps depending on stride and pace, since running lengthens each step. Read the kilometre column in the distance table, or adjust the step count until it shows 5 km.

Does walking or running change distance per step?

Yes. Stride grows with speed, so the tool offers walking, brisk-walk, jogging and running factors from 0.415 up to 0.70 of your height. The same step count covers more ground at a run.

How can I measure my real stride length?

Walk a known distance, say 20 m, count your steps, and divide the distance by the steps. Compare that stride with the tool’s estimate and pick the pace factor that matches your result.

❀️ Love Calculator.Free? Share it

𝕏  X Facebook Reddit
API β€” use this calculator from code

Call this calculator as a free JSON endpoint β€” no key required. Send the field values below as query parameters or JSON. Read the full API docs β†’

Endpoint

GET https://calculator.free/api/v1/steps-to-miles/

curl

curl "https://calculator.free/api/v1/steps-to-miles/?steps=10000&units=metric&height=175&pace=0.415"

JavaScript fetch()

const r = await fetch(
  "https://calculator.free/api/v1/steps-to-miles/?" + new URLSearchParams({
    "steps": "10000",
    "units": "metric",
    "height": "175",
    "pace": "0.415"
  }));
const data = await r.json();
console.log(data.results);

Results are estimates for general guidance only, not financial, medical or tax advice.