From f994803b57d8fffbd757138aecab64b42ed184fe Mon Sep 17 00:00:00 2001 From: Richard Hitier Date: Fri, 3 Nov 2023 11:43:47 +0100 Subject: [PATCH] Add B radial parameter --- web/run.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/web/run.py b/web/run.py index fc1dd0f..224a361 100755 --- a/web/run.py +++ b/web/run.py @@ -119,7 +119,7 @@ CACHE_DIR = get_path('../cache') # The javascript knows the targets' properties under these names. # PROPERTIES = ('time', 'vrad', 'vtan', 'vtot', 'btan', 'brad', 'temp', 'pdyn', 'dens', # 'atse', 'xhee', 'yhee') -PROPERTIES = ('time', 'vrad', 'vtan', 'vtot', 'btan', 'temp', 'pdyn', 'dens', +PROPERTIES = ('time', 'vrad', 'vtan', 'vtot', 'btan', 'brad', 'temp', 'pdyn', 'dens', 'atse', 'xhee', 'yhee') # The parameters that the users can handle. @@ -149,14 +149,14 @@ PARAMETERS = { 'active': False, 'position': 30, }, - # 'brad': { - # 'slug': 'brad', - # 'name': 'B Radial', - # 'title': 'B Radial.', - # 'units': 'nT', - # 'active': False, - # 'position': 35, - # }, + 'brad': { + 'slug': 'brad', + 'name': 'B Radial', + 'title': 'B Radial.', + 'units': 'nT', + 'active': False, + 'position': 35, + }, 'temp': { 'slug': 'temp', 'name': 'Temperature', -- libgit2 0.21.2