diff options
author | Camil Staps | 2021-09-13 12:15:54 +0200 |
---|---|---|
committer | Camil Staps | 2021-09-13 12:15:54 +0200 |
commit | 6bee827c339b690c7f7d16e25700d9269feccf32 (patch) | |
tree | 63ed0aab4876251139bfa1c458b94077528dee4b | |
parent | Link to conferences list from homepage; formatting conference list (diff) |
Dutch trains are probably counted too heavily
-rw-r--r-- | resources/pug/finals/conferences.pug | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/resources/pug/finals/conferences.pug b/resources/pug/finals/conferences.pug index 3bc2dc9..b1b26fa 100644 --- a/resources/pug/finals/conferences.pug +++ b/resources/pug/finals/conferences.pug @@ -52,7 +52,7 @@ block content p. For #[strong biking], I counted 30g CO#[sub 2] / km as a rough estimate based on my diet. #[strong Flights] shorter than 500km are counted as 'domestic' (255g / km), otherwise they are counted as short/long-haul (averaged on 153g / km). - Distances (when hovering a travel mode symbol) are given for one-way trip only (but the footprint is computed for all travel). + #[strong Trains] in the Netherlands probably emit less than the estimate from Our World in Data because #[a.alert-link(href='https://www.ns.nl/over-ns/duurzaamheid/fossielvrij', target='_blank') the NS runs on wind energy]. p. The carbon footprint per capita of the Netherlands was #[strong 9.66] t (9,660,000 g) in 2017, according to #[a.alert-link(href='https://ourworldindata.org/co2/country/netherlands?country=NLD~DEU~DNK~SWE~FRA~BEL', target='_blank') Our World in Data]. @@ -189,13 +189,13 @@ block content td if conf.bike - i.fas.fa-bicycle(alt='Bike', title!='Bike: ' + conf.bike + 'km') + i.fas.fa-bicycle(alt='Bike', title!='Bike: ' + conf.bike + 'km one-way') if conf.ferry - i.fas.fa-ship(alt='Ferry', title!='Ferry: ' + conf.ferry + 'km') + i.fas.fa-ship(alt='Ferry', title!='Ferry: ' + conf.ferry + 'km one-way') if conf.train - i.fas.fa-train(alt='Train', title!='Train: ' + conf.train + 'km') + i.fas.fa-train(alt='Train', title!='Train: ' + conf.train + 'km one-way') if conf.plane - i.fas.fa-plane(alt='Plane', title!='Plane: ' + conf.plane + 'km') + i.fas.fa-plane(alt='Plane', title!='Plane: ' + conf.plane + 'km one-way') td.text-right= (conf.footprint).toLocaleString('en') |