Commit ea45ebf95a30da6b3120218891838e92839cd2c8
1 parent
af90fc24
Exists in
master
and in
2 other branches
Add the mocks of Neptune and Uranus.
Showing
8 changed files
with
25 additions
and
3 deletions
Show diff stats
CHANGELOG.md
@@ -25,9 +25,14 @@ | @@ -25,9 +25,14 @@ | ||
25 | - [ ] Enable p67 | 25 | - [ ] Enable p67 |
26 | - [ ] Enable Uranus | 26 | - [ ] Enable Uranus |
27 | - [ ] Enable Neptune | 27 | - [ ] Enable Neptune |
28 | -- [ ] Find a way to handle the huge amount of data files for Earth | 28 | +- [ ] Find a way to handle the huge amount of data files for Earth (thousands!) |
29 | 29 | ||
30 | 30 | ||
31 | +## 1.0.0-rc8 | ||
32 | + | ||
33 | +- [x] Add the disabled versions of Uranus and Neptune | ||
34 | +- [x] Add the `CME Catalogs` layer | ||
35 | + | ||
31 | 36 | ||
32 | ## 1.0.0-rc7 | 37 | ## 1.0.0-rc7 |
33 | 38 |
config.yml
@@ -222,6 +222,18 @@ targets: | @@ -222,6 +222,18 @@ targets: | ||
222 | - slug: 'tao_sat_sw' | 222 | - slug: 'tao_sat_sw' |
223 | locked: false | 223 | locked: false |
224 | default: true | 224 | default: true |
225 | + - type: 'planet' | ||
226 | + slug: 'uranus' | ||
227 | + name: 'Uranus' | ||
228 | + title: 'Uranus (soon)' | ||
229 | + locked: true | ||
230 | + default: false | ||
231 | + - type: 'planet' | ||
232 | + slug: 'neptune' | ||
233 | + name: 'Neptune' | ||
234 | + title: 'Neptune (soon)' | ||
235 | + locked: true | ||
236 | + default: false | ||
225 | - type: 'probe' | 237 | - type: 'probe' |
226 | slug: 'rosetta' | 238 | slug: 'rosetta' |
227 | name: 'Rosetta' | 239 | name: 'Rosetta' |
web/run.py
@@ -68,7 +68,7 @@ CDF_LIB = '/usr/local/lib/libcdf' | @@ -68,7 +68,7 @@ CDF_LIB = '/usr/local/lib/libcdf' | ||
68 | CACHE_DIR = get_path('../cache') | 68 | CACHE_DIR = get_path('../cache') |
69 | 69 | ||
70 | # These two configs are not in the YAML config because adding a new parameter | 70 | # These two configs are not in the YAML config because adding a new parameter |
71 | -# will not work as-is, you'll have to edit some netcdf-related code. | 71 | +# will not work as-is, you'd have to edit some netcdf-related code. |
72 | 72 | ||
73 | # The slugs of the available parameters in the generated CSV files. | 73 | # The slugs of the available parameters in the generated CSV files. |
74 | # The order matters. If you change this you also need to change the | 74 | # The order matters. If you change this you also need to change the |
10.7 KB
37.4 KB
4.25 KB
16 KB
web/view/home.html.jinja2
@@ -117,7 +117,7 @@ | @@ -117,7 +117,7 @@ | ||
117 | 117 | ||
118 | <nav id="parameters" class="mdl-navigation"> | 118 | <nav id="parameters" class="mdl-navigation"> |
119 | {% for p in parameters %} | 119 | {% for p in parameters %} |
120 | - <a class="mdl-navigation__link parameter{{ ' active' if p.active }}" data-ts-slug="{{ p.slug }}" href="#">{{ p.name }}</a> | 120 | + <a class="mdl-navigation__link parameter{{ ' active' if p.active }}" data-ts-slug="{{ p.slug }}" href="#" title="{{ p.title }} ({{ p.units }})">{{ p.name }}</a> |
121 | {% endfor %} | 121 | {% endfor %} |
122 | </nav> | 122 | </nav> |
123 | 123 | ||
@@ -168,6 +168,11 @@ | @@ -168,6 +168,11 @@ | ||
168 | title="Send the data to a connected SAMP hub."> | 168 | title="Send the data to a connected SAMP hub."> |
169 | SAMP | 169 | SAMP |
170 | </button> | 170 | </button> |
171 | + <button id="email_alert" | ||
172 | + class="mdl-button mdl-button--raised mdl-button--primary mdl-button--disabled" | ||
173 | + title="Set an alert to receive an email when the data validates pre-defined conditions."> | ||
174 | + Alert | ||
175 | + </button> | ||
171 | </div> | 176 | </div> |
172 | </div> | 177 | </div> |
173 | <div class="mdl-cell mdl-cell--8-col mdl-cell--8-col-tablet mdl-cell--4-col-phone"> | 178 | <div class="mdl-cell mdl-cell--8-col mdl-cell--8-col-tablet mdl-cell--4-col-phone"> |