programmertote
3 days ago
One thing that I noticed about traffic lights in CA -- there will be like 4-5 cars who are driving on the major road and approaching the traffic light. Then a car arrived from the small road at the intersection. The traffic light will then turn red for cars on the major road, so all 4-5 cars will brake and stop at the light. The small car proceed to turn left into the major road. A few seconds later, the light for the major road turns green again and the 4-5 cars proceed.
I have seen this so often that I sometimes wonder if it'd be more fuel efficient to let the 4-5 cars on the major roadway proceed (the traffic lights have cameras anyway) while letting the one car from the small street wait slightly longer or wait for a fixed amount of time.
I wonder if there's any traffic engineer on HN from California and if so, I'd love to hear an explanation/rationale behind the current approach.
HnUser12
3 days ago
I live in BC near a highway intersection and in my experience they seem to do what you suggest.
I approach from my street and if the highway is empty, almost instant green. Otherwise I have to wait some time until the road clears. During peak hours when the road doesn’t clear, it just seems to go green after a fixed time.
programmertote
2 days ago
I used to live in a south Florida (Miami) suburb and the traffic lights there function like what you suggest too. So after moving back to southern CA, it's something I had to adjust (and the traffic light behavior difference became obvious to me).
jackgavigan
3 days ago
My son and I observed similar behaviour at a puffin crossing on the way to his school, and we’re buildng a model of it using an Arduino Uno with a RCWL-0516.
dreamcompiler
2 days ago
I'm in the US and I just spent 5 minutes trying to figure out why a bird that can fly needed a special road crossing. I mean, a penguin crossing might make sense in a few places (but not Antarctica because there are no cars or streets there). Where do they have puffins that need to walk across a road?
Duh. Cultural differences in English are amusing.
jackgavigan
2 days ago
Did you know we have bat bridges in the UK? https://www.youtube.com/watch?v=tdPZ4z1OS0E
iggldiggl
2 days ago
Historically, the amount of data available to traffic lights controllers was rather rudimentary, basically a simple presence/occupancy detector covering the area immediately upstream of the stop line and/or some point somewhat (a few seconds of driving time) further upstream of the stop line and/or the whole area in-between. The detector could be implemented via an inductive loop buried within the pavement, or it could be a camera, but with the camera still usually working only as a simple presence detector with no advanced detection capabilities where it could actually intelligently "see" individual vehicles.
With such a setup, the traffic lights controller can't actually see that there's only 4-5 cars approaching on the main road – either they're far away enough that they don't even register on the detector for the main road yet (in which case a vehicle waiting on the crossroad will naturally trigger the phase change without delay), or even if they're already near enough to the intersection to trigger the detector, the traffic lights controller can't actually know that it's "only" 4-5 vehicles and its strategy might hence be that if the main road has had more than x seconds of uninterrupted green time, a demand from the side street will be granted immediately, regardless of traffic conditions.
With a state-of-the-art system it'd be different – with more and better sensors the traffic lights controller could actually track individual vehicles (or platoons of vehicles) as they approach the intersection and try making the kinds of trade-off you mention – but somebody needs to pay for that kind of upgrade. (And I suspect we haven't necessarily reached the point where the price premium for that kind of advanced traffic lights controlled compared to classic traffic actuation is negligible enough for it to be the default at least for all new intersections and equipment renewals, either…)