dist_max.Rd
Find maximum distance between each starting point in x and possible end points, y.
dist_max(x_df, y_df, x_id = "id", y_id = "id", x_lon_col = "lon",
x_lat_col = "lat", y_lon_col = "lon", y_lat_col = "lat",
dist_function = "Haversine")
DataFrame with starting coordinates
DataFrame with ending coordinates
String name of unique identifer column in x_df
String name of unique identifer column in y_df
String name of column in x_df with longitude values
String name of column in x_df with latitude values
String name of column in y_df with longitude values
String name of column in y_df with latitude values
String name of distance function: "Haversine" (default) or "Vincenty"
DataFrame with id of farthest point and distance in meters