{
  "slug": "swim-distance-converter",
  "title": "Swim Distance Converter",
  "category": "Swimming",
  "category_slug": "swimming",
  "tier": 3,
  "summary": "Convert swimming distances between meters and yards using the standard international conversion factor.",
  "description": "This calculator converts swimming distances between meters and yards using the standard international conversion factor of 1 meter = 1.09361 yards (or 1 yard = 0.9144 meters). It accepts either a distance in meters or yards as input and returns the equivalent distance in the opposite unit, along with pool-length counts for 25-meter and 50-meter pools when converting from meters. The conversion applies the fixed ratio defined by the International System of Units and U.S. customary measurement standards, commonly used to translate swim workout distances between short-course yards and long-course meter pools.",
  "page_url": "https://fitmetriclab.com/en/tools/swimming/swim-distance-converter/",
  "api_url": "https://fitmetriclab.com/api/tools/swim-distance-converter.json",
  "formula": {
    "id": "swim_distance_converter",
    "expression": "y = m \\times \\frac{1}{0.9144}",
    "variables": [
      {
        "symbol": "m",
        "description": "Distance in metres"
      },
      {
        "symbol": "y",
        "description": "Distance in yards"
      }
    ]
  },
  "inputs": [
    {
      "id": "meters",
      "label": "Meters",
      "type": "number",
      "unit": "m",
      "default": 100,
      "min": 0,
      "max": 10000,
      "step": 1
    },
    {
      "id": "yards",
      "label": "Yards",
      "type": "number",
      "unit": "yd",
      "default": 109,
      "min": 0,
      "max": 10000,
      "step": 1
    }
  ],
  "worked_example": {
    "inputs": {
      "meters": 100,
      "yards": 109
    },
    "expected_output": "109.36 yards"
  },
  "result_summary_template": "Converting {meters} meters yields {result}, while {yards} yards equals the corresponding metric distance using the standard 1.09361 conversion factor: {result}.",
  "methodology": "Applies the standard international conversion factor: 1 meter = 1.09361 yards (or 1 yard = 0.9144 meters). This ratio is defined by the International System of Units (SI) and U.S. customary measurement standards.",
  "sources": [
    {
      "label": "National Institute of Standards and Technology. NIST Guide to the SI, Appendix B.8: Factors for Units. 2008.",
      "url": "https://www.nist.gov/pml/owm/metric-si/si-units"
    },
    {
      "label": "FINA Facilities Rules: Swimming Pools, Diving Pools, and Water Polo Pools. World Aquatics. 2022.",
      "url": "https://www.worldaquatics.com/swimming/rules"
    },
    {
      "label": "USA Swimming Rules & Regulations: Pool Measurement and Certification Standards. 2023.",
      "url": "https://www.usaswimming.org/utility/landing-pages/rules-regulations"
    }
  ],
  "faqs": [
    {
      "question": "Why do swim distances differ between meters and yards?",
      "answer": "Meters and yards are different units of length from separate measurement systems. The international meter (SI unit) and the U.S. customary yard have a fixed conversion ratio of 1 meter = 1.09361 yards, established by international agreement. This difference means a 100-meter swim is approximately 9.4 yards longer than a 100-yard swim."
    },
    {
      "question": "Are swim times comparable between 25-meter and 25-yard pools?",
      "answer": "Times are not directly comparable because the number of turns differs for the same distance. A 400-meter swim in a 25 m pool requires 15 turns, while the equivalent distance (437.4 yd) in a 25 yd pool would require 17 turns. Each turn provides a push-off advantage, and shorter pools mean more turns per distance. Competitive swimming maintains separate records for short course meters, long course meters, and short course yards."
    },
    {
      "question": "What is the difference between a 1500 m and 1650 yd swim?",
      "answer": "A 1500 m swim equals approximately 1640.4 yards, making it about 9.6 yards shorter than 1650 yards. The 1500 m is the Olympic distance event (30 lengths of 50 m), while 1650 yards (66 lengths of 25 yd) is the NCAA championship distance. Despite similar names colloquially (the 'mile'), these are distinct events with different absolute distances."
    },
    {
      "question": "Can this converter help plan workouts across different pool types?",
      "answer": "The tool accurately converts the distance component of workout sets. A coach's instruction to swim 10 × 100 m can be converted to 10 × 109.4 yd for a yards pool. However, target times and rest intervals may need adjustment since pool length affects turn frequency and pacing strategy. The conversion provides the distance equivalence but does not modify the training stimulus parameters."
    },
    {
      "question": "Why do some countries use meters while others use yards for swimming?",
      "answer": "International swimming competitions, including the Olympics and FINA World Championships, use metric distances exclusively. The United States primarily uses yards for high school and collegiate competition due to historical precedent and existing pool infrastructure, though USA Swimming national meets use meters. The meter is the SI standard globally, while yards persist in U.S. domestic swimming contexts."
    }
  ],
  "related_tools": [
    {
      "slug": "swim-pace-converter",
      "title": "Swim Pace Converter (100m to 100y)",
      "api_url": "https://fitmetriclab.com/api/tools/swim-pace-converter.json",
      "page_url": "https://fitmetriclab.com/en/tools/swimming/swim-pace-converter/"
    },
    {
      "slug": "css-calculator",
      "title": "Critical Swim Speed (CSS) Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/css-calculator.json",
      "page_url": "https://fitmetriclab.com/en/tools/swimming/css-calculator/"
    },
    {
      "slug": "swim-splits",
      "title": "Swim Split Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/swim-splits.json",
      "page_url": "https://fitmetriclab.com/en/tools/swimming/swim-splits/"
    }
  ],
  "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."
}