Merge pull request #2328 from int2001/dev

since kHZ is no longer part of the table, substring isn't needed
这个提交包含在:
Peter Goodhall 2023-07-26 11:35:22 +01:00 提交者 GitHub
当前提交 4c700759ab
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -76,7 +76,7 @@ $(function() {
// var table=$('.spottable').DataTable();
table.rows().every(function() {
var d=this.data();
var distance=Math.abs(parseInt(d[1].substring(0,d[1].length-4))-qrg);
var distance=Math.abs(parseInt(d[1])-qrg);
if (distance<=20) {
distance++;
alpha=(.5/distance);