Imagine you're painting a room, but the room has no walls — just open space with furniture scattered around. You can't just go back and forth in neat rows because every time you hit a chair leg you have to reroute, and if your sense of where you've already painted drifts even slightly, you'll either repaint the same spot or miss a strip entirely. That's the core problem of autonomous outdoor coverage: the GPS drifts, the obstacles move, and the robot has to keep sweeping until the whole area is done — then find its way home to charge. The claim here is integration, not invention. Gargani, Frosi, and Matteucci assemble a ROS 2 stack that solves outdoor coverage by combining three things that each work individually but rarely work together: dual-antenna RTK-GNSS fused in an Extended Kalman Filter for centimeter-accurate heading and position; a modified boustrophedon (back-and-forth) coverage planner with three controller-aware refinements for feasible turns; and a Behavior Tree mission manager that handles multi-goal sequencing, layered recovery from failures, cost-aware replanning, and autonomous return-to-charge docking. The ladder question is tricky because this is a systems paper, not an algorithmic one. The coverage planner builds on an existing mature planner (likely a variant of the Fields2Cover or similar boustrophedon decomposition), and Nav2 is the standard ROS 2 navigation stack. The novelty is in the three refinements — widened U-turns for kinematic feasibility, obstacle-aware path adjustments, and headland management — not in the planner architecture itself. The 93.1–96.1% coverage numbers are strong for real-world outdoor trials, but the paper doesn't name a specific competing full-stack system and compare head-to-head. That's the gap. Architecturally, this sits in the behavior-tree + costmap family of robot autonomy stacks, leaning on RTK-GNSS hardware for localization rather than SLAM or visual odometry. The dual-antenna setup is the load-bearing hardware choice: it gives heading from the antenna baseline rather than from motion, which means the robot knows which way it's facing even when stationary. The EKF fusion is standard but the dual-antenna heading input is the differentiator for open-field scenarios where magnetic compass and visual features both fail. Integrity is mixed. The authors validate in both simulation (Gazebo) and real-world trials across multiple outdoor areas with varying geometries and obstacle densities — that's better than simulation-only by a wide margin. But the paper doesn't report on systematic failure modes, doesn't benchmark against another full-stack system, and the coverage percentage range (93.1–96.1%) is reported without clear statistical rigor — how many runs, what variance, what caused the 4–7% miss. The real-world trials are the strongest card, but without controlled comparison the numbers are hard to calibrate. The milestone that matters here isn't a single number — it's the threshold where autonomous outdoor coverage robots can be deployed commercially with minimal human oversight. The paper demonstrates the stack works; the next number is something like 99%+ coverage with zero human interventions across 100+ consecutive missions. That's the bar for a commercial lawn-mowing or agricultural surveying product. The gap is probably 2–3 years of reliability engineering, not fundamental research. The obvious experiment the authors didn't run: long-duration autonomy testing over days or weeks of continuous operation, with metrics on how often the system requires human intervention, how the RTK fix degrades over time, and how the docking reliability holds up. My read: they ran out of time and robot-hours, not that the results were bad. This is a PhD-stage system demo, not a product reliability test, and the authors are honest about the scope.