Author: Ayana Yaegashi
- FAA Airport Identifiers (a list of strings, like ['I58', 'ANQ', 'OEB']).
- A geographic polygon (a list of lists of paired latitude/longitude points that define the outer bounds of the polygon).
- (Optional) a boolean indicating whether the polygon points are sorted or not. Note that concave polygons must be sorted. Default: True.
- A list of booleans where the i-th element in the return list indicates whether or not the i-th airport is in the polygon.
https://www.geeksforgeeks.org/how-to-check-if-a-given-point-lies-inside-a-polygon/#