time zones calculators

Shift Work Schedule Calculator

Calculate the midpoint of a worker's shift in company HQ time, so remote and global teams can align check-ins and reporting windows. Helpful for managers scheduling across multiple time zones.

About this calculator

When a worker's shift is in a different time zone from the company headquarters, managers need to know exactly when that shift overlaps with HQ business hours. This calculator finds the shift midpoint expressed in HQ local time using: HQ Midpoint = ((shiftStartHour + shiftDuration/2 + (companyTimezone − workerTimezone)) % 24 + 24) % 24. Adding shiftDuration/2 to the start hour gives the halfway point of the shift in the worker's local time. Adding (companyTimezone − workerTimezone) converts that time to HQ local time. The double modulo pattern ((x % 24 + 24) % 24) ensures the result is always a positive hour between 0 and 23, regardless of the direction of the time zone difference.

How to use

A worker in Sydney (UTC+10) starts their shift at 22:00 and works an 8-hour shift. The company HQ is in Berlin (UTC+1). Enter shiftStartHour = 22, shiftDuration = 8, workerTimezone = 10, companyTimezone = 1. Midpoint in worker's time = 22 + 8/2 = 26, which wraps to 02:00 Sydney time. HQ conversion: ((26 + (1 − 10)) % 24 + 24) % 24 = ((26 − 9) % 24 + 24) % 24 = (17 % 24 + 24) % 24 = 17. The shift midpoint falls at 17:00 Berlin time — right at the end of the HQ business day, making it a viable window for a handover call.

Frequently asked questions

How do I schedule shift handovers for a team working across multiple time zones?

The shift midpoint in HQ time is a practical anchor for handover calls because it maximises the chances that the outgoing worker is alert and the incoming shift has not yet started. Use this calculator for each remote worker to map their shift midpoints onto HQ time, then look for clusters where several midpoints fall within the same 1–2 hour HQ window. Tools like shared team calendars that display multiple time zones can complement this calculation. Where no overlap exists, consider a 30-minute shift overlap period to allow asynchronous handover documentation.

What are the health risks of shift work across irregular time zones and how can schedules minimise them?

Rotating or irregular shift schedules that cross multiple time zones disrupt the circadian rhythm similarly to chronic jet lag, increasing risks of sleep disorders, cardiovascular disease, metabolic syndrome, and reduced cognitive performance. Fixed shift windows — working the same hours every day relative to local time — are considerably healthier than rotating patterns. Schedules should where possible preserve at least a 11-hour rest gap between shifts and avoid frequent switches between day and night work. This calculator helps identify when a shift's midpoint lands during socially or biologically difficult hours, prompting schedule adjustments.

Why does the shift midpoint matter more than the shift start time for cross-timezone coordination?

The shift start time is often outside HQ business hours entirely — particularly for overnight workers — making it useless as a coordination anchor. The midpoint, by contrast, falls at the most productive and attentive point of the shift, when the worker is fully alert and still has enough remaining time to act on any decisions. For global teams, knowing the HQ-equivalent of each worker's shift midpoint allows managers to schedule briefings, approvals, or collaborative windows during genuinely optimal hours rather than relying on end-of-shift or start-of-shift availability.