fleetmap-reports 1.0.279 → 1.0.284
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/here.js +1 -0
- package/src/speeding-report.js +8 -4
package/package.json
CHANGED
package/src/here.js
CHANGED
|
@@ -97,6 +97,7 @@ function fillGeocoding(rows) {
|
|
|
97
97
|
}*/
|
|
98
98
|
|
|
99
99
|
exports.routeMatch = async (rows) => {
|
|
100
|
+
console.log('here sending', rows.length)
|
|
100
101
|
const csv = generateCSV(rows)
|
|
101
102
|
const response = await axios.post(calcRoute, csv, { headers: { 'Content-Type': 'application/binary' }})
|
|
102
103
|
const hereData = response.data
|
package/src/speeding-report.js
CHANGED
|
@@ -237,10 +237,14 @@ async function getCustomSpeedLimitEvents(devices, routes){
|
|
|
237
237
|
async function getHereEvents(devices, routes, threshold){
|
|
238
238
|
console.log('here speed limit events')
|
|
239
239
|
const events = []
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
240
|
+
let i,j, temporary, chunk = 1;
|
|
241
|
+
for (i = 0,j = devices.length; i < j; i += chunk) {
|
|
242
|
+
temporary = devices.slice(i, i + chunk);
|
|
243
|
+
await Promise.all(temporary.map(d =>
|
|
244
|
+
here.routeMatch(routes.filter(p => p.deviceId === d.id)).then(r => d.results = r)
|
|
245
|
+
))
|
|
246
|
+
}
|
|
247
|
+
|
|
244
248
|
for (const d of devices) {
|
|
245
249
|
try {
|
|
246
250
|
const results = d.results
|