pull/731/head
AstroTaka 2022-11-22 11:28:03 +09:00
rodzic 66cc09508f
commit b6c46aaeeb
2 zmienionych plików z 5 dodań i 2 usunięć

Wyświetl plik

@ -195,7 +195,6 @@ def log_quick_look(filename):
}
# find Max H
_output['max_height']=_output["last"]["alt"]
_seek_point = _filesize - 5000
start_check = True
while _seek_point>0:

Wyświetl plik

@ -127,7 +127,11 @@
}},
{title:"Max H", field:"max_height", width:75, resizable:false, headerTooltip:"Max Observed Height (m)",
formatter:function(cell, formatterParams, onRendered){
return cell.getValue() + " m"; //return the contents of the cell;
if(cell.getValue()!='undefined'){
return cell.getValue() + " m"; //return the contents of the cell;
} else {
return '--'
}
}},
{title:"Last H", field:"last_height", width:75, resizable:false, headerTooltip:"Last Observed Height (m)",
formatter:function(cell, formatterParams, onRendered){