{
  "slug": "hike-time-naismith",
  "title": "Hiking Time Calculator (Naismith's Rule)",
  "category": "Timing & Pacing",
  "category_slug": "timing-pacing",
  "tier": 2,
  "summary": "Estimate hiking time from distance and ascent using Naismith's 1892 rule.",
  "description": "This calculator estimates hiking time using Naismith's Rule, the planning heuristic published in 1892 by William W. Naismith of the Scottish Mountaineering Club. It takes route distance in kilometres, total ascent in metres, and a base walking pace, then returns an estimated moving time by allowing one hour per 5 km of distance (adjustable to 4 or 6 km/h) plus one hour per 600 m of climb. The output is a planning estimate for fit walkers on good paths; terrain quality, weather, breaks, and descent handling all sit outside the rule.",
  "page_url": "https://fitmetriclab.com/en/tools/timing-pacing/hike-time-naismith/",
  "api_url": "https://fitmetriclab.com/api/tools/hike-time-naismith.json",
  "formula": {
    "id": "hike_time_naismith",
    "expression": "t_{h} = \\frac{d_{km}}{v} + \\frac{a_{m}}{600}",
    "variables": [
      {
        "symbol": "d",
        "description": "Distance in km"
      },
      {
        "symbol": "a",
        "description": "Total ascent in m"
      },
      {
        "symbol": "v",
        "description": "Base walking speed in km/h"
      }
    ]
  },
  "inputs": [
    {
      "id": "distance_km",
      "label": "Distance",
      "type": "number",
      "unit": "km",
      "default": 12,
      "min": 1,
      "max": 60,
      "step": 0.5
    },
    {
      "id": "ascent_m",
      "label": "Total Ascent",
      "type": "number",
      "unit": "m",
      "default": 600,
      "min": 0,
      "max": 4000,
      "step": 10
    },
    {
      "id": "pace",
      "label": "Walking Pace",
      "type": "select",
      "unit": null,
      "default": 5,
      "options": [
        {
          "label": "Relaxed (4 km/h)",
          "value": 4
        },
        {
          "label": "Naismith standard (5 km/h)",
          "value": 5
        },
        {
          "label": "Brisk (6 km/h)",
          "value": 6
        }
      ]
    }
  ],
  "worked_example": {
    "inputs": {
      "distance_km": 12,
      "ascent_m": 600,
      "pace": 5
    },
    "expected_output": "3 h 24 min"
  },
  "result_summary_template": "For {distance_km} km with {ascent_m} m of total ascent at a base speed of {pace} km/h, Naismith's Rule returns an estimated moving time of {result}.",
  "methodology": "Time (hours) = distance_km ÷ base_speed + ascent_m ÷ 600. The classical rule allows one hour per 5 km of distance plus one hour per 600 m of ascent; the pace select substitutes a 4 or 6 km/h base speed into the distance term while the ascent allowance is unchanged. Descent is counted as flat ground, and no correction is applied for terrain, load, breaks, or conditions.",
  "sources": [
    {
      "label": "Naismith WW. Excursions: Cruach Ardran, Stobinian, and Ben More. Scottish Mountaineering Club Journal. 1892;2:136.",
      "url": ""
    },
    {
      "label": "Langmuir E. Mountaincraft and Leadership. 3rd ed. Scottish Sports Council / Mountain Leader Training Board; 1995.",
      "url": ""
    },
    {
      "label": "Scarf P. Route choice in mountain navigation, Naismith's rule, and the equivalence of distance and climb. Journal of Sports Sciences. 2007;25(6):719–726.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/17454539/"
    }
  ],
  "faqs": [
    {
      "question": "Why does the ascent term stay the same when I change the pace?",
      "answer": "The rule treats climbing as a separate cost: one hour per 600 m of ascent, regardless of how quickly the party walks on the flat. In practice, faster walkers do also climb somewhat faster, so the fixed ascent allowance is a simplification. Keeping it constant matches the rule as originally published and as commonly applied in route planning, and it means the pace select only rescales the distance component of the estimate."
    },
    {
      "question": "How does the rule handle descent?",
      "answer": "It does not. Naismith's original formulation counts downhill kilometres exactly like flat ones — no time is added or subtracted for losing height. Gentle descents on good paths can indeed run close to flat pace, but steep, loose, or technical descents are often slower than moderate climbs. Later refinements, such as Langmuir's corrections, subtract time for gentle descents and add it for steep ones; this calculator applies the unmodified 1892 rule."
    },
    {
      "question": "Is the output moving time or total day length?",
      "answer": "Moving time only. The estimate covers steady walking and climbing and excludes lunch stops, rest breaks, navigation checks, faff at stiles and river crossings, and any time lost to weather or route-finding. A common planning practice is to add a fixed allowance per hour of walking for breaks, but the calculator leaves that adjustment to the user so the underlying arithmetic stays transparent."
    },
    {
      "question": "What ascent figure goes in — total climb or net elevation gain?",
      "answer": "Total climb: the sum of every uphill section on the route, which mapping software usually reports as cumulative ascent or elevation gain. Net difference between start and summit understates the cost on undulating routes. A ridge walk that repeatedly drops and regains 100 m can accumulate far more ascent than the summit height alone suggests, and each of those metres feeds the one-hour-per-600 m term."
    },
    {
      "question": "How close to real times does Naismith's Rule get?",
      "answer": "For fit walkers on clear paths in fair conditions, published comparisons generally place real times within roughly 10–25% of the rule's estimate, most often on the slower side. Rough ground, heavy packs, large groups, snow, and long days push actual times further beyond the calculation. The rule is best read as a lower-bound planning figure for good conditions rather than a prediction of any specific outing."
    }
  ],
  "related_tools": [
    {
      "slug": "elevation-pace",
      "title": "Elevation-Adjusted Pace Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/elevation-pace.json",
      "page_url": "https://fitmetriclab.com/en/tools/running/elevation-pace/"
    },
    {
      "slug": "calories-walking",
      "title": "Calorie Burn — Walking",
      "api_url": "https://fitmetriclab.com/api/tools/calories-walking.json",
      "page_url": "https://fitmetriclab.com/en/tools/energy-expenditure/calories-walking/"
    },
    {
      "slug": "workout-duration",
      "title": "Workout Duration Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/workout-duration.json",
      "page_url": "https://fitmetriclab.com/en/tools/timing-pacing/workout-duration/"
    }
  ],
  "last_updated": "2026-08-08",
  "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."
}