Created
December 9, 2018 08:17
-
-
Save ngshaohui/2e55d860e9fa03d01a38d7ad84290520 to your computer and use it in GitHub Desktop.
kd tree for BusArrivalBot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Helper function for the getNearest function | |
#isOdd should start as true (counting first level as 1) | |
#curNode starts from root | |
#searches for nearest stop to query that is not already in the blacklist | |
def getNearestH(self, curNode, isOdd, queryPoint, champion, blacklist): | |
if curNode == None: #base case | |
return champion | |
else: #get distance of queryPoint to current stop | |
stopLocation = (curNode.data["Latitude"], curNode.data["Longitude"]) | |
curDist = vincenty(queryPoint["Coordinates"], stopLocation).meters | |
#print(curNode.data) | |
#update champion | |
if curDist < champion["Distance"] and self.notPresent(blacklist, curNode.data): | |
champion["Distance"] = curDist | |
champion["Object"] = curNode.data | |
#check which plane to compare the point and traverse roots of current node | |
if isOdd: #compare longitude | |
#check if hypersphere intersects axis of current node | |
borderCoord = (queryPoint["Latitude"], curNode.data["Longitude"]) | |
borderDist = vincenty(queryPoint["Coordinates"], borderCoord).meters | |
if queryPoint["Longitude"] < curNode.data["Longitude"]: | |
#go left if queryPoint is left of node | |
champion = self.getNearestH(curNode.left, False, queryPoint, champion, blacklist) | |
#if hypersphere intersects plane | |
if champion["Distance"] > borderDist: | |
#go right branch | |
champion = self.getNearestH(curNode.right, False, queryPoint, champion, blacklist) | |
else: | |
#go right | |
champion = self.getNearestH(curNode.right, False, queryPoint, champion, blacklist) | |
if champion["Distance"] > borderDist: | |
#go left branch | |
champion = self.getNearestH(curNode.left, False, queryPoint, champion, blacklist) | |
else: #compare latitude | |
borderCoord = (queryPoint["Longitude"], curNode.data["Latitude"]) | |
borderDist = vincenty(queryPoint["Coordinates"], borderCoord).meters | |
if queryPoint["Latitude"] < curNode.data["Latitude"]: | |
#go left | |
champion = self.getNearestH(curNode.left, True, queryPoint, champion, blacklist) | |
if champion["Distance"] > borderDist: | |
#go right branch | |
champion = self.getNearestH(curNode.right, True, queryPoint, champion, blacklist) | |
else: | |
#go right | |
champion = self.getNearestH(curNode.right, True, queryPoint, champion, blacklist) | |
if champion["Distance"] > borderDist: | |
#go left branch | |
champion = self.getNearestH(curNode.left, True, queryPoint, champion, blacklist) | |
return champion |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment