subDesTagesMitExtraKaese 2 năm trước cách đây
mục cha
commit
7084e3d2ce
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      static/gps_logger/js/preprocessor.js

+ 2 - 2
static/gps_logger/js/preprocessor.js

@@ -248,12 +248,12 @@ function process(name, markers) {
   markers = RamerDouglasPeucker2d(valid, 0.00001) //.0001 = 7m
   d.push({
     label: `RamerDouglasPeucker2d ${markers.length}`,
-    data: markers.map(m => [m.lat, m.lng])
+    data: markers.map(m => [m.lng, m.lat])
   })
   markers = clean(markers)
   d.push({
     label: `cleaned ${markers.length}`,
-    data: markers.map(m => [m.lat, m.lng])
+    data: markers.map(m => [m.lng, m.lat])
   })
 
   plot.setData(d)