The Excavator That Digs to a Line It Cannot See - by Jaimin
Atoms to Algorithms
SubscribeSign in
The Excavator That Digs to a Line It Cannot See<br>Friday, June 26, 2026 · Mobility & Field Robotics
Jaimin<br>Jun 26, 2026
Share
In the last post sprayer had milliseconds to decide and one nozzle to fire. Today the machine stops moving over the ground and starts removing it, and the clock relaxes while the geometry gets harder. An autonomous excavator digging a trench has to place the cutting edge of its bucket on a surface that exists only as a file: a design grade, a sloped plane a foot or two underground that no camera can see, because it is not there yet. Built Robotics quotes trench depths held to within a tenth of a foot, about three centimeters, with no operator in the seat and no survey stakes in the dirt. The thing that used to find that buried line, an experienced operator’s eye, has been replaced by arithmetic.<br>All week we have watched machines meet ground they did not design. A legged robot learned to feel its footing, a wheeled one learned when to stop rolling and climb, a drone paid an energy bill just to hover, a farm sprayer raced each plant through a narrow window. The excavator is the one that answers back. It does not adapt to the ground, it changes the ground to match a number. And to do that without a person watching the bucket, it has to know two things at once to within a few centimeters: where the design surface is, and where its own bucket teeth are. It has to keep knowing both while the soil pushes back. That last part is why digging to a spec turns out to be a harder problem than driving to a destination.<br>How it actually works
Think about what the machine is aiming at. A delivery robot drives to a point on a map, and a meter of slop is fine. An excavator digs to a design surface, a 3D model of the finished site that an engineer drew before anyone broke ground, and the allowed error is a few centimeters. The bucket has to land on that invisible plane on the first pass. Dig too deep and you have to haul in fill and compact it back up, which costs money and time. Dig too shallow and you come back and do it again. So the whole job comes down to one question, asked over and over: where is the bucket tooth right now, compared to the surface it is supposed to cut?<br>Answering it takes a chain of sensors that goes from coarse to fine. First, satellite positioning fixes where the machine is sitting, not to the few meters your phone manages but to a centimeter or two, using a technique called RTK that compares the satellite signal at the machine against a fixed station nearby. Second, a motion sensor on the body tracks how the machine is tilted and turned, so when it rocks on its tracks or sits on a slope, the system knows. Third, angle sensors on each joint of the arm, the boom, the stick, and the bucket, measure exactly how the arm is folded.
Now the geometry does the rest. If you know where the machine’s shoulder is and the angle of every joint below it, you can compute where the fingertip is. That is all the machine is doing: starting from a satellite-located point on its body and walking down the arm to figure out where the bucket teeth are, in the same coordinate system as the design. Subtract one from the other and you get a simple, useful number, how far the tooth is above or below grade. Computed many times a second, that number is the feedback loop a human used to close by eye.
Here is where two different products split apart. One is machine guidance: an in-cab screen, sold by companies like Trimble, Topcon, Leica, and CHCNAV, that shows a human operator exactly where the bucket sits against the model. With it, an average operator can hold grade like a veteran. The other is full autonomy, with nobody in the seat, which is what Built Robotics and Bedrock are building. Autonomy has to also do the part the human’s hands did, and that part fights back. A wheel rolling to a point is not resisted by the point. A bucket cutting earth meets soil that is hard in one spot and soft a meter away, and that resistance bends the arm and skips the tooth off line. The controller has to manage both the shape of the dig and the force of it, and the force is the part nobody can capture in a tidy formula.<br>The Main Brain: Inside the Cab
There is a ruggedized, high-performance computer (often integrated directly into the touchscreen display inside the cab) that acts as the primary processor.<br>What it does: This on-board computer takes the raw GPS/RTK coordinates, the chassis tilt data, and the arm joint angles, and runs the trigonometry calculations (sin and cos vectors) many times per second (usually between 20Hz to 100Hz, or 20 to 100 times a second).
The Design File: The 3D blueprint or “design grade” file (usually a CAD surface or digital terrain model) is pre-loaded directly onto this in-cab computer via a USB drive or synced over a cellular connection beforehand. Because the design file lives...