From f3197463645b248c7842ce78d019fefc4b289935 Mon Sep 17 00:00:00 2001 From: Eddie McWhirter <emcwhirter@usgs.gov> Date: Tue, 2 Feb 2016 12:43:10 -0700 Subject: [PATCH] Change SqDist beta parameter default to 0. --- geomagio/algorithm/SqDistAlgorithm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geomagio/algorithm/SqDistAlgorithm.py b/geomagio/algorithm/SqDistAlgorithm.py index 61b67ad95..ead49dab2 100644 --- a/geomagio/algorithm/SqDistAlgorithm.py +++ b/geomagio/algorithm/SqDistAlgorithm.py @@ -587,8 +587,8 @@ class SqDistAlgorithm(Algorithm): help='Smoothing parameter for secular variation', type=float) parser.add_argument('--sqdist-beta', - default=1.0 / 1440.0 / 30, - help='Smoothing parameter for slope, default 0', + default=0, + help='Smoothing parameter for slope', type=float) parser.add_argument('--sqdist-gamma', default=1.0 / 30, -- GitLab