Blame view

content.yml 38.2 KB
50cbf64e   Goutte   Add the YAML cont...
1
2
# This YAML file holds some of the content of the website, for convenience.
# Learn YAML, it's worth it: http://sweetohm.net/article/introduction-yaml.html
28f7c8ff   Goutte   Add more content....
3
# /!. IF YOU BREAK THIS FILE YOU BREAK THE WEBSITE.  TREAD CAREFULLY.
50cbf64e   Goutte   Add the YAML cont...
4
5
6
7

# Metadata about this website
meta:
  title: Travel Carbon Footprint Calculator
1f7dc110   Antoine Goutenoir   Provide sample fi...
8
9
  description: |
    A travel carbon footprint calculator for researchers and event organizers.
50cbf64e   Goutte   Add the YAML cont...
10
11
12
  authors:
    - name:  Didier Barret
      email: dbarret@irap.omp.eu
63eca56b   Antoine Goutenoir   Continue structur...
13
      role:  Principal Investigator
50cbf64e   Goutte   Add the YAML cont...
14
    - name:  Antoine Goutenoir
a3e9d0fc   Antoine Goutenoir   Fix home plot leg...
15
      email: antoine@goutenoir.com
63eca56b   Antoine Goutenoir   Continue structur...
16
      role:  Software Ninja
a3e9d0fc   Antoine Goutenoir   Fix home plot leg...
17
18
19
    - name:  Jean-Michel Glorian
      email: Jean-Michel.Glorian@irap.omp.eu
      role:  Benevolent Wizard
63eca56b   Antoine Goutenoir   Continue structur...
20
21


a03065f3   Antoine Goutenoir   Squeeze in anothe...
22
23
24
25
26
27
28
29
# Global configuration for all models
shared_config:
  # In kg/km.
  train_emission: 0.023
  # Multiplier to approximate conversion of Great Circle Distances to Road
  gcd_to_road_scale: 1.3


63eca56b   Antoine Goutenoir   Continue structur...
30
31
# Aka. Laws
models:
8e98eb07   Didier BARRET   Uploaded the whol...
32
  - name: Atmosfair (RFI=3 for altitude > 9 km)
8a74d49c   Antoine Goutenoir   Add the model usi...
33
34
35
36
    # Slugged version of the display name above
    # Only lowercase alphanumeric, starting with a letter, using - as liaison
    # In other words, MUST match ^[a-z]([a-z0-9-]*[a-z0-9])?$ eg: icao-with-rfi
    # MUST be unique, two models MUST NOT have the same slug.
1ae3ccd1   Antoine Goutenoir   Review and fix th...
37
    slug: atmosfair-rfi
8e98eb07   Didier BARRET   Uploaded the whol...
38
39
40
41
42
    # There MUST exist a python file named like this in `flaskr/laws`
    # And it MUST contain a class named EmissionModel
    # Please keep this lowercased, letters-only (or I will breathe fire)
    file: travel_emission_lerp_fit
    # Color MUST be in the hex form, without alpha
1ae3ccd1   Antoine Goutenoir   Review and fix th...
43
    color: "#9933ff"
b0b76147   Antoine Goutenoir   Prepare the futur...
44
45
    # Whether this model is selected by default in the list.
    selected: true
8e98eb07   Didier BARRET   Uploaded the whol...
46
47
48
49
50
51
52
53
54
55
56
    # The configuration that will be fed to the model.
    # May be anything, really.  Go bonkers!
    config:
      plane_emission_linear_fit:
        # A coefficient applied to the distance
        connecting_flights_scale: 1.05
        # Radiative Forcing Index
        # Multiplier after scaling
        rfi: 1.0
        # Flat scalar to add before scaling with laws
        offset_before: 0
a03065f3   Antoine Goutenoir   Squeeze in anothe...
57
        # Scalar to multiply before scaling with laws
8e98eb07   Didier BARRET   Uploaded the whol...
58
59
        scale_before: 1
        # The travel_emission_lerp_fit uses points instead of intervals
c691f98f   Antoine Goutenoir   Pretty sure these...
60
        # List of (distance in km, footprint in kg)
8e98eb07   Didier BARRET   Uploaded the whol...
61
        points:
a0e15de2   Antoine Goutenoir   Prepare the form ...
62
63
64
65
66
67
68
          - [     0.0,    0.0            ]
          - [   299.9,    0.0            ]
          - [   300.0,  100.771075677223 ]
          - [  3999.9,  866.237395584634 ]
          - [  4000.0,  844.203401814933 ]
          - [ 19999.9, 5606.129335551792 ]
          - [ 25000.0, 7094.270252762378 ]
8c12ca38   Antoine Goutenoir   Comment or remove...
69

da55ef2d   Didier BARRET   Update the text o...
70
  - name: ADEME (RFI=2.0)
77ffadab   Antoine Goutenoir   Add a second (dum...
71
72
73
74
    # Slugged version of the display name above
    # Only lowercase alphanumeric, starting with a letter, using - as liaison
    # In other words, MUST match ^[a-z]([a-z0-9-]*[a-z0-9])?$ eg: icao-with-rfi
    # MUST be unique, two models MUST NOT have the same slug.
1ae3ccd1   Antoine Goutenoir   Review and fix th...
75
    slug: ademe-rfi
77ffadab   Antoine Goutenoir   Add a second (dum...
76
    # There MUST exist a python file named like this in `flaskr/laws`
8a74d49c   Antoine Goutenoir   Add the model usi...
77
78
79
    # And it MUST contain a class named EmissionModel
    # Please keep this lowercased, letters-only (or I will breathe fire)
    file: travel_emission_lerp_fit
4c862b54   Antoine Goutenoir   Add a grouped bar...
80
    # Color MUST be in the hex form, without alpha
1ae3ccd1   Antoine Goutenoir   Review and fix th...
81
    color: "#33ff99"
b0b76147   Antoine Goutenoir   Prepare the futur...
82
83
    # Whether this model is selected by default in the list.
    selected: true
8a74d49c   Antoine Goutenoir   Add the model usi...
84
85
86
87
88
89
90
91
    # The configuration that will be fed to the model.
    # May be anything, really.  Go bonkers!
    config:
      plane_emission_linear_fit:
        # A coefficient applied to the distance
        connecting_flights_scale: 1.05
        # Radiative Forcing Index
        # Multiplier after scaling
a0e15de2   Antoine Goutenoir   Prepare the form ...
92
        # DEPRECATED
8e98eb07   Didier BARRET   Uploaded the whol...
93
        rfi: 1.0
aab8077d   Antoine Goutenoir   Document the new ...
94
        # Flat scalar to add before scaling with laws
8a74d49c   Antoine Goutenoir   Add the model usi...
95
        offset_before: 0
aab8077d   Antoine Goutenoir   Document the new ...
96
        # Flat scalar to multiply before scaling with laws
8a74d49c   Antoine Goutenoir   Add the model usi...
97
        scale_before: 1
aab8077d   Antoine Goutenoir   Document the new ...
98
        # The travel_emission_lerp_fit uses points instead of intervals
c691f98f   Antoine Goutenoir   Pretty sure these...
99
        # List of (distance in km, footprint in kg)
8a74d49c   Antoine Goutenoir   Add the model usi...
100
        points:
da55ef2d   Didier BARRET   Update the text o...
101

384c8535   Didier BARRET   Updated coefficie...
102
103
          - [0.0, 0.0 ]
          - [299.9, 0.0 ]
da55ef2d   Didier BARRET   Update the text o...
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
          - [300.0, 279.25625 ]
          - [999.9, 429.60351875000003 ]
          - [1000.0, 429.6249999999999 ]
          - [1999.9, 887.2042375 ]
          - [2000, 887.2499999999999 ]
          - [2999.9, 1051.1086125 ]
          - [3000, 1051.1249999999993 ]
          - [3999.9, 1046.0005125000005 ]
          - [4000, 1046.0 ]
          - [4999.9, 1330.8048499999998 ]
          - [5000, 1330.833333333333 ]
          - [5999.9, 1386.994383333333 ]
          - [6000, 1387.0000000000005 ]
          - [6999.9, 1475.241175 ]
          - [7000, 1475.2499999999998 ]
          - [7999.9, 1727.9747249999996 ]
          - [8000, 1728.0000000000014 ]
          - [8999.9, 2006.9721000000009 ]
          - [9000, 2007.0000000000005 ]
          - [9999.9, 2177.4829500000005 ]
          - [10000, 2177.499999999999 ]
          - [10999.9, 2414.476299999998 ]
          - [11000, 2414.4999999999995 ]
          - [19999.9, 4459.977272222222 ]
          - [25000.0, 5596.388888888889 ]
8e98eb07   Didier BARRET   Uploaded the whol...
129
130


4e47450d   Didier BARRET   Reordering of ADE...
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
 
  - name: MyClimate (RFI=2)
    # Slugged version of the display name above
    # Only lowercase alphanumeric, starting with a letter, using - as liaison
    # In other words, MUST match ^[a-z]([a-z0-9-]*[a-z0-9])?$ eg: icao-with-rfi
    # MUST be unique, two models MUST NOT have the same slug.
    slug: my-climate-rfi
    # There MUST exist a python file named like this in `flaskr/laws`
    # And it MUST contain a class named EmissionModel
    # Please keep this lowercased, letters-only (or I will breathe fire)
    file: travel_emission_lerp_fit
    # Color MUST be in the hex form, without alpha
    color: "#99ff33"
    # Whether this model is selected by default in the list.
    selected: true
    # The configuration that will be fed to the model.
    # May be anything, really.  Go bonkers!
    config:
      plane_emission_linear_fit:
        # A coefficient applied to the distance
        connecting_flights_scale: 1.05
        # Radiative Forcing Index
        # Multiplier after scaling
        # DEPRECATED
        rfi: 1.0
        # Flat scalar to add before scaling with laws
        offset_before: 95
        # Flat scalar to multiply before scaling with laws
        scale_before: 1
        # The travel_emission_lerp_fit uses points instead of intervals
        # List of (distance in km, footprint in kg)
        points:
          - [0.0, 0.0 ]
          - [299.9, 0.0 ]
          - [300.0, 120.42928309599999 ]
          - [1499.9, 278.86980907246215 ]
          - [1500.0, 278.8830135500002 ]
          - [2499.9, 438.3026953954595 ]
          - [2500, 438.3186389580005 ]
          - [19999.9, 3335.611941663665 ]
          - [25000.0, 4163.431314509144 ]


787ebee4   Didier BARRET   Fixed RF by RFI
174
  - name: DEFRA (RFI=1.9)
8e98eb07   Didier BARRET   Uploaded the whol...
175
176
177
178
    # Slugged version of the display name above
    # Only lowercase alphanumeric, starting with a letter, using - as liaison
    # In other words, MUST match ^[a-z]([a-z0-9-]*[a-z0-9])?$ eg: icao-with-rfi
    # MUST be unique, two models MUST NOT have the same slug.
1ae3ccd1   Antoine Goutenoir   Review and fix th...
179
    slug: defra-rfi
8e98eb07   Didier BARRET   Uploaded the whol...
180
181
182
183
184
    # There MUST exist a python file named like this in `flaskr/laws`
    # And it MUST contain a class named EmissionModel
    # Please keep this lowercased, letters-only (or I will breathe fire)
    file: travel_emission_lerp_fit
    # Color MUST be in the hex form, without alpha
1ae3ccd1   Antoine Goutenoir   Review and fix th...
185
    color: "#3399ff"
b0b76147   Antoine Goutenoir   Prepare the futur...
186
187
    # Whether this model is selected by default in the list.
    selected: true
8e98eb07   Didier BARRET   Uploaded the whol...
188
189
190
191
192
193
194
195
    # The configuration that will be fed to the model.
    # May be anything, really.  Go bonkers!
    config:
      plane_emission_linear_fit:
        # A coefficient applied to the distance
        connecting_flights_scale: 1.05
        # Radiative Forcing Index
        # Multiplier after scaling
a0e15de2   Antoine Goutenoir   Prepare the form ...
196
        # DEPRECATED
8e98eb07   Didier BARRET   Uploaded the whol...
197
198
199
200
201
202
        rfi: 1.0
        # Flat scalar to add before scaling with laws
        offset_before: 0
        # Flat scalar to multiply before scaling with laws
        scale_before: 1
        # The travel_emission_lerp_fit uses points instead of intervals
c691f98f   Antoine Goutenoir   Pretty sure these...
203
        # List of (distance in km, footprint in kg)
8e98eb07   Didier BARRET   Uploaded the whol...
204
        points:
384c8535   Didier BARRET   Updated coefficie...
205
206
207
208
209
210
211
212
213
          - [0.0, 0.0 ]
          - [299.9, 0.0 ]
          - [300.0, 47.496000000000016 ]
          - [499.9, 79.14416800000002 ]
          - [500.0, 78.03232675954409 ]
          - [3699.9, 576.0667775328388 ]
          - [3700.0, 541.2334271596557 ]
          - [19999.9, 2878.9047733493503 ]
          - [25000.0, 3596.0006143105275 ]
8e98eb07   Didier BARRET   Uploaded the whol...
214

d228b73f   Didier BARRET   Update content fi...
215
  - name: French Ministry of Ecology (no RF, not recommended)
976595a3   Didier BARRET   Added the French ...
216
217
218
219
220
221
222
223
224
225
    # Slugged version of the display name above
    # Only lowercase alphanumeric, starting with a letter, using - as liaison
    # In other words, MUST match ^[a-z]([a-z0-9-]*[a-z0-9])?$ eg: icao-with-rfi
    # MUST be unique, two models MUST NOT have the same slug.
    slug: fr-ministry-ecology-no-rfi
    # There MUST exist a python file named like this in `flaskr/laws`
    # And it MUST contain a class named EmissionModel
    # Please keep this lowercased, letters-only (or I will breathe fire)
    file: travel_emission_lerp_fit
    # Color MUST be in the hex form, without alpha
9fdb4835   Antoine Goutenoir   Update the homepa...
226
    color: "#333333"
976595a3   Didier BARRET   Added the French ...
227
    # Whether this model is selected by default in the list.
e06911f0   Antoine Goutenoir   If it's not recom...
228
    selected: false
976595a3   Didier BARRET   Added the French ...
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
    # The configuration that will be fed to the model.
    # May be anything, really.  Go bonkers!
    config:
      plane_emission_linear_fit:
        # A coefficient applied to the distance
        connecting_flights_scale: 1.05
        # Radiative Forcing Index
        # Multiplier after scaling
        # DEPRECATED
        rfi: 1.0
        # Flat scalar to add before scaling with laws
        offset_before: 0
        # Flat scalar to multiply before scaling with laws
        scale_before: 1
        # The travel_emission_lerp_fit uses points instead of intervals
        # List of (distance in km, footprint in kg)
        points:
          - [0.0, 0.0 ]
          - [299.9, 0.0 ]
          - [300.0, 103.02499999999998 ]
          - [999.9, 158.492075 ]
          - [1000.0, 158.50000000000003 ]
          - [1999.9, 250.32414999999997 ]
          - [2000, 250.33333333333326 ]
          - [2999.9, 301.9948333333333 ]
          - [3000, 302.0000000000004 ]
          - [3999.9, 447.9854000000004 ]
          - [4000, 448.0000000000002 ]
          - [4999.9, 587.48605 ]
          - [5000, 587.4999999999999 ]
          - [5999.9, 608.9978499999997 ]
          - [6000, 609.0000000000002 ]
          - [6999.9, 629.9979000000001 ]
          - [7000, 629.9999999999999 ]
          - [7999.9, 719.9909999999996 ]
          - [8000, 720.0000000000002 ]
          - [8999.9, 760.4959500000004 ]
          - [9000, 760.4999999999997 ]
          - [9999.9, 864.9895499999997 ]
          - [10000, 865.0000000000005 ]
          - [10999.9, 1039.482549999999 ]
          - [11000, 1035.9000000000015 ]
          - [19999.9, 1879.1906300000016 ]
          - [25000.0, 2347.7000000000016 ]

575b2a94   Didier BARRET   Update text.
274
  - name: KLM data (no RF, not recommended)
8e98eb07   Didier BARRET   Uploaded the whol...
275
276
277
278
    # Slugged version of the display name above
    # Only lowercase alphanumeric, starting with a letter, using - as liaison
    # In other words, MUST match ^[a-z]([a-z0-9-]*[a-z0-9])?$ eg: icao-with-rfi
    # MUST be unique, two models MUST NOT have the same slug.
1ae3ccd1   Antoine Goutenoir   Review and fix th...
279
    slug: klm-data-no-rfi
8e98eb07   Didier BARRET   Uploaded the whol...
280
281
282
283
284
    # There MUST exist a python file named like this in `flaskr/laws`
    # And it MUST contain a class named EmissionModel
    # Please keep this lowercased, letters-only (or I will breathe fire)
    file: travel_emission_lerp_fit
    # Color MUST be in the hex form, without alpha
1ae3ccd1   Antoine Goutenoir   Review and fix th...
285
    color: "#ff3399"
b0b76147   Antoine Goutenoir   Prepare the futur...
286
287
    # Whether this model is selected by default in the list.
    selected: false
8e98eb07   Didier BARRET   Uploaded the whol...
288
289
290
291
292
293
294
295
    # The configuration that will be fed to the model.
    # May be anything, really.  Go bonkers!
    config:
      plane_emission_linear_fit:
        # A coefficient applied to the distance
        connecting_flights_scale: 1.05
        # Radiative Forcing Index
        # Multiplier after scaling
a0e15de2   Antoine Goutenoir   Prepare the form ...
296
        # DEPRECATED
8e98eb07   Didier BARRET   Uploaded the whol...
297
298
299
300
301
302
        rfi: 1.0
        # Flat scalar to add before scaling with laws
        offset_before: 0
        # Flat scalar to multiply before scaling with laws
        scale_before: 1
        # The travel_emission_lerp_fit uses points instead of intervals
c691f98f   Antoine Goutenoir   Pretty sure these...
303
        # List of (distance in km, footprint in kg)
8e98eb07   Didier BARRET   Uploaded the whol...
304
        points:
384c8535   Didier BARRET   Updated coefficie...
305
306
307
308
309
310
311
          - [0.0, 0.0 ]
          - [299.9, 0.0 ]
          - [300.0, 41.883578628476144 ]
          - [2499.9, 214.70184186944394 ]
          - [2500.0, 261.6807087092951 ]
          - [14999.9, 962.2587735768744 ]
          - [25000.0, 1522.7313138757793 ]
50cbf64e   Goutte   Add the YAML cont...
312

575b2a94   Didier BARRET   Update text.
313
  - name: ICAO (no RF, not recommended)
c0e54666   Didier BARRET   Just update the I...
314
315
316
317
    # Slugged version of the display name above
    # Only lowercase alphanumeric, starting with a letter, using - as liaison
    # In other words, MUST match ^[a-z]([a-z0-9-]*[a-z0-9])?$ eg: icao-with-rfi
    # MUST be unique, two models MUST NOT have the same slug.
97aa79f7   Didier BARRET   Update content.
318
    slug: icao-no-rfi
c0e54666   Didier BARRET   Just update the I...
319
320
321
322
323
    # There MUST exist a python file named like this in `flaskr/laws`
    # And it MUST contain a class named EmissionModel
    # Please keep this lowercased, letters-only (or I will breathe fire)
    file: travel_emission_lerp_fit
    # Color MUST be in the hex form, without alpha
1ae3ccd1   Antoine Goutenoir   Review and fix th...
324
    color: "#ff9933"
b0b76147   Antoine Goutenoir   Prepare the futur...
325
326
    # Whether this model is selected by default in the list.
    selected: false
c0e54666   Didier BARRET   Just update the I...
327
328
329
330
331
332
333
334
    # The configuration that will be fed to the model.
    # May be anything, really.  Go bonkers!
    config:
      plane_emission_linear_fit:
        # A coefficient applied to the distance
        connecting_flights_scale: 1.05
        # Radiative Forcing Index
        # Multiplier after scaling
a0e15de2   Antoine Goutenoir   Prepare the form ...
335
        # DEPRECATED
c0e54666   Didier BARRET   Just update the I...
336
337
338
339
340
341
        rfi: 1.0
        # Flat scalar to add before scaling with laws
        offset_before: 0
        # Flat scalar to multiply before scaling with laws
        scale_before: 1
        # The travel_emission_lerp_fit uses points instead of intervals
1bdf58eb   Antoine Goutenoir   Review the new IC...
342
        # List of (distance in km, footprint in kg)
c0e54666   Didier BARRET   Just update the I...
343
        points:
1a7fc044   Didier BARRET   Updated ICAO data.
344
345
346
347
348
349
350
          - [0.0, 0.0 ]
          - [299.9, 0.0 ]
          - [300.0, 67.00585705041823 ]
          - [2499.9, 211.09825928042045 ]
          - [2500.0, 206.528816915788 ]
          - [14999.9, 663.8204584246745 ]
          - [25000.0, 1029.6603566841018 ]
50cbf64e   Goutte   Add the YAML cont...
351

b0b76147   Antoine Goutenoir   Prepare the futur...
352

a728e600   Antoine Goutenoir   Allow configurati...
353
354
355
# The grouped barchart displayed on the home page.
laws_plot:
  distances:
a728e600   Antoine Goutenoir   Allow configurati...
356
357
358
359
360
361
362
363
364
365
366
    - 350.0
    - 500.0
    - 1000.0
    - 1500.0
    - 2500.0
    - 3000.0
    - 4500.0
    - 5000.0
    - 8000.0
    - 10000.0
    - 12000.0
da55ef2d   Didier BARRET   Update the text o...
367
368
369
    - 15000.0
    - 20000.0
    - 25000.0
a728e600   Antoine Goutenoir   Allow configurati...
370
371


28f7c8ff   Goutte   Add more content....
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
# The content is Markdown.  HTML is also allowed.
# If you also want Markdown in the titles, just ask.
home:
  # The hero block (aka. jumbotron) is the top-level, salient block
  # It's like a welcoming mat :)
  hero:
    title: Estimate your travel carbon footprint
    # Using a pipe (|) allows you to set multiline content
    # Careful, indentation matters.
    description: |
      Travel footpint calculator provided by Didier Barret
      <br>
      <span class="glyphicon glyphicon-globe" aria-hidden="true"></span>
      CNRS,
      <span class="glyphicon glyphicon-home" aria-hidden="true"></span>
      [IRAP](http://www.irap.omp.eu),
      <span class="glyphicon glyphicon-user" aria-hidden="true"></span>
      [@DidierBarret](https://twitter.com/DidierBarret),
      <span class="glyphicon glyphicon-envelope" aria-hidden="true"></span>
      [didier.barret@gmail.com](mailto:didier.barret@gmail.com)

77d3f656   Antoine Goutenoir   Support any numbe...
393
394
395
396
397
  # Three blocks per section.
#  sections:

  # You can also use columns.
  columns:
28f7c8ff   Goutte   Add more content....
398
399
    - blocks:

9f68bde0   Didier BARRET   Update content fi...
400
      - title: What does the tool do?
28f7c8ff   Goutte   Add more content....
401
        content: |
a0e15de2   Antoine Goutenoir   Prepare the form ...
402
          The tool computes the carbon footprint associated with round
76d50acf   Didier BARRET   Update content
403
404
          trip flights, according to the methodology of several publicly
          available calculators.
da55ef2d   Didier BARRET   Update the text o...
405
          It does so for a set of trips from a given city of origin
7334c89a   Didier BARRET   Update the format...
406
407
408
          to a set of destinations. Similarly, the tool allows to compute 
          the carbon footprint of a larger set of trips, corresponding to a 
          conference, a meeting and so on. For this, the city of departure 
4b99f7ee   Didier BARRET   Update content file.
409
          for each participant to the event has first to be provided. 
7334c89a   Didier BARRET   Update the format...
410
411
          If multiple destination cities are provided, the tool ranks those 
          cities according to the associated carbon footprint. 
77d3f656   Antoine Goutenoir   Support any numbe...
412

7334c89a   Didier BARRET   Update the format...
413
414
415
          While online calculators enable to compute the footprint of a 
          limited number of trips, this tool enables to compute the 
          footprint of a larger number of trips in an automated way. 
77d3f656   Antoine Goutenoir   Support any numbe...
416

d228b73f   Didier BARRET   Update content fi...
417
          Furthermore, it provides an estimate based on data from seven 
7334c89a   Didier BARRET   Update the format...
418
419
          different methods, whose estimates can differ significantly. If 
          more than one method is selected by the user, the tool returns 
4b99f7ee   Didier BARRET   Update content file.
420
          the mean of the estimates of all selected methods.  
28f7c8ff   Goutte   Add more content....
421

c3c98851   Didier BARRET   Major update of c...
422
      - title: How does the tool work?
28f7c8ff   Goutte   Add more content....
423
        content: |
7334c89a   Didier BARRET   Update the format...
424
425
426
427
          A round trip is defined by a city pair. The two cities are 
          geolocated and from their longitude and latitude, the great 
          circle distance is computed. This is the shortest path a plane 
          can follow. Some methods thus consider uplift correction 
769d3fdd   Didier BARRET   Further update of...
428
429
          factors to account for deviations from the shortest paths, e.g., 
          when a plane avoids bad weather conditions. In 
7334c89a   Didier BARRET   Update the format...
430
431
432
433
434
435
436
437
          addition, two cities may not be connected by a direct flight. 
          This is accounted for by increasing by 5% the great circle 
          distance. Each method provides the carbon dioxide emission 
          in kg as a function of the flight distance in km. Thus from the 
          increased great circle distance, the carbon dioxide emission of 
          a flight associated with a trip between a city pair is computed 
          and multiplied by two to account for a round trip. 

28f7c8ff   Goutte   Add more content....
438

c3c98851   Didier BARRET   Major update of c...
439
      - title: Which methods are used? 
28f7c8ff   Goutte   Add more content....
440
        content: |
d228b73f   Didier BARRET   Update content fi...
441
          The tool incorporates seven different methods, among the most 
7334c89a   Didier BARRET   Update the format...
442
          widely used, and for which the methodology used is 
5e544261   Didier BARRET   Update home page ...
443
444
445
446
447
448
449
450
          documented (see additional resources later). This tool is by no means
          a critical review of the different methods. It takes the methods as
          they are described and presented. The methods may differ in their 
          assumptions (e.g. with or without radiative forcing included) 
          or in the perimeter considered (e.g. adding to the flight emissions,
          the one associated with the production phase and transport of the kerosene). 
          The tool attempts to implement 
          each method to the highest possible level of accuracy. 
4b99f7ee   Didier BARRET   Update content file.
451
          Providing more than one method enables to get 
7334c89a   Didier BARRET   Update the format...
452
453
454
455
456
          a mean value, while illustrating the significant differences in 
          their estimates. In alphabetic order, the data considered are 
          from ADEME: the French Environment & Energy Management 
          Agency, atmosfair: a German carbon offsetting company, 
          DEFRA: the UK Department for Environment, Food & Rural 
d228b73f   Didier BARRET   Update content fi...
457
458
          Affairs, the French Ministry for the Ecological and Inclusive Transition, 
          ICAO: International Civil Aviation Organization, from the 
7334c89a   Didier BARRET   Update the format...
459
          KLM carbon compensation service data and finally from 
91ff9893   Didier BARRET   Update on myclimate.
460
          myclimate, a Carbon offseting company, used in particular by Lufthansa. 
7334c89a   Didier BARRET   Update the format...
461
          
a24ca744   Antoine Goutenoir   Add the scaling l...
462
463
          _This list is obviously not exhaustive but represents
          a variety of estimates from lower to higher values._
77d3f656   Antoine Goutenoir   Support any numbe...
464

2131a2d1   Didier BARRET   Update content.yml
465

c3c98851   Didier BARRET   Major update of c...
466
467
      - title: How are the different methods built? 
        content: |
7334c89a   Didier BARRET   Update the format...
468
469
470
471
472
473
474
475
476
477
478
          What is needed for each method is a function giving the 
          carbon dioxide emission as a function of the flight distance. 
          ADEME and DEFRA provide mean emission factors, as a 
          function of flight distance. Myclimate provides an analytical 
          formula. For ICAO and atmosfair, the on-line calculators have 
          been run for a wide range of flights of varying distances (~100 
          flights spanning from 300 km to 12000 km) and the estimates 
          have been fitted with linear functions, covering adjacent 
          distance intervals. For its carbon compensation service, KLM 
          provides on its web site a table of emissions for a large range 
          of flights. The KLM data have been also been fitted with linear 
f92f9bc9   Didier BARRET   Update section on...
479
          functions. Differences up to a few tens of percent may be found between
76d50acf   Didier BARRET   Update content
480
          the data and the linearly interpolated values. 
7334c89a   Didier BARRET   Update the format...
481

1e7e25a7   Antoine Goutenoir   Fix the internal ...
482
483
484
      - title: What about radiative forcing?
        slug: rfi
        content: |
77d3f656   Antoine Goutenoir   Support any numbe...
485
486
487
488
489
          Radiative forcing accounts for the fact that aviation contributes
          to climate change more than just with the emission of carbon dioxide
          from burning fuels, by releasing gases and particles directly
          into the upper troposphere and lower stratosphere
          where they have an impact on atmospheric composition.
a0e15de2   Antoine Goutenoir   Prepare the form ...
490
491
492
493
          These gases and particles include
          carbon dioxide (CO<sub>2</sub>),
          ozone (O<sub>3</sub>),
          and methane (CH<sub>4</sub>);
77d3f656   Antoine Goutenoir   Support any numbe...
494
495
496
497
498
          trigger formation of condensation trails (contrails);
          and may increase cirrus cloudiness;
          all of which contribute to climate change.
          A Radiative Forcing Index (RFI) of 1.9–2 is used by DEFRA,
          myclimate and recommended by ADEME
a24ca744   Antoine Goutenoir   Add the scaling l...
499
500
          (see discussion in [Jungbluth, N. & Meili,
          C. Int J Life Cycle Assess (2019) 24: 404](https://doi.org/10.1007/s11367-018-1556-3).).
77d3f656   Antoine Goutenoir   Support any numbe...
501
502
503
504
505
506
507
          ATMOSFAIR considers a multiplier of 3, for all emissions above 9 km,
          accounting for the profile of the flight.
          ICAO, on the other hand does not include a multiplier,
          arguing that the scientific community has not settle on a value!
          KLM data does not seem to account for radiative forcing either,
          as the estimates they provide are close, although a little higher,
          than the ones of ICAO.
769d3fdd   Didier BARRET   Further update of...
508
509
          Therefore, the methods based on ICAO, the French Ministry for the 
          Ecological and Inclusive Transition and KLM data are not recommended,
77d3f656   Antoine Goutenoir   Support any numbe...
510
          but given as methods providing the lowest emissions.
28f7c8ff   Goutte   Add more content....
511

a24ca744   Antoine Goutenoir   Add the scaling l...
512
513
          [![Models used](static/img/recap_scaling_laws.jpg)](static/img/recap_scaling_laws.jpg)

c3c98851   Didier BARRET   Major update of c...
514
      - title: Seating category
28f7c8ff   Goutte   Add more content....
515
        content: |
7334c89a   Didier BARRET   Update the format...
516
          The tool assumes economy seats in computing the carbon 
769d3fdd   Didier BARRET   Further update of...
517
518
519
          dioxide emission. On average it can be considered that the 
          footprint can be multiplied by ∼ 1.5, ∼ 2.0 and ∼ 2.5 
          for flying in Premium Economy, Business and First class. 
c3c98851   Didier BARRET   Major update of c...
520
521
522
          
      - title: Accounting for train emission
        content: |
da55ef2d   Didier BARRET   Update the text o...
523
          The minimum distance for flying (one leg of the round trip) 
769d3fdd   Didier BARRET   Further update of...
524
525
526
527
          is an input to be selected by the user (it is set to 500 km by default). 
          Below the minimum distance for flying, it is assumed that train is used.
          Deviations from the shortest path is accounted by a 
          1.35 multiplication factor. The tool thus assumes the 
7334c89a   Didier BARRET   Update the format...
528
          mean of the emission factors of national and international rails, 
769d3fdd   Didier BARRET   Further update of...
529
530
531
          as provided by DEFRA (i.e. 23 grams per passenger km). 
          To relate the duration of a train journey to a travel distance, 
          an average speed of 100 km/h is assumed. 
fb979c67   Didier BARRET   Update content
532
533

    - blocks:
c3c98851   Didier BARRET   Major update of c...
534
          
cde261ef   Didier BARRET   Fixed minor bugs ...
535
      - title: Input and output data
c3c98851   Didier BARRET   Major update of c...
536
        content: |
7334c89a   Didier BARRET   Update the format...
537
538
          The inputs are provided in US English for the city and country 
          names, without diacritics. On each line, the city and country 
1f7dc110   Antoine Goutenoir   Provide sample fi...
539
          names must be separated by a comma. Pasting a CSV file in the
77ff53d6   Didier BARRET   Update content
540
541
542
          form is possible, provided that a comma separates
          the city and country names. 

1f7dc110   Antoine Goutenoir   Provide sample fi...
543
544
          A round trip is defined by a city pair. If the user enters _cityA_ as
          the origin city, and twice _cityB_ as destinations, the tool returns
77ff53d6   Didier BARRET   Update content
545
          the cumulative emission and distance from two round trips 
1f7dc110   Antoine Goutenoir   Provide sample fi...
546
547
548
          involving _cityA_ and _cityB_, and indicates that 2 round trips were involved.
          The same happens if the user enters twice _cityA_ as the city of origin
          and _cityB_ as the sole destination.
77ff53d6   Didier BARRET   Update content
549
550

          Three types of inputs can be considered 
7334c89a   Didier BARRET   Update the format...
551
552
553
          depending on whether the user wants an “individual” estimate 
          or an estimate for a conference, meeting and so on. In the 
          former case, the “origin” city is unique and the “destination” 
77ff53d6   Didier BARRET   Update content
554
          cities may be multiple. The tool returns the carbon dioxide 
4b99f7ee   Didier BARRET   Update content file.
555
556
557
558
          equivalent emission for each city of destination. The tool can thus
          be run also for an organization interested to know about its travel 
          footprint, in which case the "origin" city is the city from which
          employees travel. In the later case, the “origin” cities are multiple 
7334c89a   Didier BARRET   Update the format...
559
          (i.e. the cities from which the participants to the conference 
77ff53d6   Didier BARRET   Update content
560
          depart from), and the “destination” city may be a single host city 
7334c89a   Didier BARRET   Update the format...
561
          or multiple host cities if the user wants to compare their 
77ff53d6   Didier BARRET   Update content
562
563
564
565
          associated footprint. If there is one destination, the tool returns 
          the carbon dioxide equivalent for each city of origin. If multiple 
          destinations are provided the tool returns the carbon dioxide 
          equivalent emission summed over all cities of 
4b99f7ee   Didier BARRET   Update content file.
566
567
          origin and for each city of destination. The cumulative round trip 
          distance to each city of destination is also provided. 
77ff53d6   Didier BARRET   Update content
568

76d50acf   Didier BARRET   Update content
569
          The result page provides a summary plot which can be 
4b99f7ee   Didier BARRET   Update content file.
570
571
572
          downloaded, as well as a csv and raw yaml file, which can be used for
          further processing. The csv file  lists the name of the 
          city as in the form, the address to which it 
7334c89a   Didier BARRET   Update the format...
573
574
575
          was geolocated, the carbon dioxide emission (in kg), the 
          distance travelled, the number of trips possible by train (i.e. 
          when the distance is less than the minimum flying distance, 
769d3fdd   Didier BARRET   Further update of...
576
          e.g. 500 km) and the number of trips by plane. The plot and the 
7334c89a   Didier BARRET   Update the format...
577
578
          csv file rank the cities against the carbon dioxide emissions. 

cde261ef   Didier BARRET   Fixed minor bugs ...
579
580
      - title: Trouble shooting
        content: |
7334c89a   Didier BARRET   Update the format...
581
582
          The estimation can go wrong if a city is not properly 
          geolocated. This may happen because the name of the city is 
d5474086   Antoine Goutenoir   Fix a typo.
583
          wrongly spelled or the geolocator (OpenStreetMap) is confused. An error
7334c89a   Didier BARRET   Update the format...
584
585
586
          should be listed at the end of the result page. Don’t be 
          surprised, if the name recovered by the geolocator is not 
          exactly the one you had expected (e.g. a city is located at the 
da55ef2d   Didier BARRET   Update the text o...
587
          address of an embassy). An error may also occur if the input file 
76d50acf   Didier BARRET   Update content
588
589
          submitted does not comply with the requested format, 
          including font encoding. 
da55ef2d   Didier BARRET   Update the text o...
590
          If nothing happens during a request, it 
7334c89a   Didier BARRET   Update the format...
591
592
          is most likely caused by the geolocator being unavailable. In 
          this case, try again a few minutes later.
cde261ef   Didier BARRET   Fixed minor bugs ...
593

c3c98851   Didier BARRET   Major update of c...
594
595
      - title: Caveats
        content: |
7334c89a   Didier BARRET   Update the format...
596
          The numbers provided by the tool do not come with 
769d3fdd   Didier BARRET   Further update of...
597
598
          uncertainties, and shall be considered indicative of the true emission. 
          However, the numbers can be 
7334c89a   Didier BARRET   Update the format...
599
600
          used for relative comparisons, e.g. when comparing two cities 
          for hosting a conference. 
c3c98851   Didier BARRET   Major update of c...
601
602
603
604
605
606
607
          
      - title: Confidentiality
        content: |
          The data provided in the form will remain confidential, as will be the results.
          
      - title: Disclaimer
        content: |
7334c89a   Didier BARRET   Update the format...
608
609
610
611
          This tool is provided on a best effort basis as a service to 
          members of the science community. The numbers provided 
          are informative and have obviously no legal value. 

c3c98851   Didier BARRET   Major update of c...
612
613
      - title: Reference
        content: |
769d3fdd   Didier BARRET   Further update of...
614
615
616
          Results from the tool may reference to Barret (2019, 
          The Athena X-ray Integral Field Unit travel footprint 
          calculator and its application to X-IFU related travels, in preparation). 
c3c98851   Didier BARRET   Major update of c...
617
 
fb979c67   Didier BARRET   Update content
618
619
620
621
622
      - title: Original motivation
        content: |
          Global warming is a threat for life on our planet. Emissions of 
          carbon dioxide by aircrafts keeps increasing, as the world 
          economy keeps growing (it is about 3% of the anthropogenic 
769d3fdd   Didier BARRET   Further update of...
623
624
          emissions nowadays). Carrying scientific research is generally associated 
          with traveling across the world, and thus air travel is likely to 
fb979c67   Didier BARRET   Update content
625
626
627
628
629
630
631
632
633
634
635
636
637
638
          dominate the carbon footprint of most scientists and is 
          likely to be large for developing international projects. This tool was 
          first developed to compute the travel footprint 
          associated with the development of the X-ray Integral 
          Field Unit to fly on board the Athena space observatory 
          in the early 2030s. The rather large number derived, 
          typically one hundred ton of carbon dioxide per bi-annual consortium meeting,
          imposed concrete actions to reduce the footprint 
          of the project, by re-considering the number of 
          large meetings, implementing different ways of interacting and 
          working collectively in a world-wide consortium. The tool was 
          further improved to easily compute the travel footprint associated 
          with individual traveling or with the organization of events, involving
          a large number of travels.  Finally, by comparing different, 
4b99f7ee   Didier BARRET   Update content file.
639
640
          widely used methods, providing so different estimates, the tool is
          expected to raise awareness within the scientific community 
fb979c67   Didier BARRET   Update content
641
642
643
644
          (and hopefully the authorities and medias) 
          about the lack of regulations or framework on the critical 
          matter of estimating aircraft emissions.

c3c98851   Didier BARRET   Major update of c...
645
646
      - title: Concluding note
        content: |
7334c89a   Didier BARRET   Update the format...
647
          As a personal note, I would like to stress that, as a scientist, I 
4b99f7ee   Didier BARRET   Update content file.
648
          find it very worrying that there are no standards 
7334c89a   Didier BARRET   Update the format...
649
650
651
652
653
654
655
656
657
658
659
660
661
662
          for computing the flight emissions, while we know that flight 
          travels, releasing carbon dioxide at high altitudes, contribute to 
          global warming. To take an example, the International Civil 
          Aviation Organization (ICAO) is a United Nations specialized 
          agency, established by States in 1944 to manage the 
          administration and governance of the Convention on 
          International Civil Aviation. ICAO has global responsibility for 
          the establishment of standards, recommended practices, and 
          guidance on various aspects of international civil aviation, 
          including environmental protection. How can ICAO ignore 
          radiative forcing in the results provided by its widely used on-
          line calculator? (which by the way is the calculator used by the 
          travel agency of my institute, being a public institution). The 
          IPCC in its 1999 report have defined the radiative forcing index 
769d3fdd   Didier BARRET   Further update of...
663
664
          to be between 2 and 4. Why ICAO is using 1? This shows the urgent 
          need to agree on a 
7334c89a   Didier BARRET   Update the format...
665
          common methodology accepted by all parties in computing 
4b99f7ee   Didier BARRET   Update content file.
666
          flight emission. May this tool help to raise 
7334c89a   Didier BARRET   Update the format...
667
          awareness on this issue. 
c3c98851   Didier BARRET   Major update of c...
668
          
28f7c8ff   Goutte   Add more content....
669
670
671
      - title: Additional resources
        content: |
          - Offset your flight with [atmosfair](https://www.atmosfair.de/en/offset/flight)
da55ef2d   Didier BARRET   Update the text o...
672
          - [ADEME](http://www.bilans-ges.ademe.fr/en/accueil)
28f7c8ff   Goutte   Add more content....
673
674
675
            (French Environment & Energy Management Agency)
          - [DEFRA](https://www.gov.uk/government/publications/greenhouse-gas-reporting-conversion-factors-2019)
            emission conversion factors 2019
28f7c8ff   Goutte   Add more content....
676
677
          - [ICAO](https://www.icao.int/environmental-protection/carbonoffset/pages/default.aspx)
            Carbon Emissions Calculator
144482ea   Didier BARRET   Updated content
678
          - [KLM data](https://www.klm.com/travel/nl_en/prepare_for_travel/fly_co2_neutral/all_about_sustainable_travel/index.htm)
97aa79f7   Didier BARRET   Update content.
679
            KLM data
84d9ee6c   Antoine Goutenoir   Markdown links do...
680
          - [GHG information for transport services, June 2019](https://www.ecologique-solidaire.gouv.fr/sites/default/files/Information_GES%20-%202019.pdf)
01eeef03   Didier BARRET   Updated link sect...
681
            from the French Ministry for the Ecological and Inclusive Transition 
97aa79f7   Didier BARRET   Update content.
682
683
          - [MyClimate](https://www.myclimate.org) 
            MyClimate
28f7c8ff   Goutte   Add more content....
684
685
          - L. Hackel [travel footprint calculator](https://lhackel.shinyapps.io/travel_footprint/)
            based on DEFRA emission factors
84d9ee6c   Antoine Goutenoir   Markdown links do...
686
          - [Wikipedia article on the environmental impact of aviation](https://en.wikipedia.org/wiki/Environmental_impact_of_aviation)
01eeef03   Didier BARRET   Updated link sect...
687
            Wikipedia article on the environmental impact of aviation
28f7c8ff   Goutte   Add more content....
688

28f7c8ff   Goutte   Add more content....
689
690
691
692
693
694


estimate:
  hero:
    title: Request an estimation
    description: |
c97ac886   Didier BARRET   Update content
695
      The results will be available <small>(almost)</small> immediately.
28f7c8ff   Goutte   Add more content....
696
      <br>
c97ac886   Didier BARRET   Update content
697
      It may take from a few seconds up to a few minutes,
28f7c8ff   Goutte   Add more content....
698
      depending on the amount of locations you provided.
8ee9f4a9   Antoine Goutenoir   Add additional co...
699

a1f12452   Antoine Goutenoir   Add the new conte...
700
701
702
703
704
  help:
    first_name: Fill these to say hello.
    last_name: We will never share your data with anyone.
    origin_addresses: |
      Use <code>en_US</code> city and country names, without diacritics.
9e44bb98   Antoine Goutenoir   Support file uplo...
705
      <br>
a1f12452   Antoine Goutenoir   Add the new conte...
706
707
708
709
      The comma matters.
      <br>
      This is either a home city and a country
      or the cities and countries of the participants to the conference, meeting…
9e44bb98   Antoine Goutenoir   Support file uplo...
710
711
712
713
714
    origin_addresses_file: |
      If you provide a file, we'll use it instead of the list on the left.
      <br>
      The spreadsheet's first sheet must have an <code>Address</code> column,
      or a <code>City</code> and <code>Country</code> columns.
1f7dc110   Antoine Goutenoir   Provide sample fi...
715
716
717
718
      <br>
      <a href="static/public/sample/sample_addresses.csv" target="_blank">Example CSV</a>
      ⋅
      <a href="static/public/sample/sample_addresses.xlsx" target="_blank">Example XLS</a>
a1f12452   Antoine Goutenoir   Add the new conte...
719
720
721
722
723
724
    destination_addresses: |
      This is either the cities and countries to travel to
      or the host city and country of the conference, meeting…
      <br>
      Please provide multiple cities and countries to compute the location
      of the minimum emission.
9e44bb98   Antoine Goutenoir   Support file uplo...
725
726
727
728
729
    destination_addresses_file: |
      If you provide a file, we'll use it instead of the list on the left.
      <br>
      The spreadsheet's first sheet must have an <code>Address</code> column,
      or a <code>City</code> and <code>Country</code> columns.
1f7dc110   Antoine Goutenoir   Provide sample fi...
730
731
732
    use_train_below_km: |
      For <small>(single)</small> trips below this distance,
      we'll ignore the plane models and use <code>23 g.km<sup>-1</sup></code>.
8ee9f4a9   Antoine Goutenoir   Add additional co...
733

28f7c8ff   Goutte   Add more content....
734
735
736
737
738
739
  # Labels accept HTML, but not markdown
  # Descriptions accept neither, since we use the HTML title attribute
  form:
    email:
      label: Email Address
      description: Make sure you provide a valid address or you won't receive the results!
8ae021a2   Antoine Goutenoir   Merge shelved cha...
740
741
742
743
    run_name:
      label: Run Name
      description: Usually the name of the event.  Results will look better if you fill this.
      placeholder: "Global Peace Summit 2020 – Estimation N°07"
28f7c8ff   Goutte   Add more content....
744
745
746
    first_name:
      label: First Name
      description: Also known as given name, eg. `Didier`.
cae7d697   Antoine Goutenoir   Muse.
747
      placeholder: Adèle
28f7c8ff   Goutte   Add more content....
748
749
750
    last_name:
      label: Last Name
      description: Also known as family name, eg. `Barret`.
cae7d697   Antoine Goutenoir   Muse.
751
      placeholder: Bellego
28f7c8ff   Goutte   Add more content....
752
753
754
755
756
757
    institution:
      label: Institution / Enterprise
      description: If any?
    comment:
      label: Leave a comment
      description: Any input is appreciated.  Everyone's a critic.
a0e15de2   Antoine Goutenoir   Prepare the form ...
758
759
    use_train_below_km:
      label: Use train below
da55ef2d   Didier BARRET   Update the text o...
760
      description: We will use the train carbon dioxide equivalent emission factor below this distance (one leg of the round trip).
d25ff871   Antoine Goutenoir   Move train distan...
761
762
763
      values:
        - label: Do not consider train
          value: 0
da55ef2d   Didier BARRET   Update the text o...
764
        - label: 100 km (~ 1h by train)
d25ff871   Antoine Goutenoir   Move train distan...
765
          value: 100
da55ef2d   Didier BARRET   Update the text o...
766
        - label: 300 km (~ 3h by train)
d25ff871   Antoine Goutenoir   Move train distan...
767
          value: 300
da55ef2d   Didier BARRET   Update the text o...
768
        - label: 500 km (~ 5h by train)
d25ff871   Antoine Goutenoir   Move train distan...
769
          value: 500
da55ef2d   Didier BARRET   Update the text o...
770
        - label: 700 km (~ 7h by train)
d25ff871   Antoine Goutenoir   Move train distan...
771
          value: 700
da55ef2d   Didier BARRET   Update the text o...
772
        - label: 1000 km (~ 10h by train)
d25ff871   Antoine Goutenoir   Move train distan...
773
774
          value: 1000

28f7c8ff   Goutte   Add more content....
775
776
777
778
779
    origin_addresses:
      label: Origin Cities
      description: |
        One address per line, in the form `City, Country`.
        Make sure your addresses are correctly spelled.
9e44bb98   Antoine Goutenoir   Support file uplo...
780
      # We MUST use the dumb CRLF pair for dumb windows users
a745931f   Antoine Goutenoir   We MUST use the d...
781
782
783
784
      placeholder: "Paris, France\r\nBerlin, Germany"
#      placeholder: |
#        Paris, France
#        Berlin, Germany
28f7c8ff   Goutte   Add more content....
785
786
787
788
789
790
791
    destination_addresses:
      label: Destination Cities
      description: |
        One address per line, in the form `City, Country`.
        Make sure your addresses are correctly spelled.
      placeholder: |
        Washington, United States of America
9e44bb98   Antoine Goutenoir   Support file uplo...
792
793
794
795
796
    origin_addresses_file:
      label: Origin Cities
      description: |
        Accepted files: CSV, XLS, XLSX.
        We will use the Address column, or the City and Country columns.
1f7dc110   Antoine Goutenoir   Provide sample fi...
797
      error: Please only use spreadsheet files. (CSV, XLS, XLSX)
9e44bb98   Antoine Goutenoir   Support file uplo...
798
799
    destination_addresses_file:
      label: Destination Cities
28f7c8ff   Goutte   Add more content....
800
      description: |
9e44bb98   Antoine Goutenoir   Support file uplo...
801
802
        Accepted files: CSV, XLS, XLSX.
        We will use the Address column, or the City and Country columns.
1f7dc110   Antoine Goutenoir   Provide sample fi...
803
      error: Please only use spreadsheet files. (CSV, XLS, XLSX)
9e44bb98   Antoine Goutenoir   Support file uplo...
804
805
806
807
808
809
#    compute_optimal_destination:
#      label: |
#        Compute the destination city that will minimize emissions <br>
#        (useful when setting up a meeting/conference)
#      description: |
#        We will only look through Cities specified in the Destination Cities.
28f7c8ff   Goutte   Add more content....
810
811
812
813
814
815
816
817
818
819
820
    use_atmosfair_rfi:
      label: |
        Use the <acronym title="Radiative Forcing Index">RFI</acronym>
        multiplier recommended by <a href="https://www.atmosfair.de">atmosfair</a>
        (i.e. <code>3</code> for all emissions above <code>9km</code>)
        <br>
        For long flights, the multiplier may reach <code>2.8</code> or so.
        Otherwise, by default, <code>1.9</code> will be used.
      description: |
        We will only look through Cities specified in the Destination Cities.

8ee9f4a9   Antoine Goutenoir   Add additional co...
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
estimate_queue:
  hero:
    title: Please wait…
    description: |
      Your estimation is being computed.
      This may take several minutes.
      <br>
      This webpage will automatically update when it is done.

estimation:
  hero:
    title: Your estimation is now available!
    description: |
      Thank you for using our service.
      <br>
      Bookmark this webpage, it is private and unlisted.
  failure:
    hero:
      title: Your estimation has failed!
      description: |
        Sorry about that.  Please find the error message below.
        <br>
        Thank you for using our service.
a1f12452   Antoine Goutenoir   Add the new conte...
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
  lolliplot:
    one_to_one: |
      The carbon dioxide equivalent emission is provided for each city of destination.
      Identical trips (i.e. identical destinations) are summed
      and the cumulative distance is provided.
    one_to_many: |
      The carbon dioxide equivalent emission is provided for each city of destination.
      Identical trips (i.e. identical destinations) are summed
      and the cumulative distance is provided.
    many_to_one: |
      The carbon dioxide equivalent emission is provided for each city of origin.
      Identical trips (i.e. identical origins) are summed and the cumulative distance is provided.
    many_to_many: |
      The carbon dioxide equivalent emission is summed
      over all cities of origin and provided for each city of destination.
      The cumulative distance to each city of destination is provided.
      Duplicates in the destinations are removed.
2836764a   Antoine Goutenoir   Add customizable ...
861
862
863
  footer: |
    ### See also
    - [EPA's Equivalencies Calculator](https://www.epa.gov/sites/production/files/widgets/ghg-calc/calculator.html#emissions)
28f7c8ff   Goutte   Add more content....
864
865
866

footer:
  credits: |
c3c98851   Didier BARRET   Major update of c...
867
    Didier Barret (IRAP) © 2019