Calculateus

Flight Arrival Time Calculator

Calculate a flight's local arrival time given departure time, flight duration, and the time zone difference.

Result

Local Arrival Time
16:30
Day Offset
Same day

About the Flight Arrival Time

The Flight Arrival Time Calculator works out the local clock time you'll land at your destination, based on when you depart, how long the flight lasts, and the time zone difference between departure and arrival. It's built for travelers who want to know their actual arrival time on the ground, which can look very different from departure time plus flight duration once time zones are factored in.

How It Works

You enter the departure hour and minute in 24-hour format, the flight duration in hours, and the destination's time zone offset relative to departure, negative if the destination is behind and positive if ahead. The calculator adds the flight duration and the time zone offset to the departure time, all converted to minutes, then converts that total back into a clock time and works out whether the arrival lands on the same calendar day, a day later, or even a day earlier.

Total arrival minutes = (departure hour x 60 + departure minute) + (flight hours x 60) + (time zone offset hours x 60). Day offset = floor(total arrival minutes / 1440). Arrival time of day = ((total arrival minutes mod 1440) + 1440) mod 1440, then converted back into hours and minutes.

Formula & Methodology

Working this by hand starts with converting the departure time into total minutes since midnight, then adding both the flight duration and the time zone shift, also converted to minutes, to get a running total. Dividing that total by 1440, the number of minutes in a day, and taking the whole number gives how many days ahead or behind the arrival lands, while the remainder, adjusted to stay positive, converts back into the arrival's local hour and minute.

Examples

Destination behind departure

Departing at 14:30, flying 5 hours, to a destination 3 hours behind the departure time zone, lands at a local arrival time of 16:30 the same day.

Overnight flight to a destination ahead

Departing at 22:00, flying 10 hours, to a destination 2 hours ahead of the departure time zone, lands at a local arrival time of 10:00, one day later.

Advantages

  • Combines flight duration and time zone shift into a single calculation, avoiding the mental math errors that come from working through each step separately.
  • Explicitly reports the day offset, so travelers immediately know if their flight lands the same day, the next day, or even the day before.
  • Works with fractional flight durations and half-hour time zone offsets, covering time zones that aren't whole-hour offsets from each other.

Common Mistakes

  • Flipping the sign convention on the time zone offset, entering a positive number for a destination that's actually behind the departure time zone or vice versa.
  • Treating the result as total travel time rather than local clock time, when a flight can land at a clock time earlier than departure despite hours having passed in the air.
  • Forgetting that this calculates flight time only, not additional time spent on layovers, boarding, or ground transportation before or after the flight.

Edge Cases to Watch For

  • A negative time zone offset can push the arrival minutes below the departure day's start, which the calculator handles by wrapping the remainder back into a positive 0-1439 minute range rather than showing a negative time.
  • Flying west across enough time zones can make the local arrival time show as earlier than the departure time on the clock, or even land a day earlier, which is correct time zone math rather than an error.
  • The calculator does not account for daylight saving time changes that might occur during the flight if travel dates cross a DST transition.
  • The time zone offset must be entered manually as the exact hour difference between departure and destination; the calculator doesn't look up named time zones or airports on its own.

Common Use Cases

  • Travelers coordinating airport pickups or onward transportation that depend on knowing the exact local arrival time.
  • Travel planners or itinerary builders cross-checking a flight's published arrival time against its departure time and duration.
  • People scheduling calls, meetings, or check-ins around a flight who need to know what time it will be at both ends of the trip.
Written & fact-checked by the Calculateus TeamLast updated August 5, 2026How we verify our formulas

Frequently asked questions

Why does the destination time zone offset matter for arrival time, separate from flight duration?

Flight duration alone tells you how much time passes in transit, but your watch's local time changes when you cross time zones, independent of how long you were actually flying - a 5-hour flight crossing three time zones westward can land at a local clock time only 2 hours after departure, even though 5 real hours passed.

Conclusion

Because time zone shifts and flight duration interact in ways that are easy to miscalculate mentally, this tool separates the two effects clearly enough to double check any itinerary. It's a straightforward local-time conversion, not a live flight tracker, so it depends entirely on the schedule details entered.