1、显示gnss曲线时,如果拟合gnss如果没有数据,用0代替
This commit is contained in:
parent
5f7e545d61
commit
ca793492b5
@ -462,7 +462,12 @@
|
||||
var baseFU2 = 0;
|
||||
|
||||
for(var i=chartData.length-1; i>=0; i--){
|
||||
if(chartData[i].rpose!=null && chartData[i].r9250e!=null) {
|
||||
if(chartData[i].rpose!=null) {
|
||||
if(chartData[i].r9250e==null){
|
||||
chartData[i].r9250e=0;
|
||||
chartData[i].r9250n=0;
|
||||
chartData[i].r9250d=0;
|
||||
}
|
||||
if(isBaseSet) {
|
||||
t[count] = chartData[i].createtime;
|
||||
e[count] = Number(chartData[i].b562e)-baseE;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user