Does anyone know if there exists a function that will determine if a state is a neighbor/bordering state?
For example, a user would pass in two states and the function would determine if they are neighbors: BorderingState(StateOne, StateTwo).
Examples:
BorderingState(WI,IL) would return True.
BorderingState(WA,FL) would return False.
If this function does not exist, I'd be happy to create it if I could get some suggestions as to how to make it.
For example, a user would pass in two states and the function would determine if they are neighbors: BorderingState(StateOne, StateTwo).
Examples:
BorderingState(WI,IL) would return True.
BorderingState(WA,FL) would return False.
If this function does not exist, I'd be happy to create it if I could get some suggestions as to how to make it.