Blame view

config.yml 23 KB
9390ec89   Goutte   Initial experimen...
1
2
3
4
5
6
7
# WARNING : IF YOU BREAK THIS FILE YOU'LL BREAK THE WEBSITE. Tread carefully.
# Remember, you can test the website locally, see the README.


# The HTML metadata in the page header.
# Don't put double quotes (") in any of these fields.
meta:
79509300   hitier   Reformat YAML
8
9
10
11
12
13
14
15
16
  title: Heliopropa ☼ Solar System Weather
  keywords:
    - science
    - cdpp
    - europlanet
    - space
    - weather
  # Will be shown by search engines below the title of the page.
  description: Heliospheric propagation 1D MHD model for solar wind prediction at planets, probes and comets.
0332f168   Goutte   Initial support f...
17

9390ec89   Goutte   Initial experimen...
18

6491a1f1   Goutte   Fix up the bugs l...
19
20
# The top bar
header:
79509300   hitier   Reformat YAML
21
22
23
24
25
26
27
  title: CDPP / Heliopropa
  description: Heliospheric propagation <abbr title="Unidimensional">1D</abbr> <abbr title="Magnetohydrodynamics">MHD</abbr> model for solar wind prediction at planets, probes and comets.
  links:
    - text: Model
      href: "https://onlinelibrary.wiley.com/doi/10.1029/2004JA010959/abstract"
    - text: Horizon 2020
      href: "https://ec.europa.eu/programmes/horizon2020/"
6491a1f1   Goutte   Fix up the bugs l...
28
29


9390ec89   Goutte   Initial experimen...
30
31
32
# A list of authors that will appear in the HTML metadata and possibly in the
# authorship page as well. The order does not matter, it will be shuffled.
authors:
79509300   hitier   Reformat YAML
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  - name: Richard Hitier
    role: Software Padawan
    mail: richard.hitien@irap.omp.eu
  - name: Antoine Goutenoir
    role: Software Ninja
    mail: antoine.goutenoir@irap.omp.eu
  - name: Myriam Bouchemit
    role: Code Reviewer
    mail: myriam.bouchemit@irap.omp.eu
  - name: Nicolas André
    role: Project Lead
    mail: nicolas.andre@irap.omp.eu
  - name: Vincent Génot
    role: Project Coordinator
    mail: vincent.genot@irap.omp.eu
9390ec89   Goutte   Initial experimen...
48

8644387c   Goutte   Use real data.
49

fd1829c3   Goutte   Use the new AMDA API
50
51
#amda: "http://cdpp.irap.omp.eu/BASE/DDService/getDataUrl.php?dataSet={dataSet}&StartTime={startTime}&StopTime={stopTime}"
amda: "http://amda.irap.omp.eu/DDService/getDataUrl.php?dataSet={dataSet}&StartTime={startTime}&StopTime={stopTime}"
8644387c   Goutte   Use real data.
52

b662fcc3   hitier   Change input name...
53
defaults:
c7f3d2bd   hitier   fixup! Change inp...
54
  input_slug: 'om'
0332f168   Goutte   Initial support f...
55
56

# Data files are in data/catalog/
284f4688   Goutte   Continue layers i...
57
# Constraints are joined by an outer OR and an inner AND
575e380a   Goutte   Add disabled laye...
58
layers:
79509300   hitier   Reformat YAML
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
  models:
    - slug: "jupiterthermospheremodel"
      name: "Jupiter Thermo."
      desc: "Jupiter Thermosphere Model"
  campaigns:
    - slug: "hstjupiterobservations"
      name: "HST Jupiter"
      desc: "Hubble Space Telescope Jupiter Observations"
      live: true
    - slug: "hstsaturnobservations"
      name: "HST Saturn"
      desc: "Hubble Space Telescope Saturn Observations"
      live: true
  catalogs:
    - slug: "cmecatalogs"
      name: "CME Catalogs"
      desc: "Coronal Mass Ejection Catalogs"
      data:
        - doc: "https://www.helcats-fp7.eu/catalogues/wp4_icmecat.html"
          url: "https://www.helcats-fp7.eu/catalogues/data/ICME_WP4_V10.json"
          file: "ICME_WP4_V10.json"
          start: "ICME_START_TIME"
          stop: "MO_END_TIME"
          om:
            venus:
              constraints: [ { SC_INSITU: [ "VEX" ] } ]
            mercury:
              constraints: [ { SC_INSITU: [ "MESSENGER" ] } ]
        - doc: "https://www.helcats-fp7.eu/catalogues/wp4_arrcat.html"
          url: "https://www.helcats-fp7.eu/catalogues/data/HCME_WP4_V6.json"
          file: "HCME_WP4_V6.json"
          start: "TARGET_ARRIVAL"
          om:
            mars:
              constraints: [ { TARGET_NAME: [ "MARS", "MAVEN", "MSL" ] } ]
        - doc: "https://cdaw.gsfc.nasa.gov/CME_list/UNIVERSAL/text_ver/"
          url: "https://cdaw.gsfc.nasa.gov/CME_list/UNIVERSAL/text_ver/univ_all.txt"
          file: "univ_all.json"
          start: "DATETIME"
          om:
            earth: ~
0332f168   Goutte   Initial support f...
100

575e380a   Goutte   Add disabled laye...
101

297a7dfc   Goutte   Add support for i...
102
inputs:
79509300   hitier   Reformat YAML
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
  - slug: "om"
    name: "OMNI"
    desc: "The default input."
  - slug: "art"
    name: "ACE-RT"
    desc: "ACE Real ime"
  - slug: "dsc"
    name: "DISCOVR"
    desc: "DISCOVR"
  - slug: "solo"
    name: "SOLAR-O"
    desc: "Solar Orbiter"
  - slug: "sa"
    name: "STEREO-A"
    desc: "The first of the STEREO (Solar Terrestrial Relations Observatory), a solar observation mission."
  - slug: "sb"
    name: "STEREO-B"
    desc: "The second of the STEREO (Solar Terrestrial Relations Observatory), a solar observation mission."
297a7dfc   Goutte   Add support for i...
121

8644387c   Goutte   Use real data.
122
123
124
125
126
127
128
129
130
#Comets
#67P		p67_orb_all
#
#Probes
#Maven 		maven_orb_cruise
#Juno		juno_cruise_all
#Exomars		exomars_cruise_all
#Rosetta		ros_orb_cruise

a2a08db2   Goutte   Make sure targets...
131
132
133
134
135
# To add a new target, you must :
#   1. Configure it here
#   2. Create the two related images in `web/static/img/target/`
#
# `slug` is used internally, and should match \[a-z0-9]+\ (NO dashes /!\)
927c69c3   Goutte   Make the local ca...
136
137
# `name` is displayed in the time series (should be short)
# `title` appears on mouse hover, and can be longer
a79c5268   Goutte   Add probes and co...
138
139
# `locked` is for sources that are "coming soon"
# `default` sources are shown to incoming visitors, others need user activation
d729e9cd   Goutte   Cleanup.
140
141
142
# `orbit` holds the orbit configuration data
# `models` holds the configuration data for each model
#          the slugs are ids for AMDA
7d6dee0f   Goutte   Continue refacto ...
143
targets:
9b42ee98   hitier   Add Probes source...
144

79509300   hitier   Reformat YAML
145
146
147
148
149
  - type: 'planet'
    slug: 'mercury'
    name: 'Mercury'
    title: 'Mercury'
    orbit:
8644387c   Goutte   Use real data.
150
      models:
8eb47b5f   hitier   Set all mercury a...
151
152
153
        - slug: 'mercury-orb-all'
          parameters:
            xy_hee: 'xyz_mercury_hee'
79509300   hitier   Reformat YAML
154
155
156
157
      semimajor: 0
      semiminor: 0
    models:
      om:
8eb47b5f   hitier   Set all mercury a...
158
159
160
161
162
163
164
165
166
        - slug: 'tao-mercury-sw'
          parameters:
            dens: 'mercury_sw_n'
            xy_v: 'mercury_sw_v'
            temp: 'mercury_sw_t'
            pdyn: 'mercury_sw_pdyn'
            btan: 'mercury_sw_b'
            brad: 'mercury_sw_bx'
            atse: 'mercury_sw_da'
79509300   hitier   Reformat YAML
167
      art:
8eb47b5f   hitier   Set all mercury a...
168
169
170
171
172
173
174
175
176
        - slug: 'tao-mercury-swrt'
          parameters:
            dens: 'mercury_swrt_n'
            xy_v: 'mercury_swrt_v'
            temp: 'mercury_swrt_t'
            pdyn: 'mercury_swrt_pdyn'
            btan: 'mercury_swrt_b'
            brad: 'mercury_swrt_bx'
            atse: 'mercury_swrt_da'
79509300   hitier   Reformat YAML
177
      dsc:
8eb47b5f   hitier   Set all mercury a...
178
179
180
181
182
183
184
185
186
        - slug: 'tao-mercury-dsc'
          parameters:
            dens: 'mercury_dsc_n'
            xy_v: 'mercury_dsc_v'
            temp: 'mercury_dsc_t'
            pdyn: 'mercury_dsc_pdyn'
            btan: 'mercury_dsc_b'
            brad: 'mercury_dsc_bx'
            atse: 'mercury_dsc_da'
79509300   hitier   Reformat YAML
187
      solo:
8eb47b5f   hitier   Set all mercury a...
188
        - slug: 'tao-mercury-solo'
79509300   hitier   Reformat YAML
189
      sa:
8eb47b5f   hitier   Set all mercury a...
190
191
192
193
194
195
196
197
198
        - slug: 'tao-mercury-sta'
          parameters:
            dens: 'mercury_sta_n'
            xy_v: 'mercury_sta_v'
            temp: 'mercury_sta_t'
            pdyn: 'mercury_sta_pdyn'
            btan: 'mercury_sta_b'
            brad: 'mercury_sta_bx'
            atse: 'mercury_sta_da'
79509300   hitier   Reformat YAML
199
      sb:
8eb47b5f   hitier   Set all mercury a...
200
201
202
203
204
205
206
207
208
        - slug: 'tao-mercury-stb'
          parameters:
            dens: 'mercury_stb_n'
            xy_v: 'mercury_stb_v'
            temp: 'mercury_stb_t'
            pdyn: 'mercury_stb_pdyn'
            btan: 'mercury_stb_b'
            brad: 'mercury_stb_bx'
            atse: 'mercury_stb_da'
79509300   hitier   Reformat YAML
209
210
211
212
213
214
215
    locked: false
    default: false
  - type: 'planet'
    slug: 'venus'
    name: 'Venus'
    title: 'Venus'
    orbit:
b500e561   Goutte   Invert the orbits...
216
      models:
f85effea   hitier   Set all venus amd...
217
218
219
        - slug: 'venus-orb-all'
          parameters:
            xy_hee: 'xyz_venus_hee'
79509300   hitier   Reformat YAML
220
221
222
223
      semimajor: 0.72333199
      semiminor: 0.7233154
    models:
      om:
f85effea   hitier   Set all venus amd...
224
225
226
227
228
229
230
231
232
        - slug: 'tao-venus-sw'
          parameters:
            dens: 'venus_sw_n'
            xy_v: 'venus_sw_v'
            temp: 'venus_sw_t'
            pdyn: 'venus_sw_pdyn'
            btan: 'venus_sw_b'
            brad: 'venus_sw_bx'
            atse: 'venus_sw_da'
79509300   hitier   Reformat YAML
233
      art:
f85effea   hitier   Set all venus amd...
234
235
236
237
238
239
240
241
242
        - slug: 'tao-venus-swrt'
          parameters:
            dens: 'venus_swrt_n'
            xy_v: 'venus_swrt_v'
            temp: 'venus_swrt_t'
            pdyn: 'venus_swrt_pdyn'
            btan: 'venus_swrt_b'
            brad: 'venus_swrt_bx'
            atse: 'venus_swrt_da'
79509300   hitier   Reformat YAML
243
      dsc:
f85effea   hitier   Set all venus amd...
244
245
246
247
248
249
250
251
252
        - slug: 'tao-venus-dsc'
          parameters:
            dens: 'venus_dsc_n'
            xy_v: 'venus_dsc_v'
            temp: 'venus_dsc_t'
            pdyn: 'venus_dsc_pdyn'
            btan: 'venus_dsc_b'
            brad: 'venus_dsc_bx'
            atse: 'venus_dsc_da'
79509300   hitier   Reformat YAML
253
      solo:
f85effea   hitier   Set all venus amd...
254
        - slug: 'tao-venus-solo'
79509300   hitier   Reformat YAML
255
      sa:
f85effea   hitier   Set all venus amd...
256
257
258
259
260
261
262
263
264
        - slug: 'tao-venus-sta'
          parameters:
            dens: 'venus_sta_n'
            xy_v: 'venus_sta_v'
            temp: 'venus_sta_t'
            pdyn: 'venus_sta_pdyn'
            btan: 'venus_sta_b'
            brad: 'venus_sta_bx'
            atse: 'venus_sta_da'
79509300   hitier   Reformat YAML
265
      sb:
f85effea   hitier   Set all venus amd...
266
267
268
269
270
271
272
273
274
        - slug: 'tao-venus-stb'
          parameters:
            dens: 'venus_stb_n'
            xy_v: 'venus_stb_v'
            temp: 'venus_stb_t'
            pdyn: 'venus_stb_pdyn'
            btan: 'venus_stb_b'
            brad: 'venus_stb_bx'
            atse: 'venus_stb_da'
79509300   hitier   Reformat YAML
275
276
277
278
279
280
281
282
283
284
285
    locked: false
    default: true
  - type: 'planet'
    slug: 'earth'
    name: 'Earth'
    title: 'Earth'
    orbit:
      models: [ ] # Earth has no orbit models, we hard-coded it to (1, 0)
    # Earth has a LOT of data files, compared to the others.
    models:
      om:
3a5138b2   hitier   Set all earth amd...
286
        - slug: 'omni-hour-all'
79509300   hitier   Reformat YAML
287
          parameters:
3a5138b2   hitier   Set all earth amd...
288
            pdyn: 'omni_sw_ram'
134edc25   hitier   Fix sta/stb param...
289
        #            xy_b: 'omni_imf'
3a5138b2   hitier   Set all earth amd...
290
        - slug: 'ace-swepam-real-1h'
79509300   hitier   Reformat YAML
291
          parameters:
3a5138b2   hitier   Set all earth amd...
292
293
294
295
296
297
            vtot: 'sw_v_real'
            temp: 'sw_n_real'
            dens: 'sw_t_real'
            xy_b: 'imf_real_gse'
            #brad: ''
            #atse: ''
79509300   hitier   Reformat YAML
298
299
            #btan: 'Bgsm'  # /!. VECTOR2 (actually, does not exist)
      sa:
134edc25   hitier   Fix sta/stb param...
300
        - slug: 'omni-hour-all'
79509300   hitier   Reformat YAML
301
          parameters:
134edc25   hitier   Fix sta/stb param...
302
303
            pdyn: 'omni_sw_ram'
        - slug: 'ace-swepam-real-1h'
79509300   hitier   Reformat YAML
304
          parameters:
134edc25   hitier   Fix sta/stb param...
305
306
307
308
            vtot: 'sw_v_real'
            temp: 'sw_n_real'
            dens: 'sw_t_real'
            xy_b: 'imf_real_gse'
79509300   hitier   Reformat YAML
309
      sb:
134edc25   hitier   Fix sta/stb param...
310
        - slug: 'omni-hour-all'
79509300   hitier   Reformat YAML
311
          parameters:
134edc25   hitier   Fix sta/stb param...
312
313
            pdyn: 'omni_sw_ram'
        - slug: 'ace-swepam-real-1h'
79509300   hitier   Reformat YAML
314
          parameters:
134edc25   hitier   Fix sta/stb param...
315
316
317
318
            vtot: 'sw_v_real'
            temp: 'sw_n_real'
            dens: 'sw_t_real'
            xy_b: 'imf_real_gse'
79509300   hitier   Reformat YAML
319
320
321
322
323
324
325
    locked: false
    default: true
  - type: 'planet'
    slug: 'mars'
    name: 'Mars'
    title: 'Mars'
    orbit:
297a7dfc   Goutte   Add support for i...
326
      models:
79509300   hitier   Reformat YAML
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
        - slug: 'mars-orb-all'
          parameters:
            xy_hee: 'xyz_mars_hee'
      semimajor: 1.52366231
      semiminor: 1.51700011
    models:
      om:
        - slug: 'tao-mars-sw'
          parameters:
            dens: 'mars_sw_n'
            xy_v: 'mars_sw_v'
            temp: 'mars_sw_t'
            pdyn: 'mars_sw_pdyn'
            btan: 'mars_sw_b'
            brad: 'mars_sw_bx'
            atse: 'mars_sw_da'
      art:
        - slug: 'tao-mars-swrt'
          parameters:
            dens: 'mars_swrt_n'
            xy_v: 'mars_swrt_v'
            temp: 'mars_swrt_t'
            pdyn: 'mars_swrt_pdyn'
            btan: 'mars_swrt_b'
            brad: 'mars_swrt_bx'
            atse: 'mars_swrt_da'
      dsc:
        - slug: 'tao-mars-dsc'
          parameters:
            dens: 'mars_dsc_n'
            xy_v: 'mars_dsc_v'
            temp: 'mars_dsc_t'
            pdyn: 'mars_dsc_pdyn'
            btan: 'mars_dsc_b'
            brad: 'mars_dsc_bx'
            atse: 'mars_dsc_da'
      solo:
        - slug: 'tao-mars-solo'
      sa:
        - slug: 'tao-mars-sta'
          parameters:
            dens: 'mars_sta_n'
            xy_v: 'mars_sta_v'
            temp: 'mars_sta_t'
            pdyn: 'mars_sta_pdyn'
            btan: 'mars_sta_b'
            brad: 'mars_sta_bx'
            atse: 'mars_sta_da'
      sb:
        - slug: 'tao-mars-stb'
          parameters:
            dens: 'mars_stb_n'
            xy_v: 'mars_stb_v'
            temp: 'mars_stb_t'
            pdyn: 'mars_stb_pdyn'
            btan: 'mars_stb_b'
            brad: 'mars_stb_bx'
            atse: 'mars_stb_da'
    locked: false
    default: false
  - type: 'planet'
    slug: 'jupiter'
    name: 'Jupiter'
    title: 'Jupiter'
    orbit:
297a7dfc   Goutte   Add support for i...
392
      models:
0d18002a   hitier   Set all jupiter a...
393
394
395
        - slug: 'jupiter-orb-all'
          parameters:
            xy_hee: 'xyz_jupiter_hee'
79509300   hitier   Reformat YAML
396
397
398
399
      semimajor: 5.45516759
      semiminor: 4.95155843
    models:
      om:
0d18002a   hitier   Set all jupiter a...
400
401
402
403
404
405
406
407
408
        - slug: 'tao-jup-sw'
          parameters:
            dens: 'jup_sw_n'
            xy_v: 'jup_sw_v'
            temp: 'jup_sw_t'
            pdyn: 'jup_sw_pdyn'
            btan: 'jup_sw_b'
            brad: 'jup_sw_bx'
            atse: 'jup_sw_da'
79509300   hitier   Reformat YAML
409
      art:
0d18002a   hitier   Set all jupiter a...
410
411
412
413
414
415
416
417
418
        - slug: 'tao-jup-swrt'
          parameters:
            dens: 'jup_swrt_n'
            xy_v: 'jup_swrt_v'
            temp: 'jup_swrt_t'
            pdyn: 'jup_swrt_pdyn'
            btan: 'jup_swrt_b'
            brad: 'jup_swrt_bx'
            atse: 'jup_swrt_da'
79509300   hitier   Reformat YAML
419
      dsc:
0d18002a   hitier   Set all jupiter a...
420
421
422
423
424
425
426
427
428
        - slug: 'tao-jup-dsc'
          parameters:
            dens: 'jup_dsc_n'
            xy_v: 'jup_dsc_v'
            temp: 'jup_dsc_t'
            pdyn: 'jup_dsc_pdyn'
            btan: 'jup_dsc_b'
            brad: 'jup_dsc_bx'
            atse: 'jup_dsc_da'
79509300   hitier   Reformat YAML
429
      solo:
0d18002a   hitier   Set all jupiter a...
430
        - slug: 'tao-jup-solo'
79509300   hitier   Reformat YAML
431
      sa:
0d18002a   hitier   Set all jupiter a...
432
433
434
435
436
437
438
439
440
        - slug: 'tao-jup-sta'
          parameters:
            dens: 'jup_sta_n'
            xy_v: 'jup_sta_v'
            temp: 'jup_sta_t'
            pdyn: 'jup_sta_pdyn'
            btan: 'jup_sta_b'
            brad: 'jup_sta_bx'
            atse: 'jup_sta_da'
79509300   hitier   Reformat YAML
441
      sb:
0d18002a   hitier   Set all jupiter a...
442
443
444
445
446
447
448
449
450
        - slug: 'tao-jup-stb'
          parameters:
            dens: 'jup_stb_n'
            xy_v: 'jup_stb_v'
            temp: 'jup_stb_t'
            pdyn: 'jup_stb_pdyn'
            btan: 'jup_stb_b'
            brad: 'jup_stb_bx'
            atse: 'jup_stb_da'
79509300   hitier   Reformat YAML
451
452
453
454
455
456
457
458
459
    tap:
      target_name: 'Jupiter'
    locked: false
    default: false
  - type: 'planet'
    slug: 'saturn'
    name: 'Saturn'
    title: 'Saturn'
    orbit:
8644387c   Goutte   Use real data.
460
      models:
22d9535f   hitier   Set all saturn am...
461
462
463
        - slug: 'saturn-orb-all'
          parameters:
            xy_hee: 'xyz_saturn_hee'
79509300   hitier   Reformat YAML
464
465
466
467
      semimajor: 9.53707032
      semiminor: 9.5230773
    models:
      om:
22d9535f   hitier   Set all saturn am...
468
469
470
471
472
473
474
475
476
        - slug: 'tao-sat-sw'
          parameters:
            dens: 'sat_sw_n'
            xy_v: 'sat_sw_v'
            temp: 'sat_sw_t'
            pdyn: 'sat_sw_pdyn'
            btan: 'sat_sw_b'
            brad: 'sat_sw_bx'
            atse: 'sat_sw_da'
79509300   hitier   Reformat YAML
477
      art:
22d9535f   hitier   Set all saturn am...
478
479
480
481
482
483
484
485
486
        - slug: 'tao-sat-swrt'
          parameters:
            dens: 'sat_swrt_n'
            xy_v: 'sat_swrt_v'
            temp: 'sat_swrt_t'
            pdyn: 'sat_swrt_pdyn'
            btan: 'sat_swrt_b'
            brad: 'sat_swrt_bx'
            atse: 'sat_swrt_da'
79509300   hitier   Reformat YAML
487
      dsc:
22d9535f   hitier   Set all saturn am...
488
489
490
491
492
493
494
495
496
        - slug: 'tao-sat-dsc'
          parameters:
            dens: 'sat_dsc_n'
            xy_v: 'sat_dsc_v'
            temp: 'sat_dsc_t'
            pdyn: 'sat_dsc_pdyn'
            btan: 'sat_dsc_b'
            brad: 'sat_dsc_bx'
            atse: 'sat_dsc_da'
79509300   hitier   Reformat YAML
497
      solo:
22d9535f   hitier   Set all saturn am...
498
        - slug: 'tao-sat-solo'
79509300   hitier   Reformat YAML
499
      sa:
22d9535f   hitier   Set all saturn am...
500
501
502
503
504
505
506
507
508
        - slug: 'tao-sat-sta'
          parameters:
            dens: 'sat_sta_n'
            xy_v: 'sat_sta_v'
            temp: 'sat_sta_t'
            pdyn: 'sat_sta_pdyn'
            btan: 'sat_sta_b'
            brad: 'sat_sta_bx'
            atse: 'sat_sta_da'
79509300   hitier   Reformat YAML
509
      sb:
22d9535f   hitier   Set all saturn am...
510
511
512
513
514
515
516
517
518
        - slug: 'tao-sat-stb'
          parameters:
            dens: 'sat_stb_n'
            xy_v: 'sat_stb_v'
            temp: 'sat_stb_t'
            pdyn: 'sat_stb_pdyn'
            btan: 'sat_stb_b'
            brad: 'sat_stb_bx'
            atse: 'sat_stb_da'
79509300   hitier   Reformat YAML
519
520
521
522
523
524
525
526
527
    tap:
      target_name: 'Saturn'
    locked: false
    default: false
  - type: 'planet'
    slug: 'uranus'
    name: 'Uranus'
    title: 'Uranus'
    orbit:
d226f791   Goutte   Uranus smells lik...
528
      models:
99025a7c   hitier   Set all uranus am...
529
530
531
        - slug: 'uranus-orb-all'
          parameters:
            xy_hee: 'xyz_uranus_hee'
79509300   hitier   Reformat YAML
532
533
534
535
      semimajor: 19.19
      semiminor: 19.17
    models:
      om:
99025a7c   hitier   Set all uranus am...
536
537
538
539
540
541
542
543
544
        - slug: 'tao-ura-sw'
          parameters:
            dens: 'ura_sw_n'
            xy_v: 'ura_sw_v'
            temp: 'ura_sw_t'
            pdyn: 'ura_sw_pdyn'
            btan: 'ura_sw_b'
            brad: 'ura_sw_bx'
            atse: 'ura_sw_da'
79509300   hitier   Reformat YAML
545
      art:
99025a7c   hitier   Set all uranus am...
546
547
548
549
550
551
552
553
554
        - slug: 'tao-ura-swrt'
          parameters:
            dens: 'ura_swrt_n'
            xy_v: 'ura_swrt_v'
            temp: 'ura_swrt_t'
            pdyn: 'ura_swrt_pdyn'
            btan: 'ura_swrt_b'
            brad: 'ura_swrt_bx'
            atse: 'ura_swrt_da'
79509300   hitier   Reformat YAML
555
      dsc:
99025a7c   hitier   Set all uranus am...
556
557
558
559
560
561
562
563
564
        - slug: 'tao-ura-dsc'
          parameters:
            dens: 'ura_dsc_n'
            xy_v: 'ura_dsc_v'
            temp: 'ura_dsc_t'
            pdyn: 'ura_dsc_pdyn'
            btan: 'ura_dsc_b'
            brad: 'ura_dsc_bx'
            atse: 'ura_dsc_da'
79509300   hitier   Reformat YAML
565
      solo:
99025a7c   hitier   Set all uranus am...
566
        - slug: 'tao-ura-solo'
79509300   hitier   Reformat YAML
567
      sa:
99025a7c   hitier   Set all uranus am...
568
569
570
571
572
573
574
575
576
        - slug: 'tao-ura-sta'
          parameters:
            dens: 'ura_sta_n'
            xy_v: 'ura_sta_v'
            temp: 'ura_sta_t'
            pdyn: 'ura_sta_pdyn'
            btan: 'ura_sta_b'
            brad: 'ura_sta_bx'
            atse: 'ura_sta_da'
79509300   hitier   Reformat YAML
577
      sb:
99025a7c   hitier   Set all uranus am...
578
579
580
581
582
583
584
585
586
        - slug: 'tao-ura-stb'
          parameters:
            dens: 'ura_stb_n'
            xy_v: 'ura_stb_v'
            temp: 'ura_stb_t'
            pdyn: 'ura_stb_pdyn'
            btan: 'ura_stb_b'
            brad: 'ura_stb_bx'
            atse: 'ura_stb_da'
79509300   hitier   Reformat YAML
587
588
589
590
591
592
593
    locked: false
    default: false
  - type: 'planet'
    slug: 'neptune'
    name: 'Neptune'
    title: 'Neptune'
    orbit:
dfc53ac3   Goutte   Enable Neptune.
594
      models:
8e79f472   hitier   Set all neptune a...
595
596
597
        - slug: 'neptune-orb-all'
          parameters:
            xy_hee: 'xyz_neptune_hee'
79509300   hitier   Reformat YAML
598
599
600
601
      semimajor: 30.06896348
      semiminor: 30.06785516
    models:
      om:
8e79f472   hitier   Set all neptune a...
602
603
604
605
606
607
608
609
610
        - slug: 'tao-nep-sw'
          parameters:
            dens: 'nep_sw_n'
            xy_v: 'nep_sw_v'
            temp: 'nep_sw_t'
            pdyn: 'nep_sw_pdyn'
            btan: 'nep_sw_b'
            brad: 'nep_sw_bx'
            atse: 'nep_sw_da'
79509300   hitier   Reformat YAML
611
      art:
8e79f472   hitier   Set all neptune a...
612
613
614
615
616
617
618
619
620
        - slug: 'tao-nep-swrt'
          parameters:
            dens: 'nep_swrt_n'
            xy_v: 'nep_swrt_v'
            temp: 'nep_swrt_t'
            pdyn: 'nep_swrt_pdyn'
            btan: 'nep_swrt_b'
            brad: 'nep_swrt_bx'
            atse: 'nep_swrt_da'
79509300   hitier   Reformat YAML
621
      dsc:
8e79f472   hitier   Set all neptune a...
622
623
624
625
626
627
628
629
630
        - slug: 'tao-nep-dsc'
          parameters:
            dens: 'nep_dsc_n'
            xy_v: 'nep_dsc_v'
            temp: 'nep_dsc_t'
            pdyn: 'nep_dsc_pdyn'
            btan: 'nep_dsc_b'
            brad: 'nep_dsc_bx'
            atse: 'nep_dsc_da'
79509300   hitier   Reformat YAML
631
      solo:
8e79f472   hitier   Set all neptune a...
632
        - slug: 'tao-nep-solo'
79509300   hitier   Reformat YAML
633
      sa:
8e79f472   hitier   Set all neptune a...
634
635
636
637
638
639
640
641
642
        - slug: 'tao-nep-sta'
          parameters:
            dens: 'nep_sta_n'
            xy_v: 'nep_sta_v'
            temp: 'nep_sta_t'
            pdyn: 'nep_sta_pdyn'
            btan: 'nep_sta_b'
            brad: 'nep_sta_bx'
            atse: 'nep_sta_da'
79509300   hitier   Reformat YAML
643
      sb:
8e79f472   hitier   Set all neptune a...
644
645
646
647
648
649
650
651
652
        - slug: 'tao-nep-stb'
          parameters:
            dens: 'nep_stb_n'
            xy_v: 'nep_stb_v'
            temp: 'nep_stb_t'
            pdyn: 'nep_stb_pdyn'
            btan: 'nep_stb_b'
            brad: 'nep_stb_bx'
            atse: 'nep_stb_da'
79509300   hitier   Reformat YAML
653
654
    locked: false
    default: false
9b42ee98   hitier   Add Probes source...
655
  # Bepi Colombo source slug, put it just before the Bepi Colombo data slug
79509300   hitier   Reformat YAML
656
657
658
659
660
  - type: 'source'
    slug: 'bepi_src'
    name: 'SoloColombo Source'
    title: 'SoloColombo Source'
    orbit:
9b42ee98   hitier   Add Probes source...
661
      models:
79509300   hitier   Reformat YAML
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
        - slug: 'bepi_cruise_all'
        - slug: 'earth_orb_all'
    models:
      om:
        - slug: 'tao_mercury_sw'
      art:
        - slug: 'tao_mercury_swrt'
      dsc:
        - slug: 'tao_mercury_dsc'
      solo:
        - slug: 'tao_mercury_solo'
      sa:
        - slug: 'tao_mercury_sta'
      sb:
        - slug: 'tao_mercury_stb'
    locked: false
    default: false
  - type: 'probe'
    slug: 'bepi'
    name: 'BepiColombo'
    title: 'BepiColombo'
    orbit:
0e085a4c   hitier   Add probes
684
      models:
79509300   hitier   Reformat YAML
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
        - slug: 'bepi_cruise_all'
    #             - slug: 'mercury_orb_all'
    models:
      om:
        - slug: 'tao_bepi_sw'
      art:
        - slug: 'tao_bepi_swrt'
      sa:
        - slug: 'tao_bepi_sta'
    locked: false
    default: false
  # Solar Orbiter source slug, put it just before the Solar Orbiter data slug
  - type: 'source'
    slug: 'solo_src'
    name: 'Solo Source'
    title: 'Solo Source'
    orbit:
9b42ee98   hitier   Add Probes source...
702
      models:
79509300   hitier   Reformat YAML
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
        - slug: 'so_orb_all'
        - slug: 'earth_orb_all'
    models:
      om:
        - slug: 'tao_mercury_sw'
      #         - slug: 'so_pas_momgr1'
      #            parameters:
      #              dens: 'N'
      #              temp: 'T'
      art:
        - slug: 'tao_mercury_swrt'
      dsc:
        - slug: 'tao_mercury_dsc'
      solo:
        - slug: 'tao_mercury_solo'
      sa:
        - slug: 'tao_mercury_sta'
      sb:
        - slug: 'tao_mercury_stb'
    locked: false
    default: false
  - type: 'probe'
    slug: 'solo'
    name: 'SolarOrbiter'
    title: 'SolarOrbiter'
    orbit:
0e085a4c   hitier   Add probes
729
      models:
79509300   hitier   Reformat YAML
730
731
732
733
734
735
736
737
738
739
740
        - slug: 'so_orb_all'
    #             - slug: 'earth_orb_all'
    models:
      om:
        - slug: 'tao_so_sw'
      art:
        - slug: 'tao_so_swrt'
    #          sa:
    #              - slug: 'tao_so_sw'
    locked: false
    default: false
9b42ee98   hitier   Add Probes source...
741
  # Parker Solar Probe source slug, put it just before the Parker Solar Probe data slug
79509300   hitier   Reformat YAML
742
743
744
745
746
  - type: 'source'
    slug: 'psp_src'
    name: 'Parker Source'
    title: 'Parker Source'
    orbit:
9b42ee98   hitier   Add Probes source...
747
      models:
79509300   hitier   Reformat YAML
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
        - slug: 'psp_orb_all'
        - slug: 'earth_orb_all'
    models:
      om:
        - slug: 'tao_mercury_sw'
      art:
        - slug: 'tao_mercury_swrt'
      dsc:
        - slug: 'tao_mercury_dsc'
      solo:
        - slug: 'tao_mercury_solo'
      sa:
        - slug: 'tao_mercury_sta'
      sb:
        - slug: 'tao_mercury_stb'
    locked: false
    default: false
  - type: 'probe'
    slug: 'psp'
    name: 'Parker Solar Probe'
    title: 'Parker Solar Probe'
    orbit:
0e085a4c   hitier   Add probes
770
      models:
79509300   hitier   Reformat YAML
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
        - slug: 'psp_orb_all'
    #             - slug: 'earth_orb_all'
    models:
      om:
        - slug: 'tao_psp_sw'
      art:
        - slug: 'tao_psp_swrt'
      sa:
        - slug: 'tao_psp_sta'
    locked: false
    default: false
  - type: 'probe'
    slug: 'rosetta'
    name: 'Rosetta'
    title: 'Rosetta'
    orbit:
8644387c   Goutte   Use real data.
787
      models:
79509300   hitier   Reformat YAML
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
        - slug: 'ros_orb_cruise'
          stopped_at: '2014-08-02T00:00:00'
        - slug: 'p67_orb_all'
          started_at: '2014-08-02T00:00:00'
          #stopped_at: '2016-09-30T11:19:00'
          # 'XYZ_HEE' is not present in http://amda.irap.omp.eu/DDService/BASE/DATA//ORBITS/P67.NEW/P67_2014212000005000.nc.gz
    #                parameters:
    #                    hee: 'XYZ_HEE'
    models:
      om:
        - slug: 'tao_ros_sw'
      sa:
        - slug: 'tao_ros_sw'
      sb:
        - slug: 'tao_ros_sw'
    locked: false
    default: false
  - type: 'probe'
    slug: 'juno'
    name: 'Juno'
    title: 'Juno'
    orbit:
8644387c   Goutte   Use real data.
810
      models:
79509300   hitier   Reformat YAML
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
        - slug: 'juno_cruise_all'
          stopped_at: '2016-07-05T03:53:00'
        - slug: 'jupiter_orb_all'
          started_at: '2016-07-05T03:53:00'
    models:
      om:
        - slug: 'tao_juno_sw'
      sa:
        - slug: 'tao_juno_sw'
      sb:
        - slug: 'tao_juno_sw'
    locked: false
    default: false
  - type: 'comet'
    slug: 'p67'
    name: 'Churyumov-Gerasimenko'
    title: 'Churyumov-Gerasimenko (coming soon)'
    orbit:
fb383448   Goutte   Implement the cac...
829
      models:
79509300   hitier   Reformat YAML
830
831
832
833
834
835
836
837
838
839
840
841
        - slug: 'p67_orb_all'
          parameters:
            hee: 'XYZ_HEE'
    models:
      om:
        - slug: 'tao_p67_sw'
      sa:
        - slug: 'tao_p67_sw'
      sb:
        - slug: 'tao_p67_sw'
    locked: true
    default: false
a79c5268   Goutte   Add probes and co...
842
843


6060b797   Goutte   Add config sample...
844
845
846
847
848
849
850
851
# Tao Model OMNI_input
#Rosetta  	tao_ros_sw	2014-01-01T00:00	2017-01-21T00:00
#Juno cruise	tao_juno_sw	2012-01-01T00:00	2016-11-02T22:00
#Mercury 	tao_mercury_sw	1990-01-01T01:00	2017-02-19T00:00
#Venus		tao_venus_sw	1990-01-01T01:00	2017-02-19T00:00
#Mars		tao_mars_sw	1990-01-01T01:00	2017-02-19T00:00
#Jupiter		tao_jup_sw	1990-01-01T01:00	2017-02-19T00:00
#Saturn		tao_sat_sw	1990-01-01T01:30	2017-02-19T00:00
1ab47144   Goutte   Add new menus, up...
852
853

toots:
a2dfc4fb   Goutte   Add Stereo-A and ...
854
855
856
857
  - date: "2019-03-29"
    text: "Enable Stereo-A and Stereo-B input sources."
  - date: "2019-02-01"
    text: "Add Saturn's Auroral Catalog."
1ab47144   Goutte   Add new menus, up...
858
859
860
861
  - date: "2018-11-16"
    text: "New changes to the UI, and more icons."
  - date: "2018-10-02"
    text: "Adding an About page."