Imagine you're driving a car that can also fly — like a sci-fi commuter pod. The hard part isn't flying or driving separately; it's the moment you need to decide: do I take off or stay on the road? Now imagine making that decision with nothing but a single laser rangefinder and your speedometer. That's the core mechanism of this paper: a learned decision boundary for when to switch locomotion modes, using minimal sensing. The committed claim: a reinforcement learning framework for terrestrial-aerial bimodal vehicles (TABVs) that solves two problems simultaneously — autonomous air-ground mode switching using only single-point time-of-flight (ToF) measurements, and robust ground trajectory tracking across varied terrains. The mode selector uses historical ToF readings plus future reference trajectory information to decide when to fly and when to roll. The ground controller uses proprioceptive observations combined with future reference data to anticipate trajectory changes. Both are trained in simulation with domain randomization and transferred to real hardware. The ladder here is instructive. The learned mode selector outperforms a hand-tuned rule-based selector specifically at challenging transition points — the moments where heuristic thresholds fail because terrain geometry doesn't fit neat categories. For ground tracking, the RL policy beats PID across all tested conditions in position RMSE and maintains tracking where Nonlinear Model Predictive Control (NMPC) fails entirely. The headline number is a 101-meter air-ground trajectory with 0.08m position RMSE through multiple autonomous mode transitions. PID and NMPC are the named baselines, both well-understood classical controllers — this isn't a straw-man comparison. Architecturally, this sits in the sim-to-real reinforcement learning family, specifically policy learning with domain randomization for zero-shot transfer. The mode selector is a classification network consuming temporal sequences of ToF and state data. The ground controller is a standard RL policy (proprioceptive input, action output) with multi-terrain training. The key structural bet is that a single ToF point — not a depth camera, not a LiDAR scan — contains enough temporal signal to infer terrain transitions when accumulated over time. That's a hardware-minimalism move that matters for weight-constrained platforms. The integrity picture is mixed but honest. The system is validated in both simulation and real-world hardware experiments, which is the gold standard for robotics — you can't fake a drone rolling across gravel and then taking off. The comparison against PID and NMPC is fair; these are the controllers people actually deploy. However, the terrain diversity in real-world tests likely doesn't span the full distribution seen in sim training, and the 101m trajectory, while impressive as a demonstration, is a single run metric. There's no statistical reporting of variance across multiple runs or failure-mode analysis. The milestone to watch is scaling this to longer missions in unstructured environments — think 1km+ trajectories with dynamic obstacles and degraded GPS. The 101m/0.08m RMSE number is the current anchor. The next meaningful threshold is probably sustained autonomous operation over 500m+ with obstacle-triggered mode switches and sub-0.1m tracking error, which would make this deployable for inspection or delivery tasks. That's likely 2-3 years out, depending on onboard compute and sensor integration. The experiment the authors didn't run — and almost certainly want to — is multi-obstacle dynamic environments with moving hazards. The current work demonstrates terrain-based switching (flat ground vs. obstacles requiring flight), but the ToF-based selector hasn't been tested against scenarios where the right answer changes mid-approach (e.g., a vehicle appearing on the ground path). My read: they're saving this for the next paper, since the temporal ToF framework naturally extends to dynamic obstacles but requires significantly more complex simulation environments and real-world test infrastructure.