db-vendo-client/parse/nearby.js

16 lines
281 B
JavaScript
Raw Permalink Normal View History

2017-11-11 22:35:41 +01:00
// todo: remarks
// todo: lines
// todo: what is s.pCls?
// todo: what is s.wt?
// todo: what is s.dur?
2018-01-26 16:25:13 +01:00
const parseNearby = (ctx, n) => { // n = raw nearby location
const res = ctx.profile.parseLocation(ctx, n);
res.distance = n.dist;
return res;
};
2017-11-11 22:35:41 +01:00
2022-05-07 16:17:37 +02:00
export {
parseNearby,
};