From 5de7bc44f44958e1e3ba68bf186a45d8d906350e Mon Sep 17 00:00:00 2001 From: akrherz Date: Mon, 22 Apr 2019 09:58:48 -0500 Subject: [PATCH] allow decimal ET to appear on ISUSM plot --- htdocs/plotting/auto/scripts100/p199.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/plotting/auto/scripts100/p199.py b/htdocs/plotting/auto/scripts100/p199.py index c97f373bf0..ac4f9930bc 100644 --- a/htdocs/plotting/auto/scripts100/p199.py +++ b/htdocs/plotting/auto/scripts100/p199.py @@ -178,10 +178,10 @@ def plot5(ctx, col): 'lon': ctx['nt'].sts[station]['lon'], 'lat': ctx['nt'].sts[station]['lat'], 'tmpf': row['data'], + 'tmpf_format': "%.02f", 'id': ctx['nt'].sts[station]['plot_name'], 'id_color': 'k', }) - return data, df @@ -307,4 +307,4 @@ def plotter(fdict): if __name__ == '__main__': - plotter(dict(opt='1', date='2019-03-25')) + plotter(dict(opt='5', date='2019-04-21'))