Site a UK apiary next to a shared boundary: set the barrier height, the distance to the fence line, whether a warning sign is posted, and how much you told the neighbours beforehand — and watch complaint and liability risk respond.
How it works ▾
A departing bee climbs at roughly 20° once it clears the barrier in front of the hive. Height at the boundary combines the forced climb over the barrier with the remaining distance to the fence line:
h(boundary) = max(barrierH, 0.3+tan20°·dBarrier)
+ tan20°·(dist−dBarrier)
The flight path is judged "clear" once it passes above head height (2 m) at the boundary — that is the altitude at which low, eye-level encounters with a passer-by stop happening:
clears = h(boundary) ≥ 2.0 m
Liability risk falls when the flight path clears head height, a sign is posted (demonstrating reasonable care), and neighbours were told in advance:
liability = clamp(70 − 30·clears − 20·sign − 0.2·goodwill, 0, 100)
Complaint risk is driven mainly by goodwill — the single most effective lever per the article — plus the physical exposure of passers-by to a low flight path:
complaint = clamp(80 − 0.55·goodwill − 25·clears − 1.5·(dist−2), 0, 100)
- Distance — more room between hives and the fence gives climbing bees more time to gain height.
- Barrier — ~1.8–2 m of fence or hedge close to the hive lifts the flight path early.
- Sign — costs nothing and is evidence reasonable care was taken.
- Outreach — a doorstep conversation before the first hive arrives is the biggest single lever on complaint risk.