Distance Between Two Points
—
Calculate the straight-line distance between two coordinate points.
This is the Pythagorean theorem applied to coordinate geometry — the same math whether you're measuring a map grid or a graph.
distance = √((x2−x1)² + (y2−y1)²)