|
@@ -145,17 +145,32 @@ void card_location_base::on_location(const std::vector<point>&vp, const std::vec
|
|
|
sid = site_ptr->m_id;
|
|
|
if(pt.m_useless)
|
|
|
{
|
|
|
- if (!is_v_map)
|
|
|
+ if (is_person())
|
|
|
{
|
|
|
- x = tool_other::round(pt.x, 3);
|
|
|
- y = tool_other::round(pt.y, 3);
|
|
|
+ if (!is_v_map)
|
|
|
+ {
|
|
|
+ x = tool_other::round(pt.x, 3);
|
|
|
+ y = tool_other::round(pt.y, 3);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ m_v_point.x = tool_other::round(pt.x, 3);
|
|
|
+ m_v_point.y = tool_other::round(pt.y, 3);
|
|
|
+ log_info("useful loc m_v_point: type=%d, card=%d, site=%d, ct=%d, timestamp=%llu, x=%f, y=%f, speed=%.2f, acc=%.2f", m_type, m_id, sid, m_ct, m_time, m_v_point.x, m_v_point.y, m_speed, lm[0].m_acc);
|
|
|
+ return;
|
|
|
+ }
|
|
|
}
|
|
|
- else
|
|
|
+ else if (is_vehicle())
|
|
|
{
|
|
|
- m_v_point.x = tool_other::round(pt.x, 3);
|
|
|
- m_v_point.y = tool_other::round(pt.y, 3);
|
|
|
- log_info("useful loc m_v_point: type=%d, card=%d, site=%d, ct=%d, timestamp=%llu, x=%f, y=%f, speed=%.2f, acc=%.2f", m_type, m_id, sid, m_ct, m_time, m_v_point.x, m_v_point.y, m_speed, lm[0].m_acc);
|
|
|
- return;
|
|
|
+ if (is_v_map)
|
|
|
+ {
|
|
|
+ x = tool_other::round(pt.x, 3);
|
|
|
+ y = tool_other::round(pt.y, 3);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ return;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
double acc = lm[0].m_acc;
|