Commit ea45ebf95a30da6b3120218891838e92839cd2c8

Authored by Goutte
1 parent af90fc24

Add the mocks of Neptune and Uranus.

CHANGELOG.md
... ... @@ -25,9 +25,14 @@
25 25 - [ ] Enable p67
26 26 - [ ] Enable Uranus
27 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 37 ## 1.0.0-rc7
33 38  
... ...
config.yml
... ... @@ -222,6 +222,18 @@ targets:
222 222 - slug: 'tao_sat_sw'
223 223 locked: false
224 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 237 - type: 'probe'
226 238 slug: 'rosetta'
227 239 name: 'Rosetta'
... ...
web/run.py
... ... @@ -68,7 +68,7 @@ CDF_LIB = '/usr/local/lib/libcdf'
68 68 CACHE_DIR = get_path('../cache')
69 69  
70 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 73 # The slugs of the available parameters in the generated CSV files.
74 74 # The order matters. If you change this you also need to change the
... ...
web/static/img/target/neptune_128.png 0 โ†’ 100644

10.7 KB

web/static/img/target/neptune_256.png 0 โ†’ 100644

37.4 KB

web/static/img/target/uranus_128.png 0 โ†’ 100644

4.25 KB

web/static/img/target/uranus_256.png 0 โ†’ 100644

16 KB

web/view/home.html.jinja2
... ... @@ -117,7 +117,7 @@
117 117  
118 118 <nav id="parameters" class="mdl-navigation">
119 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 121 {% endfor %}
122 122 </nav>
123 123  
... ... @@ -168,6 +168,11 @@
168 168 title="Send the data to a connected SAMP hub.">
169 169 SAMP
170 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 176 </div>
172 177 </div>
173 178 <div class="mdl-cell mdl-cell--8-col mdl-cell--8-col-tablet mdl-cell--4-col-phone">
... ...