ForHosting KIT · Developer Utilities

Cold Temperature Altimeter Error and Altitude Correction Calculator

Cold air can make an aircraft lower than its indicated altitude because pressure levels contract toward the surface as temperature falls below the standard atmosphere.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

This calculator estimates that effect from the indicated altitude, aerodrome elevation, and outside air temperature at the altimeter-setting source. It returns the signed altimeter error, estimated true altitude, and the positive correction to add when conditions are colder than ISA. The result supports approach planning and cross-checking, but it does not replace an approved cold-temperature correction table, procedure note, operator manual, or air traffic control requirement.

Enter the altitude and reference elevation consistently

Use the published uncorrected indicated altitude for the approach fix or terrain-clearance constraint as indicated_altitude_ft. Enter the elevation of the aerodrome or the location that supplies the altimeter setting as aerodrome_elevation_ft. Both values must use feet above mean sea level, and the indicated altitude must not be below the reference elevation. The calculator first subtracts the elevation to obtain height above the altimeter-setting source, because cold-temperature error grows with vertical separation rather than with altitude alone. Finally, enter the outside air temperature reported at that source in degrees Celsius. Do not enter a forecast temperature aloft or a cockpit total-air-temperature indication. Keeping the altitude datum, temperature location, and altimeter-setting source aligned is essential: mixing an airport elevation with a temperature from a distant station can produce a plausible-looking correction that does not represent the pressure column affecting the approach. For operational use, always select the values and rounding method required by the controlling procedure or authority.

Understand the sign and the correction

The calculation derives ISA temperature at the aerodrome elevation using the standard tropospheric lapse rate. It then compares actual temperature in kelvins with that ISA value and scales the indicated height above the aerodrome. In colder-than-ISA conditions, the estimated true height is smaller than the indicated height: the aircraft is lower than the altimeter suggests. The returned altimeter_error_ft is signed as true altitude minus indicated altitude, so a negative number means true altitude is lower. The cold_correction_to_add_ft field expresses the same cold effect as a positive amount suitable for adding to an indicated constraint. corrected_indicated_altitude_ft is the original indicated altitude plus that amount. In warmer conditions, estimated true altitude can be higher and the signed error becomes positive, but the cold correction is zero because this tool never recommends subtracting altitude for terrain clearance. Values are rounded for readable output only after the full-precision calculation, keeping all result fields internally consistent.

Use the estimate as a planning cross-check

Cold-temperature correction is a safety-critical operational subject, and published methods may use conservative tables, segmented corrections, temperature applicability limits, or special rules for minimum vectoring altitudes and missed approaches. This calculator provides a transparent analytic estimate, not an authorization to alter a clearance. Compare its result with the applicable aviation authority material, chart annotations, operator procedures, and any correction supplied by avionics. Apply corrections only to the fixes and altitude types covered by those instructions, and communicate corrected altitudes to air traffic control whenever the governing rules require it. Remember that obstacle clearance depends on more than temperature: pressure-setting errors, terrain data, navigation performance, wind, procedure design, and local restrictions remain relevant. The estimate is most useful for training, preflight planning, independent arithmetic checks, and understanding why the correction increases with colder temperature or greater height above the aerodrome. If the published table and this estimate differ, use the approved published value and its prescribed rounding direction.

Cross-check an approach minimum

Estimate how much altitude may need to be added to a published fix altitude during a cold-weather approach briefing.

Explain cold-altimetry effects

Show students how temperature deviation and height above the aerodrome change the difference between indicated and true altitude.

Review procedure calculations

Compare a worksheet or software result with an independent deterministic estimate before consulting the approved table.

What does a negative altimeter error mean?

It means the estimated true altitude is below the indicated altitude. This is the hazardous direction in cold conditions.

Which temperature should I enter?

Use outside air temperature at the aerodrome or altimeter-setting source, unless the controlling procedure explicitly specifies another source.

Why is aerodrome elevation required?

Temperature error is applied to height above the setting source. Two fixes at the same indicated altitude can therefore need different corrections when their reference elevations differ.

Does the calculator subtract altitude in warm weather?

No. It reports the positive signed true-altitude error, but cold_correction_to_add_ft remains zero because terrain-clearance planning should not use this tool to reduce a published altitude.

Can this replace an official correction table?

No. Use approved charts, authority guidance, operator procedures, and required air traffic control coordination for operational decisions.

What does an API request cost?

The base price is $0.002 per request. The same deterministic calculation can run in the browser.

Everything on this page is available programmatically. This section is for teams who want to wire it into their own systems; everyone else can just use the tool above.

POSThttps://api.kit.forhosting.com/travel/altimeter-cold-error

Prefer to automate it? One authenticated POST creates the task; the result comes back by webhook or a signed link. The same capability also runs here on the web, by email and from Telegram — and soon from our app too.

curl -X POST https://api.kit.forhosting.com/travel/altimeter-cold-error \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"indicated_altitude_ft":3000,"aerodrome_elevation_ft":1000,"oat_c":-20}'
{
  "indicated_altitude_ft": 3000,
  "aerodrome_elevation_ft": 1000,
  "oat_c": -20
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "travel.altimeter_cold_error",
  "status": "queued",
  "_links": {
    "result": "/tasks/tsk_…/result"
  }
}

The API is asynchronous: the call returns a task_id immediately and the result arrives by webhook. Polling is capped at 1 req/s per task.

Per request$0.002

Published price — no tokens, no invented credits. A failed task is never charged.

HTTPCodeMeaning
401unauthorizedMissing or invalid API key.
402insufficient_balanceYour balance doesn't cover the task price.
404unknown_typeThat task type doesn't exist.
429rate_limitedToo many requests. Use the webhook instead of polling.

Read the full KIT documentation →