I have a list of coordinates like so:
[
-79.763635,
42.257327
],
[
-73.343723,
45.046138
],
[
-74.006183,
40.704002
],
[
-79.763635,
42.257327
]
I want to see if a point SomeLat, SomeLong is inside these predefined borders.
I trie used shapely.geometry
but the json has to be configured a certain way for it to create a shape
(I cannot change that json).
What would be the best way to tell if a point I provide is inside those defined borders