Direct answer: multiply the imperial length by the exact metric factor

To convert imperial or United States customary units of length into metric, multiply the numeric length by the exact SI conversion factor for the named unit. Since the international yard agreement of 1 July 1959, 1 yard has been exactly 0.9144 metre, so 1 foot is exactly 0.3048 metre and 1 inch is exactly 25.4 millimetres. For example, 12 feet becomes 12 × 0.3048 = 3.6576 metres, while 8 feet 6 inches can be converted as (8 × 12 + 6) inches, or 102 inches × 25.4 = 2,590.8 millimetres.

Also worth reading: How do I batch convert DWG units using the Core Console without opening each file? · How do BIM compliance automation tools convert architectural drawings into code-compliant data, and what is the realistic workflow for implementation? · What is automated BIM model reconstruction and how does it convert 2D drawings into 3D models?

The word imperial needs one qualification. The United States, United Kingdom, and architectural drawings may use related but different units, especially beyond the yard: a US survey foot was defined as exactly 1200/3937 metre, or about 0.3048006096 metre, and differs from the international foot by about 2 parts per million. A UK imperial mile is 1,760 yards, while a US statute mile is 5,280 international feet; both equal 1,609.344 metres, but the underlying conventions are not identical. For most building dimensions the international factors are correct, yet a land survey or an old public-works drawing may require a stated survey convention.

Use the unit symbol as well as the number. SI style writes a space between the value and symbol, such as 3.66 m, uses a decimal point rather than a decimal comma in English technical documents, and normally uses a thin space for four or more digits in a grouped number. Do not add a period after m, mm, or ft unless the surrounding sentence requires punctuation, and write square metres as m² rather than sq m when area is involved.

Why the exact factors work

The modern conversion is exact because the yard was legally tied to the metre rather than approximated from a physical bar. The 1959 agreement made the international yard exactly 0.9144 metre, which makes the derived foot and inch exact decimal relationships: 1 ft = 0.3048 m and 1 in = 25.4 mm. This is why a calculator result such as 9.144 m for 10 yards is not a rounded estimate; it is the defined conversion. The metric side uses the SI base unit metre, with prefixes such as milli-, centi-, and kilo- indicating powers of ten.

Imperial-style systems are not fully decimal, so the arithmetic is less transparent than changing centimetres to metres. One foot contains 12 inches, one yard contains 3 feet, and one mile contains 1,760 yards in the British imperial system. The SI system is decimal by design, which makes scaling a length from millimetres to metres a matter of moving the decimal point, but it does not remove the need to convert the original unit correctly. A mixed measurement such as 5 ft 7 in must first be expressed in one imperial unit before applying one factor.

The distinction between an exact conversion and a practical drawing dimension matters. A dimension of 3.6576 m may be mathematically exact, but a construction drawing may show 3.66 m, 3,660 mm, or a nearby preferred metric module depending on the project standard. Converting a dimension does not automatically convert tolerances, product sizes, sheet formats, or the designer’s intended precision. Preserve the source value and its stated accuracy before deciding how many metric digits to display.

Practical step-by-step method for a single dimension

Start by identifying the exact unit named on the source. An architectural note reading 12'-6" means 12 feet and 6 inches, not 12.6 feet; write it as 12 ft 6 in or 150 in before converting. If the drawing uses a decimal foot such as 12.50 ft, do not reinterpret it as 12 ft 5 in; multiply 12.50 by 0.3048 to obtain 3.81 m. If the source says 2 yd 1 ft, convert the yard and foot separately or first make the total 7 ft, then multiply by 0.3048.

Next choose the most useful metric unit for the task. Millimetres are common on detailed architectural drawings because they avoid small decimals, while metres suit room sizes, elevations, and site dimensions. For 8 ft 6 in, the direct result is 2.5908 m or 2,590.8 mm; a drawing may round to 2,591 mm if the source precision supports that resolution. Keep an unrounded internal value whenever possible, then round only the displayed result.

Finally record the convention used, especially for surveys and legacy documents. Write international foot, US survey foot, or imperial yard in the conversion note, and retain the original dimension beside the converted one during review. A simple audit trail prevents a 2 ppm difference from becoming a large accumulated error on a long alignment. For a 10,000 ft survey line, the difference between an international foot and a US survey foot is about 0.0061 ft, or roughly 1.9 mm, which can matter in boundary or infrastructure work.

Conversion factors and worked examples

Imperial or US customary unitExact metric equivalentPractical use
1 inch (in)25.4 mm = 0.0254 mJoinery, openings, small details
1 foot (international ft)0.3048 m = 304.8 mmRoom dimensions and elevations
1 yard (yd)0.9144 mYards, fabric, and some site measurements
1 mile (statute)1,609.344 mRoads and long distances
1 US survey foot1200/3937 m ≈ 0.3048006096 mOlder US survey and public-works records
For a room marked 18 ft by 12 ft, multiply each side independently: 18 × 0.3048 = 5.4864 m and 12 × 0.3048 = 3.6576 m. Reporting both sides as 5.49 m by 3.66 m is reasonable for a typical drawing, but 5.4864 m by 3.6576 m preserves the exact conversion for checking. For a door marked 3 ft 0 in, the result is 0.9144 m or 914.4 mm; do not silently replace it with 900 mm unless the design intent and product availability support that change.

A mixed example shows why the intermediate step helps. A ceiling height of 9 ft 4 1/2 in equals 9 × 12 + 4.5 = 112.5 inches. Multiplying 112.5 by 25.4 gives 2,857.5 mm, or 2.8575 m. If the drawing’s smallest readable increment is 1/8 inch, the converted value should not imply a precision finer than the source can justify.

Manual calculation, spreadsheet, and automated drawing conversion

A hand calculation is suitable for one or two dimensions, provided the operator writes down the unit and factor. A calculator or spreadsheet is faster for a schedule of doors, windows, or levels, but the formula must match the source format. In a spreadsheet, a decimal-foot value in cell A2 can use =A2*0.3048, while a text value such as 12' 6" should be parsed into feet and inches before multiplication. Treating the text as a number without parsing produces a wrong result.

Automated conversion is more appropriate when dimensions occur throughout a drawing set or when one source feeds schedules, quantities, and code-related outputs. The difficult part is not the multiplication; it is recognizing whether a symbol is a dimension, a scale note, a product designation, or a tolerance. A reliable workflow keeps the original geometry, maps units at the object level, and flags ambiguous or mixed-unit annotations for review. It should also distinguish a scaled measurement taken from a raster image from a dimension explicitly written by the designer.

The comparison below separates the main options. No single option is best for every project: a one-off renovation may need only a calculator, while a large drawing set benefits from automation and a human exception queue. In all cases, the conversion rule should be visible and testable rather than hidden inside an undocumented macro.

FeatureManual or calculatorSpreadsheet or scriptAutomated drawing conversion
Best useOne or two dimensionsRepeated tables and simple schedulesLarge drawing sets and linked annotations
Main riskTranscription or mixed-unit errorFormula and text-parsing errorObject recognition and scale ambiguity
AuditabilityHigh if work is written downHigh with visible formulasHigh when source, rule, and result are retained
Approximate setup time1–5 minutes per item15–60 minutes for a reusable sheet30 minutes to several hours for setup and QA, depending on drawing quality
## Common mistakes and how to avoid them

The most common error is treating feet and inches as decimal feet. The notation 6'-4" means 6 feet 4 inches, or 6.3333 ft, not 6.4 ft; using 6.4 would overstate the length by 0.0667 ft, about 20.3 mm. The reverse problem occurs when 6.4 ft is read as 6 ft 4 in instead of 6 ft 4.8 in. Always normalize the source into either total inches or decimal feet before applying a factor.

A second error is rounding too early. If 13 ft 7 3/8 in is rounded to 13.6 ft before conversion, the result is 4.14528 m; converting the exact mixed value gives 4.150045 m, a difference of about 4.8 mm. That difference may be harmless on a concept sketch but unacceptable around a manufactured component. Keep the exact numerator and denominator for fractions, and round only after all calculations are complete.

A third error is confusing length, area, and volume. A linear factor cannot convert square feet to square metres or cubic feet to cubic metres: 1 ft² = 0.09290304 m² and 1 ft³ = 0.028316846592 m³. Similarly, a scale bar marked in feet is not itself a length to multiply unless the drawing scale and measurement method are known. Verify whether the source value is a real-world dimension, a plotted distance, or a nominal product size.

Unit labels also deserve attention. The symbol in can mean inch, while m means metre; a missing space or a font substitution can turn 25 m into an apparently plausible 25m label. Use a project-wide unit legend, keep the original annotation during review, and mark survey conversions separately. These controls cost little but prevent errors that arithmetic alone cannot detect.

Comparison of metric targets and alternatives

The best metric target depends on the drawing’s purpose, not on a universal rule. Millimetres give fine resolution and are familiar on many construction drawings, but they create long numbers such as 4,267 mm for a 14 ft dimension. Metres produce shorter elevations and site dimensions, but values such as 0.3048 m can be awkward in schedules. Centimetres are convenient for informal communication, yet they are less common than millimetres for detailed architectural production in many metric workflows.

A direct conversion should be separated from a metric redesign. If a 4 ft module is converted, the exact length is 1.2192 m, but a designer may choose 1.20 m or 1.22 m to suit a product grid. That choice changes the building dimension and should be approved as a design decision, not presented as a unit conversion. Preferred metric modules and manufacturer sizes vary by country and product, so a converted drawing should state whether dimensions are exact conversions or coordinated metric dimensions.

There is also a practical alternative to converting every annotation: retain dual dimensions during a transition. A drawing can show 3.6576 m (12 ft) or a rounded pair such as 3.66 m (12 ft), but dual labels increase clutter and create a risk that one value is edited without the other. Use dual dimensions only when a client, authority, or trade genuinely needs both systems, and define which value governs if they disagree after rounding. For archival work, retaining the original unit is often safer than replacing it.

When to convert and what it costs

Convert before quantity takeoffs, code checks, fabrication, procurement, and coordination with metric consultants or contractors. For a new project, select the unit system at the template stage so levels, grids, sheet borders, and schedules are consistent from the first issue. For an existing drawing, convert after confirming the drawing scale, title-block units, revision status, and whether dimensions are authoritative; a scanned image may not contain reliable machine-readable geometry.

The direct arithmetic has no material cost: a calculator is free, and spreadsheet software may already be available. A reusable conversion sheet can be prepared in roughly 15 to 60 minutes, while a script or drawing-processing setup may take 30 minutes to several hours, depending on file quality, layers, text recognition, and the number of exceptions. Professional review time is the main expense, and a small pilot of 10 to 20 representative dimensions is usually cheaper than correcting a full set after issue.

Automated architectural drawing conversion can reduce repetitive transcription when drawings contain many dimensions, but it is not a substitute for checking intent. Pricing varies with file count, raster versus vector input, number of views, required tolerances, and whether the output must feed a code or estimating workflow. Ask for a sample conversion, a clear per-sheet or per-project quote, and a report showing every changed unit. The useful measure of value is not the speed of multiplication; it is the reduction in ambiguous dimensions, missed conversions, and downstream rework.

Rounding, precision, and final verification

A defensible result preserves the source precision rather than displaying every calculator digit. If the original dimension is given to the nearest inch, its linear uncertainty is about ±0.5 in, or ±12.7 mm, so reporting a converted value to 0.1 mm falsely suggests greater accuracy. If the source is to the nearest 1/16 inch, the uncertainty is ±1/32 inch, about ±0.794 mm, and a millimetre display may still be too fine for some uses. State the rounding rule in the drawing notes when the distinction affects construction.

Use a two-stage check: first verify a known reference such as 1 ft = 304.8 mm, then compare several converted dimensions with the original drawing and any written schedule. Check totals as well as individual values; converting a 20 ft overall dimension independently from ten 2 ft components can expose a rounding mismatch. For long site alignments, calculate the accumulated difference between international and survey feet before selecting the factor. For ordinary architectural lengths, the international foot is normally the intended unit unless the document says otherwise.

The final output should include the converted number, unit symbol, source convention, date of conversion, and reviewer or process identifier. A note such as “Dimensions converted from international feet and inches using 1 ft = 0.3048 m; original values retained in revision record” is more useful than an unexplained metric number. This small record makes later coordination, code review, and automated extraction easier to audit. It also prevents a correct calculation from becoming a misleading drawing instruction through loss of context.