Bounding boxes have wrong order for Lat & Lon. E.g. https://github.com/aisstream/example/blob/main/javascript/index.js#L9-L10 ```` BoundingBoxes: [ [ [minLon, minLat], [maxLon, maxLat], ], ], ```` Should be ```` BoundingBoxes: [ [ [minLat, minLon], [maxLat, maxLon], ], ], ````