bug fixed异常门限的单位应该是mm
This commit is contained in:
parent
1a4736d91e
commit
bb65d86103
@ -40,14 +40,14 @@ public class GNSSDeviceLocationRecordServiceImpl implements GNSSDeviceLocationRe
|
||||
public static final long FILTER_SHORT_CYCLE = 4 * 60 * 60 * 1000;
|
||||
public static final long FILTER_LONG_CYCLE = 25 * 60 * 60 * 1000;
|
||||
static final int FILTER_MAX_RECORD_NUM = 50;
|
||||
static final double XY_THRESHOLD = 3; //水平异常点50mm
|
||||
static final double Z_THRESHOLD = 3; //高程异常点50mm
|
||||
static final double XY_THRESHOLD = 30; //水平异常点30mm
|
||||
static final double Z_THRESHOLD = 30; //高程异常点30mm
|
||||
|
||||
long shortCycle;
|
||||
long longCycle;
|
||||
boolean enableAutoFilter = false;
|
||||
double xyThreshold = XY_THRESHOLD; //水平异常点50mm
|
||||
double zThreshold = Z_THRESHOLD; //高程异常点50mm
|
||||
double xyThreshold = XY_THRESHOLD; //水平异常点30mm
|
||||
double zThreshold = Z_THRESHOLD; //高程异常点30mm
|
||||
|
||||
class FilterSetting{
|
||||
public long startTime;
|
||||
|
||||
@ -148,8 +148,8 @@
|
||||
cols: [[
|
||||
{field: 'id', title: '组号', sort: true},
|
||||
{field: 'filter_hour', title: '平滑窗口(小时)'},
|
||||
{field: 'xy_threshold', title: '水平异常门限(cm)'},
|
||||
{field: 'z_threshold', title: '垂直异常门限(cm)'},
|
||||
{field: 'xy_threshold', title: '水平异常门限(mm)'},
|
||||
{field: 'z_threshold', title: '垂直异常门限(mm)'},
|
||||
{field: 'auto_filter', title: '自适应平滑', templet: '#autoFilterTrans'},
|
||||
{field: 'filter_max_hour', title: '最大平滑窗口'},
|
||||
{field: 'shock', title: 'shock'},
|
||||
|
||||
@ -14,13 +14,13 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label required">水平异常门限(cm)</label>
|
||||
<label class="layui-form-label required">水平异常门限(mm)</label>
|
||||
<div class="layui-input-block">
|
||||
<input type="number" name="xy_threshold" id="xy_threshold" lay-verify="required" lay-reqtext="不能为空" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label required">垂直异常门限(cm)</label>
|
||||
<label class="layui-form-label required">垂直异常门限(mm)</label>
|
||||
<div class="layui-input-block">
|
||||
<input type="number" name="z_threshold" id="z_threshold" lay-verify="required" lay-reqtext="不能为空" class="layui-input">
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user