| <%= trackerId %> |
<% if(instanceData.fields.has('name')) { %>
<%= trackerData.name%> |
<% } %>
<% if(instanceData.fields.has('pos')) { %>
<%= trackerData.pos?.x?.toFixed(2) %> |
<%= trackerData.pos?.y?.toFixed(2) %> |
<%= trackerData.pos?.z?.toFixed(2) %> |
<% } %>
<% if(instanceData.fields.has('speed')) { %>
<%= trackerData.speed?.x?.toFixed(2) %> |
<%= trackerData.speed?.y?.toFixed(2) %> |
<%= trackerData.speed?.z?.toFixed(2) %> |
<% } %>
<% if(instanceData.fields.has('ori')) { %>
<%= trackerData.ori?.x?.toFixed(2) %> |
<%= trackerData.ori?.y?.toFixed(2) %> |
<%= trackerData.ori?.z?.toFixed(2) %> |
<% } %>
<% if(instanceData.fields.has('validity')) { %>
<%= trackerData.validity?.toFixed(2) %> |
<% } %>
<% if(instanceData.fields.has('accel')) { %>
<%= trackerData.accel?.x?.toFixed(2) %> |
<%= trackerData.accel?.y?.toFixed(2) %> |
<%= trackerData.accel?.z?.toFixed(2) %> |
<% } %>
<% if(instanceData.fields.has('trgtpos')) { %>
<%= trackerData.trgtpos?.x?.toFixed(2) %> |
<%= trackerData.trgtpos?.y?.toFixed(2) %> |
<%= trackerData.trgtpos?.z?.toFixed(2) %> |
<% } %>
<% if(instanceData.fields.has('timestamp')) { %>
<%= trackerData.timestamp %> |
<% } %>
<% }); %>