isPointInPolygon
Checks if a point is inside a polygon using the ray casting algorithm.
lat(required): point latitudelon(required): point longitudepolygon(required): array of [lat, lon] coordinate pairs
utlx
let zone = [[52.0, 4.0], [52.5, 4.0], [52.5, 5.0], [52.0, 5.0]]
{
inZone: isPointInPolygon($input.lat, $input.lon, zone)
}