I'm new to python, numpy and Jupyter notebooks.
I have two CSV files containing a route in X,Y coordinates.
For each (X,Y) pair in dataset 1, I want to find the closest point and distance in the second dataset of (X,Y) coordinates. Any assistance would be greatly appreciated.
I can load in the dataset and access the data to plot the two routes, but I'm having difficulty doing this next step.
Route1 = pd.read_csv('C:/Route1.csv', header=None) Route2 = pd.read_csv('c:/Route2.csv', header=None)– Andrew Lindsay Sep 13 '22 at 13:10