aisstream/example

Bounding boxes lat&lon in wrong order in examples

Opened this issue · 0 comments

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],
  ],
],