I am trying to detect where the user has landed. I can’t find a good way to deduce that information, so I had to resort to subscribing to facilities and checking distance from each of the returned airports (40,000 calculations).
- Is there no better way?
- The documentation says that using SimConnect_SubscribeToFacilities_EX1 can return only the airports in the reality bubble (which is 200 nm). However, the managed code dll only exposes a “SubscribeToFacilities” method. Is there a way to get only the ones in the reality bubble?
simconnect.SubscribeToFacilities(SIMCONNECT_FACILITY_LIST_TYPE.AIRPORT, DATA_REQUESTS.AIRPORTS_REQUEST);
Thanks!