ForHosting KIT · Developer Utilities

Equal Time Point Calculator for Flight Planning

The equal time point calculator locates the position between two airfields where continuing to the destination takes exactly as long as returning to the departure airfield.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

Enter the route distance, the expected ground speed while continuing, and the expected ground speed while returning. The result reports the distance from each airfield and the equal travel time in hours and minutes. It is a focused planning calculation for pilots, dispatchers, instructors, and students who already have suitable route and wind-adjusted speed figures.

Understand what the equal time point represents

An equal time point is a position on a route at which two choices have the same travel time: continue to the destination airfield or reverse course and return to the departure airfield. It is sometimes called a critical point, although operating terminology and company procedures can differ. The point is based on time, not simply on halfway distance. When the return ground speed is lower than the continue ground speed, an aircraft must remain closer to the departure airfield for the return and continue times to match. When the return speed is higher, the point moves farther along the route. This calculator treats the route as a single distance and assumes each supplied ground speed remains constant for its respective direction. It reports the position measured from both ends, making the result easy to place on a flight log or route diagram. The calculation does not decide whether either airfield is operationally suitable, and it does not replace fuel, weather, terrain, alternates, or regulatory planning.

Enter route distance and directional ground speeds

Use the distance between the two relevant airfields along the route you intend to evaluate, expressed in nautical miles. Do not substitute an uncorrected straight-line distance when the planned track includes required deviations, airways, or other meaningful routing. Next, provide the ground speed expected while continuing toward the destination and the ground speed expected after turning back toward the departure airfield. Both speeds are entered in knots, so each directly represents nautical miles per hour. Ground speed matters because the aircraft may encounter different wind components in opposite directions even when true airspeed is unchanged. The calculator requires finite values greater than zero and rejects missing, zero, negative, infinite, or nonnumeric inputs rather than producing a misleading result. For a useful operational estimate, derive the two speeds from the same planning assumptions and the most appropriate available wind information. If wind or performance varies materially by route segment, compute separate scenarios or use a more detailed flight-planning method instead of treating one result as universally applicable.

Interpret and use the calculated position

The result gives distance from departure, distance remaining to destination, and the common travel time for either decision at the calculated point. The underlying relationship sets return time equal to continue time: distance already flown divided by return ground speed equals distance remaining divided by continue ground speed. Solving that relationship places the point at total distance multiplied by return speed and divided by the sum of both speeds. The two reported distances therefore add back to the entered route distance, apart from display rounding. Equal time is shown in decimal hours and decimal minutes to support flight-log calculations and downstream software without imposing a clock format. Mark the position against a waypoint, radial, coordinate, or along-track distance using appropriate navigation tools; this calculator does not convert the answer into a geographic coordinate. Recalculate whenever the applicable route, winds, aircraft performance, or chosen airfields change. For real operations, review the result alongside fuel reserves, diversion requirements, forecast uncertainty, airfield availability, and the procedures approved for the flight.

Prepare a two-airfield flight log

Calculate the along-route distance where return and continue travel times become equal, then record it beside the relevant route segment.

Compare wind scenarios

Run forecast ground-speed cases to see how a stronger headwind or tailwind shifts the equal time point along the same route.

Teach diversion planning

Demonstrate why the time-balanced point is not necessarily the geometric midpoint when directional ground speeds differ.

What does the calculation cost?

Each API request costs $0.002. The browser version can run the same deterministic calculation locally.

Is the equal time point always halfway between the airfields?

Only when the continue and return ground speeds are equal. Different directional speeds move the time-balanced point away from the distance midpoint.

Should I enter airspeed or ground speed?

Enter ground speed in knots for each direction. The calculation compares travel time over the route, so wind-adjusted speed over the ground is required.

Does this calculator account for turning time or climb and descent?

No. It uses constant directional ground speeds over a single route distance. Include material operational effects in your planning inputs or use a more detailed method.

Does the result identify a latitude and longitude?

No. It returns along-route distances from the two airfields. Use an appropriate navigation or mapping method to associate that distance with a geographic position.

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/geo/equal-time-point

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/geo/equal-time-point \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"distance_nm":600,"continue_ground_speed_kt":180,"return_ground_speed_kt":140}'
{
  "distance_nm": 600,
  "continue_ground_speed_kt": 180,
  "return_ground_speed_kt": 140
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "geo.equal_time_point",
  "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 →