I am trying to obtain a users location i.e,. lat long values and compare it with a set of coordinates that I have in a CSV file.
My csv file looks like this
Lat Long NAME
36.413 -97.698 p
36.146 -97.289 q
36.348 -97.157 r
36.106 -97.082 s
If the users location is 36.412954 , -97.598884
, is there a way to obtain the NAME by comparing the lat long values in the CSV file even though they are not exactly same as the users location?
It should return the coordinate pair with Name 'p'