Blame view

config.yml 18 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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
    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:
        - slug: 'omni_hour_all'
          parameters:
            pdyn: 'RamP'
        - slug: 'ace_swepam_real_1h'
          # [u'Time', u'Dens', u'Vel', u'Temp', u'flag', u'StartTime', u'StopTime']
          parameters:
            dens: 'Dens'
            vtot: 'Vel'
            temp: 'Temp'
            #btan: 'Bgsm'  # /!. VECTOR2 (actually, does not exist)
      sa:
        - slug: 'omni_hour_all'
          parameters:
            pdyn: 'RamP'
        - slug: 'ace_swepam_real_1h'
          parameters:
            dens: 'Dens'
            vtot: 'Vel'
            temp: 'Temp'
      sb:
        - slug: 'omni_hour_all'
          parameters:
            pdyn: 'RamP'
        - slug: 'ace_swepam_real_1h'
          parameters:
            dens: 'Dens'
            vtot: 'Vel'
            temp: 'Temp'
    locked: false
    default: true
  - type: 'planet'
    slug: 'mars'
    name: 'Mars'
    title: 'Mars'
    orbit:
297a7dfc   Goutte   Add support for i...
321
      models:
79509300   hitier   Reformat YAML
322
323
324
325
326
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
        - 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...
387
      models:
79509300   hitier   Reformat YAML
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
        - slug: 'jupiter_orb_all'
      semimajor: 5.45516759
      semiminor: 4.95155843
    models:
      om:
        - slug: 'tao_jup_sw'
      art:
        - slug: 'tao_jup_swrt'
      dsc:
        - slug: 'tao_jup_dsc'
      solo:
        - slug: 'tao_jup_solo'
      sa:
        - slug: 'tao_jup_sta'
      sb:
        - slug: 'tao_jup_stb'
    tap:
      target_name: 'Jupiter'
    locked: false
    default: false
  - type: 'planet'
    slug: 'saturn'
    name: 'Saturn'
    title: 'Saturn'
    orbit:
8644387c   Goutte   Use real data.
413
      models:
79509300   hitier   Reformat YAML
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
        - slug: 'saturn_orb_all'
      semimajor: 9.53707032
      semiminor: 9.5230773
    models:
      om:
        - slug: 'tao_sat_sw'
      art:
        - slug: 'tao_sat_swrt'
      dsc:
        - slug: 'tao_sat_dsc'
      solo:
        - slug: 'tao_sat_solo'
      sa:
        - slug: 'tao_sat_sta'
      sb:
        - slug: 'tao_sat_stb'
    tap:
      target_name: 'Saturn'
    locked: false
    default: false
  - type: 'planet'
    slug: 'uranus'
    name: 'Uranus'
    title: 'Uranus'
    orbit:
d226f791   Goutte   Uranus smells lik...
439
      models:
79509300   hitier   Reformat YAML
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
        - slug: 'uranus_orb_all'
      semimajor: 19.19
      semiminor: 19.17
    models:
      om:
        - slug: 'tao_ura_sw'
      art:
        - slug: 'tao_ura_swrt'
      dsc:
        - slug: 'tao_ura_dsc'
      solo:
        - slug: 'tao_ura_solo'
      sa:
        - slug: 'tao_ura_sta'
      sb:
        - slug: 'tao_ura_stb'
    locked: false
    default: false
  - type: 'planet'
    slug: 'neptune'
    name: 'Neptune'
    title: 'Neptune'
    orbit:
dfc53ac3   Goutte   Enable Neptune.
463
      models:
79509300   hitier   Reformat YAML
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
        - slug: 'neptune_orb_all'
      semimajor: 30.06896348
      semiminor: 30.06785516
    models:
      om:
        - slug: 'tao_nep_sw'
      art:
        - slug: 'tao_nep_swrt'
      dsc:
        - slug: 'tao_nep_dsc'
      solo:
        - slug: 'tao_nep_solo'
      sa:
        - slug: 'tao_nep_sta'
      sb:
        - slug: 'tao_nep_stb'
    locked: false
    default: false
9b42ee98   hitier   Add Probes source...
482
  # Bepi Colombo source slug, put it just before the Bepi Colombo data slug
79509300   hitier   Reformat YAML
483
484
485
486
487
  - type: 'source'
    slug: 'bepi_src'
    name: 'SoloColombo Source'
    title: 'SoloColombo Source'
    orbit:
9b42ee98   hitier   Add Probes source...
488
      models:
79509300   hitier   Reformat YAML
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
        - 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
511
      models:
79509300   hitier   Reformat YAML
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
        - 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...
529
      models:
79509300   hitier   Reformat YAML
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
        - 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
556
      models:
79509300   hitier   Reformat YAML
557
558
559
560
561
562
563
564
565
566
567
        - 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...
568
  # Parker Solar Probe source slug, put it just before the Parker Solar Probe data slug
79509300   hitier   Reformat YAML
569
570
571
572
573
  - type: 'source'
    slug: 'psp_src'
    name: 'Parker Source'
    title: 'Parker Source'
    orbit:
9b42ee98   hitier   Add Probes source...
574
      models:
79509300   hitier   Reformat YAML
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
        - 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
597
      models:
79509300   hitier   Reformat YAML
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
        - 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.
614
      models:
79509300   hitier   Reformat YAML
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
        - 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.
637
      models:
79509300   hitier   Reformat YAML
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
        - 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...
656
      models:
79509300   hitier   Reformat YAML
657
658
659
660
661
662
663
664
665
666
667
668
        - 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...
669
670


6060b797   Goutte   Add config sample...
671
672
673
674
675
676
677
678
# 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...
679
680

toots:
a2dfc4fb   Goutte   Add Stereo-A and ...
681
682
683
684
  - 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...
685
686
687
688
  - date: "2018-11-16"
    text: "New changes to the UI, and more icons."
  - date: "2018-10-02"
    text: "Adding an About page."