xrspatial.proximity.manhattan_distance#
- xrspatial.proximity.manhattan_distance(x1: float, x2: float, y1: float, y2: float) float[source]#
Calculates Manhattan distance (sum of distance in x and y directions) between (x1, y1) and (x2, y2).
- Parameters
x1 (float) – x-coordinate of the first point.
x2 (float) – x-coordinate of the second point.
y1 (float) – y-coordinate of the first point.
y2 (float) – y-coordinate of the second point.
- Returns
distance – Manhattan distance between two points.
- Return type
float
References
Examples
>>> from xrspatial import manhattan_distance >>> point_a = (142.32, 23.23) >>> point_b = (312.54, 432.01) >>> # Calculate Manhattan Distance >>> dist = manhattan_distance( ... point_a[0], ... point_b[0], ... point_a[1], ... point_b[1]) >>> print(dist) 579.0