I am designing a flight simulation program and I am looking for ideas on how to properly implement such requirement.
Kindly look at my picture below. The points represents location.

The idea is this, I wanted to properly create a data structure to best represent such scenario in java such that
when I am in Point 1, how far I am from the last point which is Point 8?
- Points 2, 3 and 5 are at the same distance from Point 8
- From Point 1, I could traverse to Point 3 to Point 6 then 7 then eight that would equate to 4 Steps.
when I am in Point 0
- I could traverse to Point 4 then 5 then 7 then reach point 8 which would equate to 4 steps also.
I just wanted to assist user to help them find different route.
Is this possible and which java data structure should best fit this requirement? Also any design ideas how to implement this?
Sorry if my question might be vague, I am just trying to get as much information as I can to properly handle such requirement.