{
  "slug": "cycling-pace-converter",
  "title": "Cycling Pace Converter (MPH to km/h)",
  "category": "Cycling",
  "category_slug": "cycling",
  "tier": 2,
  "summary": "Convert cycling speeds between miles per hour and kilometers per hour instantly",
  "description": "This calculator converts cycling speed from miles per hour (mph) to kilometers per hour (km/h) using the internationally defined conversion factor of 1.609344 kilometers per statute mile. It accepts a single input—speed in mph—and returns the equivalent speed in km/h, plus an additional conversion to meters per second (m/s). The conversion applies the SI standard adopted by NIST and BIPM, ensuring precision for training logs, race data, and international performance comparisons.",
  "page_url": "https://fitmetriclab.com/en/tools/cycling/cycling-pace-converter/",
  "api_url": "https://fitmetriclab.com/api/tools/cycling-pace-converter.json",
  "formula": {
    "id": "cycling_pace_converter",
    "expression": "v_{kmh} = v_{mph} \\times 1.609344",
    "variables": [
      {
        "symbol": "v_{mph}",
        "description": "Speed in mph"
      }
    ]
  },
  "inputs": [
    {
      "id": "mph",
      "label": "Speed",
      "type": "number",
      "unit": "mph",
      "default": 6,
      "min": 0.1,
      "max": 60,
      "step": 0.1
    }
  ],
  "worked_example": {
    "inputs": {
      "mph": 6
    },
    "expected_output": "9.66 km/h"
  },
  "result_summary_template": "A cycling speed of {mph} mph converts to {result} using the standard conversion factor 1.609344 kilometers per mile.",
  "methodology": "The tool multiplies the input speed in miles per hour by 1.609344, the internationally defined number of kilometers in one statute mile. This constant is established by the International System of Units (SI) and international standards organizations including NIST and BIPM.",
  "sources": [
    {
      "label": "National Institute of Standards and Technology. NIST Special Publication 811: Guide for the Use of the International System of Units (SI). 2008.",
      "url": "https://www.nist.gov/pml/special-publication-811"
    },
    {
      "label": "International Bureau of Weights and Measures (BIPM). The International System of Units (SI), 9th edition. 2019.",
      "url": "https://www.bipm.org/en/publications/si-brochure"
    },
    {
      "label": "Federal Highway Administration. Manual on Uniform Traffic Control Devices (MUTCD). US Department of Transportation. 2009.",
      "url": "https://mutcd.fhwa.dot.gov/"
    }
  ],
  "faqs": [
    {
      "question": "Why does this tool use 1.609344 instead of 1.6?",
      "answer": "The value 1.609344 is the internationally defined exact conversion factor between statute miles and kilometers. Rounding to 1.6 introduces approximately 0.6% error, which becomes noticeable at higher cycling speeds or when calculating cumulative distances over long rides."
    },
    {
      "question": "What is the meters per second output useful for?",
      "answer": "Meters per second is commonly used in physics and engineering contexts, and some cycling power meters and sports science research report velocities in m/s. The tool divides km/h by 3.6 to provide this unit automatically, since 1 km/h equals 1000 m per 3600 seconds."
    },
    {
      "question": "Does wind or terrain affect this conversion?",
      "answer": "No. This tool performs a mathematical unit conversion only. The conversion factor between miles and kilometers is fixed regardless of physical conditions. Wind, gradient, drafting, and other cycling-specific factors affect actual speed but not the arithmetic relationship between mph and km/h."
    },
    {
      "question": "Can I use this for running or other activities?",
      "answer": "Yes. The conversion between mph and km/h is identical regardless of activity. The same factor applies to running, swimming, rowing, or any other context where speed is measured. The tool is labeled for cycling because it was designed for that audience, but the mathematics are universal."
    },
    {
      "question": "How precise is the conversion?",
      "answer": "The calculator uses the full 1.609344 constant internally and rounds the display to two decimal places. This provides precision well beyond what GPS devices or bike computers typically measure. Measurement uncertainty in real-world speed sensors generally exceeds the rounding error introduced by two-decimal display."
    }
  ],
  "related_tools": [
    {
      "slug": "cycling-power",
      "title": "Cycling Power Calculator (Watts from Speed)",
      "api_url": "https://fitmetriclab.com/api/tools/cycling-power.json",
      "page_url": "https://fitmetriclab.com/en/tools/cycling/cycling-power/"
    },
    {
      "slug": "cycling-power-zones",
      "title": "Cycling Power Zones Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/cycling-power-zones.json",
      "page_url": "https://fitmetriclab.com/en/tools/cycling/cycling-power-zones/"
    },
    {
      "slug": "chain-length",
      "title": "Chain Length Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/chain-length.json",
      "page_url": "https://fitmetriclab.com/en/tools/cycling/chain-length/"
    }
  ],
  "last_updated": "2026-04-22",
  "price": {
    "value": 0,
    "currency": "USD"
  },
  "runs_in_browser": true,
  "disclaimer": "Educational estimate produced from a published formula. Not medical, nutritional, or training advice. Calculations are deterministic — apply the formula to the inputs to reproduce the result."
}