瀏覽代碼

handle invalid precision

Xi Ruoyao 5 年之前
父節點
當前提交
09653ee961
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      data.py

+ 2 - 2
data.py

@@ -6,7 +6,7 @@ def have_location(x):
     return x.lat != None and x.lon != None
 
 def maybe_entry(x):
-    return x.eig < 5 and x.prec > 40
+    return x.eig < 5 and (x.prec > 40 or x.prec < 0)
 
 def maybe_indoor(x):
-    return x.eig < 1 and x.prec > 400
+    return x.eig < 1 and (x.prec > 400 or x.prec < 0)