Hii I have a geoJSON
file of an area
(COLORADA) USA
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-109.0283203125,
37.020098201368114
],
[
-102.06298828125,
37.020098201368114
],
[
-102.06298828125,
40.9964840143779
],
[
-109.0283203125,
40.9964840143779
],
[
-109.0283203125,
37.020098201368114
]
]
]
}
}
]
}
and a location
-105.8544607,39.1160152
and I have many geoJSON files of different regions so I want to know the location from the received Condinates
My question
How can I validate that a location (-105.8544607,39.1160152
) exist in the polygon or not ?