Commit f994803b57d8fffbd757138aecab64b42ed184fe
1 parent
1750ad5f
Exists in
rhitier-dev
Add B radial parameter
Showing
1 changed file
with
9 additions
and
9 deletions
Show diff stats
web/run.py
... | ... | @@ -119,7 +119,7 @@ CACHE_DIR = get_path('../cache') |
119 | 119 | # The javascript knows the targets' properties under these names. |
120 | 120 | # PROPERTIES = ('time', 'vrad', 'vtan', 'vtot', 'btan', 'brad', 'temp', 'pdyn', 'dens', |
121 | 121 | # 'atse', 'xhee', 'yhee') |
122 | -PROPERTIES = ('time', 'vrad', 'vtan', 'vtot', 'btan', 'temp', 'pdyn', 'dens', | |
122 | +PROPERTIES = ('time', 'vrad', 'vtan', 'vtot', 'btan', 'brad', 'temp', 'pdyn', 'dens', | |
123 | 123 | 'atse', 'xhee', 'yhee') |
124 | 124 | |
125 | 125 | # The parameters that the users can handle. |
... | ... | @@ -149,14 +149,14 @@ PARAMETERS = { |
149 | 149 | 'active': False, |
150 | 150 | 'position': 30, |
151 | 151 | }, |
152 | - # 'brad': { | |
153 | - # 'slug': 'brad', | |
154 | - # 'name': 'B Radial', | |
155 | - # 'title': 'B Radial.', | |
156 | - # 'units': 'nT', | |
157 | - # 'active': False, | |
158 | - # 'position': 35, | |
159 | - # }, | |
152 | + 'brad': { | |
153 | + 'slug': 'brad', | |
154 | + 'name': 'B Radial', | |
155 | + 'title': 'B Radial.', | |
156 | + 'units': 'nT', | |
157 | + 'active': False, | |
158 | + 'position': 35, | |
159 | + }, | |
160 | 160 | 'temp': { |
161 | 161 | 'slug': 'temp', |
162 | 162 | 'name': 'Temperature', | ... | ... |