Knots to Kilometers per Hour Converter
Last updated: 16 August 2026
Reviewed by Gavin · Research and drafting assisted by AI
Type a speed in either knots (kn) or kilometres per hour (km/h) and the other field updates instantly. The factor 1 knot = exactly 1.852 km/h by international definition (ICAO Annex 5, IHO S-32, BIPM SI Brochure 9th ed., NIST SP 811) — one knot equals one international nautical mile (1,852 m) per hour — so this converter has zero measurement uncertainty. Bonus read-outs in m/s and mph are shown alongside the main pair.
Knots to Kilometers per Hour Converter
The knots to km/h converter is a free, browser-based speed translator that moves any value between knots (kn) and kilometres per hour (km/h) in either direction. Type a speed into either field and the other field updates instantly as you type, with no manual arithmetic and no risk of mixing up nautical and statute speed units. The page also displays the same speed in metres per second (m/s) and miles per hour (mph) as bonus read-outs, so a single screen covers the four speed scales you encounter in aviation, marine, weather, and everyday road contexts.
A knot is one international nautical mile per hour. The international nautical mile is exactly 1,852 metres by definition, so one knot is exactly 1,852 ÷ 3,600 = 0.514444 metres per second. Because the nautical mile and the kilometre are both defined in metres, the ratio between knots and kilometres per hour is exact: 1,852 m ÷ 1,000 m = 1.852. The converter uses this exact 1.852 factor throughout, so every result it produces carries no measurement uncertainty, the only rounding error comes from how many decimal places you choose to display.
The factor is codified by four independent international references. The Bureau International des Poids et Mesures (BIPM SI Brochure, 9th edition, 2019) lists the nautical mile as a non-SI unit accepted for use with the SI. ICAO Annex 5 (Units of Measurement to be Used in Air and Ground Operations, 5th edition, 2010) defines the nautical mile as exactly 1,852 metres for all international civil aviation. The International Hydrographic Organization (IHO Publication S-32, Hydrographic Dictionary) defines it for marine navigation. NIST Special Publication 811 (Guide for the Use of the SI Units) documents the relationship between the nautical mile and the SI base unit of length. All four authorities agree on the same exact value, and the converter follows them.
Intro / What this tool does
The page solves the recurring "knots vs km/h" problem that comes up wherever a maritime or aviation speed meets a road-speed audience. A METAR reporting wind at 25 knots is read by a sailor in knots but by a land-based meteorologist in km/h; a ferry doing 30 knots through the water is described in knots on the bridge and in km/h on the passenger information display; a regional jet cruising at 450 knots is filed in knots on the flight plan and in km/h in the airline's marketing brochure. The converter is built for those moments: type either side, read the other, and audit the arithmetic via the on-page working line.
Both fields update live, accepting fractional values, scientific notation, and any non-negative number JavaScript can represent. The bonus read-outs derive from the knots value (preferred) or the km/h value (fallback), so the page always shows four consistent numbers regardless of which field the user touched last. The Quick presets section reproduces the seven hand-verified test cases at the top of the component source, so a curious user can click each preset and verify that the displayed value matches the comment.
The converter runs entirely in the browser. Inputs are not stored, not transmitted, not logged, and not associated with any account. Clipboard copies use the standard async Clipboard API where available, with a graceful no-op fallback when the API is not present.
How to use the knots to km/h converter
- Type a value into the Knots (kn) field. The default is 10 knots, which equals 18.52 km/h exactly. Decimal values are accepted (0.5, 1.25, 100.7), as are very small and very large values within JavaScript's IEEE 754 float range.
- Watch the Kilometres per hour (km/h) field update instantly as you type, using the exact factor 1.852 km/h per knot.
- Or type a value into the Kilometres per hour (km/h) field. The knots field updates instantly using the inverse factor 1 ÷ 1.852 ≈ 0.539957 knots per km/h.
- Read the bonus read-outs for metres per second (m/s) and miles per hour (mph). The m/s figure uses the exact 0.514444 m/s per knot; the mph figure uses the exact ratio 1,852 m / 1,609.344 m ≈ 1.150779 mph per knot.
- Click the ⇄ swap button if you want to flip the input and output without retyping. This is useful when you have an answer in the "wrong" unit and want to keep the rest of the page oriented in your preferred unit.
- Click a Quick preset to jump to one of the seven hand-verified test cases (1 knot, 10, 50, 100, 500, 0, and 60 km/h). Each preset shows the equivalent km/h value at full six-decimal precision.
- Click Copy knots, Copy km/h, or Copy result to put the value on the clipboard, then paste it into a logbook, email, flight plan, or weather bulletin.
The "Show your work" line in the result box spells out the arithmetic in the form value knots × 1.852 = value km/h, so a student, pilot, sailor, or meteorologist can verify the conversion step by step rather than trusting a black-box number.
The formula
The conversion rests on a single dimensionless factor: 1 knot = exactly 1.852 km/h.
The derivation is one line of dimensional analysis. The international nautical mile is exactly 1,852 m. One hour is exactly 3,600 s. So one knot is exactly 1,852 / 3,600 = 0.514444 m/s. One km/h is exactly 1,000 / 3,600 = 0.277778 m/s. Dividing one by the other gives the exact ratio:
1 knot ÷ 1 km/h = (1,852 / 3,600 m/s) ÷ (1,000 / 3,600 m/s) = 1,852 / 1,000 = 1.852
The "metres per second" cancels on both sides, leaving a dimensionless number that is exactly 1.852.
Therefore:
km/h = knots × 1.852 (forward, exact)
knots = km/h ÷ 1.852 (inverse, exact)
Both directions are mathematically exact (a single multiplication or division by a defined constant); there is no measurement uncertainty in the conversion. Any rounding error you see comes only from how many decimal places the display truncates, internally the converter uses full IEEE 754 double-precision arithmetic (about 15 significant digits).
For the bonus read-outs, the same dimensional-analysis approach gives two more exact factors:
m/s = knots × (1852 / 3600) = knots × 0.514444 (exact)
mph = knots × (1852 / 1609.344) = knots × 1.150779... (exact; 1 statute mile = 1609.344 m exactly)
The mph figure is exact because the international statute mile has been exactly 1,609.344 m since the 1959 international yard and pound agreement (NIST SP 811 cites this value). So the four displayed speeds are internally consistent to machine precision: a 100-knot reading shows 185.2 km/h, 51.4444 m/s, and 115.0779448... mph, all derived from a single canonical knots value.
The two formulas are exact inverses. If you convert a knots value to km/h and back to knots, you get the original value to machine precision. For the Knots to km/h Converter, There is no drift and no accumulated error from repeated round-trips, because the factor is exact.
Worked examples
Example 1, 1 knot. The single knot is exactly 1 × 1.852 = 1.852 km/h. So 1 knot = 1.852 km/h (definition, exact). In m/s, 1 knot = 0.514444 m/s. In mph, 1 knot = 1.150779 mph. This is the slowest meaningful speed in the nautical system, a drifting vessel with just steerage way.
Example 2, 10 knots. 10 knots × 1.852 = 18.52 km/h exactly. A 10-knot boat speed is a fast sailing yacht in a good breeze (a typical Beneteau Oceanis or Hanse cruiser at hull speed), a small motorboat at cruise, or a paddled kayak in a strong current. The 18.52 km/h figure is also useful as a sanity check: 18 km/h is roughly the speed of a fit cyclist on a flat road, and 10 knots is the speed of a moderately powered sailing vessel.
Example 3, 50 knots. 50 knots × 1.852 = 92.6 km/h. In m/s, 50 × 0.514444 = 25.7222 m/s. In mph, 50 × 1.150779 = 57.539 mph. A 50-knot reading fits a light general-aviation aircraft (Cessna 172 cruise ≈ 110 to 120 knots, but a Cessna 150 climbs through 50 knots on takeoff), a fast ferry or RIB (rigid inflatable boat) in calm water, or a small coastguard cutter at full speed.
Example 4, 100 knots. 100 knots × 1.852 = 185.2 km/h. In m/s, 100 × 0.514444 = 51.4444 m/s. In mph, 100 × 1.150779 = 115.078 mph. A 100-knot reading fits a high-speed ferry (the famous Jet-Foils and Incat catamarans reach 35 to 45 knots; a Boeing 929 Jetfoil reaches about 43 knots; a true 100-knot vessel is closer to an aircraft or military hydrofoil), the cruise speed of a small turboprop (Pilatus PC-12 ≈ 270 knots cruise, but a Piper Saratoga or Beechcraft Bonanza A36 cruises around 170 to 180 knots, and a smaller Piper Archer cruises around 110 to 120 knots), or the climb speed of a regional jet.
Example 5, 500 knots. 500 knots × 1.852 = 926 km/h. In m/s, 500 × 0.514444 = 257.222 m/s. In mph, 500 × 1.150779 = 575.39 mph. A 500-knot reading is typical cruise speed for a regional jet (Embraer E175 cruise ≈ 0.78 Mach ≈ 470 knots; CRJ-700 cruise ≈ 0.78 Mach ≈ 460 knots) or the low end of a narrow-body airliner cruise (Boeing 737 cruise ≈ 0.78 to 0.80 Mach ≈ 450 to 470 knots indicated, varying with altitude and weight). A 500-knot boat speed would be a hydrofoil or surface-effect ship, recreational boats rarely exceed 50 to 60 knots, and even the fastest production hydrofoils (Quadrofoil, Hydrofoiler) top out around 30 to 40 knots.
Example 6, 0 knots. 0 knots × 1.852 = 0 km/h. The vessel or aircraft is stationary (moored, docked, parked, or hovering). Useful as a sanity check on the input parser and a baseline for the bonus read-outs.
Example 7, 60 km/h to knots (reverse direction). 60 km/h ÷ 1.852 = 32.3974 knots (rounded to four decimal places). 32.3974 × 0.514444 = 16.6666... m/s, which is 60 km/h ÷ 3.6 ≈ 16.6667 m/s, consistent to within display rounding. 32.3974 × 1.150779 = 37.2819 mph, which is 60 km/h × 0.621371 ≈ 37.2823 mph. A 32-knot reading fits a brisk walk on the promenade deck of a cruise ship, a sailing yacht hull speed, or a small coastguard RIB at moderate throttle. The "60 km/h on a cruise-ship deck" reference is intentionally chosen as a real-world sanity check: walking pace is easy to imagine, the conversion is exact, and the result lands in the nautical range that everyday readers can visualise.
Example 8, round-trip check. Take 500 knots. Multiply by 1.852 to get 926 km/h. Divide 926 by 1.852 to get 500.000 knots back, to machine precision. The round trip returns the same value to about 15 significant digits, which is the formal proof that the two formulas are exact inverses.
Where it shows up
Aviation. Pilots file flight plans in knots, read METAR winds in knots, and hear ATC clearances in knots. ICAO Annex 5 codifies the nautical mile as exactly 1,852 metres for all international civil aviation, and most national aviation authorities (FAA, EASA, CAA, CASA, TC) follow the same definition. Passengers who want to know how fast they are flying convert the cockpit's 450-knot cruise into the 833 km/h they would recognise from a road sign. The page handles that conversion exactly, with no rounding to mislead the reader.
Marine and sailing. Boat speeds are universally quoted in knots. The IHO S-32 Hydrographic Dictionary defines the nautical mile for marine navigation, and the conversion factor of 1.852 km/h is the basis of every electronic chart plotter, every knot log, and every AIS (Automatic Identification System) broadcast. A sailing yacht's polars (performance tables) list boat speed in knots for every true-wind speed and angle; a racing tactician reading those polars in km/h is reading them backwards. The converter is also handy for rowing shells, kayaks, and rowing/coaching telemetry, where 18 to 22 km/h is a fast paddle cadence (a coastal rowing race C1x at full pressure can sustain 14 km/h for an hour and peak at 18 km/h).
Weather and meteorology. Wind speed is reported in knots in aviation forecasts (METAR, TAF), in mph in US public forecasts (NWS), in km/h in most public forecasts worldwide, and in m/s in research and some national weather services. The Beaufort scale, used internationally for marine and coastal wind reporting, anchors knots at the boundaries: Beaufort 1 is 1 to 3 knots, Beaufort 4 is 11 to 16 knots, Beaufort 8 (gale) is 34 to 40 knots, Beaufort 10 (storm) is 48 to 55 knots, Beaufort 12 (hurricane) is ≥ 64 knots. A sailor reading a Beaufort-8 forecast in mph would see "39 to 46 mph" and might not recognise the same wind.
Road speed and weather warnings. Highway signs in most of the world post speed limits in km/h. Wind warnings for high-sided vehicles (banners, articulated lorries, coaches) are sometimes quoted in knots for cross-border consistency, and a continental driver reading a 50-knot gust warning needs to convert to the 92.6 km/h they are used to seeing on weather apps.
Sports and outdoor activities. Sailing regattas report wind speed in knots; rowing, kayaking, and open-water swimming report pace in km/h or minutes per kilometre; cycling and running report pace in km/h. An athlete who trains in km/h and competes in knots (or vice versa) needs a quick converter at the side of the track.
Science and engineering. Physics and fluid dynamics papers report wind tunnel and water-tunnel speeds in m/s. Boundary-layer meteorology uses m/s. Aerospace engineering uses knots for flight speeds and m/s for everything else. The page covers all four scales so an engineer or scientist can move between them without re-entering values into a separate calculator.
Common mistakes
Rounding 1.852 to 1.85. Using 1 knot ≈ 1.85 km/h introduces an error of about 0.11 percent (the true ratio is 1.852, not 1.85). On a 500-knot reading that is 1 km/h off; on a 100-knot reading it is 0.2 km/h off. Small, but enough to mislead a navigator. Always use the exact 1.852 factor.
Rounding the inverse the other way. Using 1 km/h ≈ 0.54 knots introduces the same 0.11 percent error in the other direction. Use 1 ÷ 1.852 ≈ 0.539957 knots per km/h for exact work.
Confusing knots with nautical miles vs statute miles. "Knots" is a speed (nautical miles per hour). "Nautical miles" is a distance (1,852 m). "Statute miles" (1,609.344 m) is a different distance used on US and UK roads. Saying "20 knots per mile" is meaningless; saying "20 knots for 3 hours = 60 nautical miles" is correct. The page converts speeds only, for distances, multiply by the time.
Mixing up the factor with the SI unit. Some sources quote 1 knot as 0.514 m/s (rounded) or 1,852 m/h (technically correct but rarely useful). The 0.514444 m/s figure is the conversion to the SI base unit of speed, which is the right value to anchor a multi-unit converter. The 1.852 km/h figure is the conversion to the everyday road-speed unit, which is what this page anchors on.
Reading a 15-knot METAR wind as 15 mph. A 15-knot wind is 15 × 1.852 = 27.78 km/h, or 15 × 1.150779 = 17.26 mph. Confusing the two understates the wind by about 13 percent, which matters for small-craft advisories, ferry schedules, and bridge closures.
Forgetting the difference between indicated and true airspeed. Pilots reading 250 knots off the airspeed indicator need to apply temperature and pressure corrections to get true airspeed. The page converts indicated knots to indicated km/h and back at the same factor, which is exact, but it cannot recover the true airspeed for you, that is a separate instrument-correction step.
Treating knots as if they were mph or kph on a road sign. Knots are about 15 percent faster than mph and about 85 percent as fast as km/h, so a 60-knot vessel is doing roughly 111 km/h, not 60 km/h. The mental shortcut "knots × 2 minus 10 percent" (60 × 2 = 120 minus 12 = 108) lands close to the exact 111.12 km/h. For everyday checks that is good enough; for navigation it is not.
Frequently Asked Questions
What is a knot? A knot is one international nautical mile per hour. The international nautical mile is exactly 1,852 metres by definition (ICAO Annex 5, IHO S-32, BIPM SI Brochure 9th ed., NIST SP 811), so one knot is exactly 1,852 ÷ 3,600 = 0.514444 m/s. The name comes from an old method of measuring a ship's speed: a rope with knots tied at equal intervals was unspooled from a chip log overboard, and the number of knots paid out in a fixed time gave the speed. Today every knot on every chart, every plotter, and every weather bulletin uses the same exact 0.514444 m/s definition.
How do I convert knots to km/h? Multiply the speed in knots by exactly 1.852 to get the speed in km/h. For example, 25 knots × 1.852 = 46.3 km/h. The factor comes from 1,852 m ÷ 1,000 m, the ratio of the nautical mile to the kilometre. Both units are defined in metres, so the ratio is dimensionless and exact. The knots-to-km/h converter on this page does this multiplication for any value, to full IEEE 754 precision.
How do I convert km/h to knots? Divide the speed in km/h by exactly 1.852 to get the speed in knots. For example, 100 km/h ÷ 1.852 = 53.9957 knots. This is the inverse of the knots-to-km/h conversion. A driver reading a 100 km/h speed limit in a coastal area with a Beaufort-7 forecast (28 to 33 knots of wind) can compare the wind directly to the limit: 100 km/h ≈ 54 knots, much faster than the gust forecast.
Why does aviation use knots instead of mph or kph? Aviation uses knots because knots and nautical miles are matched: a speed of 60 knots maintained for 1 hour covers 60 nautical miles, with no unit-conversion arithmetic needed. Navigation charts and air routes are also measured in nautical miles, so the consistency simplifies flight planning, fuel calculations, and ETA estimates. The nautical mile itself traces back to one minute of arc along a meridian (1° of latitude = 60 nautical miles), which made it convenient for celestial and dead-reckoning navigation long before electronic aids existed. ICAO codified the nautical mile as exactly 1,852 metres for international civil aviation in Annex 5.
Why does marine use knots instead of km/h? Marine uses knots for the same reason as aviation: a 10-knot boat speed held for 3 hours covers 30 nautical miles, which converts directly to a latitude or longitude reading on a chart. Before GPS, navigators measured speed by chip log and distance by latitude sight, so the nautical-mile basis made both arithmetic and chart work trivial. The IHO S-32 Hydrographic Dictionary defines the nautical mile for marine use, and every admiralty chart, every GPS receiver, and every electronic chart display and information system (ECDIS) uses the same exact 1,852 m definition.
What is the difference between a nautical mile and a statute mile? A nautical mile is exactly 1,852 metres (about 6,076 feet). A statute mile (the everyday "mile" on US and UK road signs) is exactly 1,609.344 metres (about 5,280 feet). The nautical mile is longer by a factor of 1.852 ÷ 1.609344 = 1.150779. The two units look similar in conversation but differ enough that mixing them up introduces a roughly 15 percent error in distances or speeds.
How fast is a knot in km/h? One knot is exactly 1.852 km/h, because 1,852 metres per hour equals 1.852 km/h. So 1 knot = 1.852 km/h, 10 knots = 18.52 km/h, 100 knots = 185.2 km/h, 500 knots = 926 km/h, and so on. This conversion is exact, with no rounding, the only non-exact conversion in the table is between m/s and km/h, which involves the factor 1,000 m / 3,600 s = 5/18, a repeating decimal.
Can I use this converter for wind speed? Yes. Wind speed is reported in knots (aviation, marine forecasts), km/h (most public forecasts worldwide), mph (US public forecasts), and m/s (research and some national weather services). The converter handles all four directly: type a wind reading in knots (e.g. 25 knots from a METAR) and read 46.3 km/h, 12.86 m/s, and 28.77 mph as bonus read-outs. The page is also a quick sanity check for Beaufort-scale readings.
What is a fast knot in everyday terms? 100 knots is roughly 185 km/h or 115 mph, about the cruise speed of a small turboprop aircraft. 30 knots is about 56 km/h or 35 mph, typical of a fast sailing yacht in a good breeze. 10 knots is about 19 km/h or 11 mph, a moderately powered sailing yacht or small motorboat. 5 knots is about 9 km/h or 5.8 mph, a leisurely sail or a brisk walk. The scale is intuitive once you anchor one or two reference speeds to physical objects you have experienced.
Why is the nautical mile exactly 1,852 metres? The international nautical mile was originally defined as one minute of arc along a meridian of the Earth. Because the Earth is not a perfect sphere, the actual arc length per minute varies from about 1,843 m at the equator to about 1,861 m at the poles. In 1929 the First International Extraordinary Hydrographic Conference adopted 1,852 m as a single, exact value that approximated the meridian arc length at latitude 45°. ICAO later adopted the same value for aviation, and the BIPM lists it as a non-SI unit accepted for use with the SI. The choice of 1,852 m was deliberate: it is the meridian arc length at about 45° latitude, the geometric mean between the equatorial and polar values, and the value that minimised disruption to existing navigation tables.
Is the knot-to-km/h conversion ever approximate? No. The factor 1.852 is exact by international definition. Any rounded figure you see (1.85, 1.9, 2) is an approximation introduced by the source, not by the physics. The converter uses the exact factor throughout and rounds only the displayed result to a chosen number of decimal places. If you need a particular precision, type a value to more decimal places or copy the displayed result with full precision.
Why do sailors and pilots care about metres per second? m/s is the SI unit of speed, and it shows up everywhere a scientific or engineering audience intersects with a maritime or aviation one. Wind-tunnel tests publish m/s. Fluid-dynamics papers publish m/s. Ballistics research publishes m/s. Some national weather services (the UK Met Office, MeteoSwiss, the German DWD) publish wind in m/s in their technical products. The bonus m/s read-out on this page keeps the conversion one click away whenever a sailing or aviation speed has to be cross-referenced against a research paper or engineering report.
References
- ICAO Annex 5, Units of Measurement to be Used in Air and Ground Operations, 5th edition (2010). The International Civil Aviation Organization's authoritative reference for the units used in international civil aviation. Defines the nautical mile as exactly 1,852 metres for all air and ground operations, and lists the knot (nautical mile per hour) as the standard unit of speed for flight plans, METARs, TAFs, and ATC clearances.
- BIPM SI Brochure, 9th edition (2019). For the Knots to km/h Converter, Published by the Bureau International des Poids et Mesures. Documents the SI definitions and lists the nautical mile (1,852 m) as a non-SI unit accepted for use with the SI in §2.3.4 (non-SI units accepted for use with the SI units). The exact relationship 1 nautical mile = 1,852 m is cited for navigation, aviation, and marine use.
- NIST Special Publication 811, Guide for the Use of the SI Units (2008 edition, with current online amendments). The US National Institute of Standards and Technology reference for SI usage. Annex B lists 1 international nautical mile = 1,852 m exactly as the conversion factor between the nautical mile and the SI base unit of length.
- IHO Publication S-32, Hydrographic Dictionary, 5th edition (1994, with current online amendments). The International Hydrographic Organization's reference for marine hydrography and navigation. Defines the nautical mile as exactly 1,852 m, the knot as one nautical mile per hour, and lists the conversion factors between nautical and metric units.
- First International Extraordinary Hydrographic Conference, 1929. Adopted the international nautical mile as exactly 1,852 metres for all international marine navigation, resolving earlier national variations (the UK nautical mile of 6,080 ft ≈ 1,853.184 m, the US nautical mile of 1,853.248 m, and the metric nautical mile of 1,852 m exactly).
- 1959 International Yard and Pound Agreement. Signed on 1 July 1959 by the United States, the United Kingdom, Canada, Australia, New Zealand, and South Africa. Fixed the international yard at exactly 0.9144 metres and the international statute mile at exactly 1,609.344 metres, the latter is the basis of the 1 mph = 0.44704 m/s factor used in this page's mph bonus read-out.
- WMO Manual on Codes, Volume I.1 (International Codes, 2011 edition, with current amendments). The World Meteorological Organization's reference for international weather codes, including the units used in METAR and TAF. Wind speed in aviation forecasts is given in knots; the manual lists the knot as the operational unit and cites the ICAO definition.
- IHO Resolution A6.3 (1929), as amended. The original international hydrographic resolution that adopted 1,852 m as the length of the nautical mile. Reaffirmed by IHO Member States in subsequent decades; basis of every modern nautical chart and electronic chart display.
- ICAO Doc 9713, International Civil Aviation Vocabulary. Defines "knot" and "nautical mile" for international aviation documentation and training; references ICAO Annex 5 for the exact values.