kopia lustrzana https://github.com/projecthorus/radiosonde_auto_rx
Support Max H
rodzic
66cc09508f
commit
b6c46aaeeb
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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){
|
||||
|
|
|
|||
Ładowanie…
Reference in New Issue