You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- Query the Manhattan Distance between points (https://xlinux.nist.gov/dads/HTML/manhattanDistance.html)
-- The distance between two points measured along axes at right angles. In a plane with p1 at (x1, y1) and p2 at (x2, y2), it is |x1 - x2| + |y1 - y2|.
-- we can ingore abs() if we do max(LAT_N) - min(LAT_N)