Open suryagutta opened 3 years ago
It takes latitude, longitude, and dataset name. It should return the nearest available image within that dataset.
@suryatechie I think we can just use euclidean distance to find the closest geo coordinate.
source (x1, y1), target (x2, y2) dist = sqrt ( (x2 - x1)^2 + (y2 - y1)^2 )
@taeil . Thank you. Will look into it.
It takes latitude, longitude, and dataset name. It should return the nearest available image within that dataset.