-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
15501 lines (8308 loc) · 930 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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
100
101
102
103
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
129
130
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
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
274
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
321
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
387
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
413
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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
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
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
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
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>(Unoffical) #COP24 Side Events Tracker</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.2/css/bulma.min.css">
<style>
.container {
max-width: 768px;
}
.section {
padding: 0 1rem 0 1rem;
}
.anchor {
display:block;
padding-top: 110px;
margin-top: -110px;
}
section.section a.anchor-link {
opacity: 0.2;
}
section.section a.anchor-link:hover {
opacity: 1;
}
</style>
</head>
<body class="has-navbar-fixed-top">
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation dropdown">
<div class="navbar-brand">
<a class="navbar-item" href="#">
#COP24 <span class="is-hidden-mobile"> (Unofficial) Side Event Tracker</span>
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navbar-rest">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div class="navbar-menu" id="navbar-rest">
<div class="navbar-start">
<span class="navbar-item is-hidden-touch">December</span>
<a class="navbar-item" id="dec02" href="#02"><span class="is-hidden-desktop">December </span>2nd</a>
<a class="navbar-item" id="dec03" href="#03"><span class="is-hidden-desktop">December </span>3rd</a>
<a class="navbar-item" id="dec04" href="#04"><span class="is-hidden-desktop">December </span>4th</a>
<a class="navbar-item" id="dec05" href="#05"><span class="is-hidden-desktop">December </span>5th</a>
<a class="navbar-item" id="dec06" href="#06"><span class="is-hidden-desktop">December </span>6th</a>
<a class="navbar-item" id="dec07" href="#07"><span class="is-hidden-desktop">December </span>7th</a>
<a class="navbar-item" id="dec08" href="#08"><span class="is-hidden-desktop">December </span>8th</a>
<a class="navbar-item" id="dec10" href="#10"><span class="is-hidden-desktop">December </span>10th</a>
<a class="navbar-item" id="dec11" href="#11"><span class="is-hidden-desktop">December </span>11th</a>
<a class="navbar-item" id="dec12" href="#12"><span class="is-hidden-desktop">December </span>12th</a>
<a class="navbar-item" id="dec13" href="#13"><span class="is-hidden-desktop">December </span>13th</a>
<a class="navbar-item" id="dec14" href="#14"><span class="is-hidden-desktop">December </span>14th</a>
</div>
<div class="navbar-end">
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">More Side Events</a>
<div class="navbar-dropdown">
<a href="https://unfccc.int/climate-action/events/global-climate-action-at-cop24/action-hub-events" class="navbar-item">Climate Action Hub</a>
<a href="https://unfccc.int/climate-action/events/global-climate-action-events-at-cop24-full-programme-including-action-hub" class="navbar-item">Global Climate Action Events</a>
<a href="https://unfccc.int/climate-action/marrakech-partnership/events/marrakech-partnership-at-cop24" class="navbar-item">Marrakech Partnership</a>
<hr class="navbar-divider">
<a href="https://www.ccca.ac.at/en/dialog-fields/cop24/" class="navbar-item">Austrian Pavilion</a>
<a href="https://www.greenclimate.fund/cop" class="navbar-item">Green Climate Fund Pavilion</a>
<a href="http://indonesiaunfccc.com/" class="navbar-item">Indonesian Pavilion</a>
<a href="https://ipcc.ch/apps/outreach/eventinfo.php?q=446" class="navbar-item">IPCC Events</a>
<a href="http://copjapan.env.go.jp/cop/cop24/en/events/" class="navbar-item">Japanese Pavilion</a>
<a href="http://cop24koreapavilion.com/cop24koreapavilion/COP24_Korea_Pavillion_SideEvent.pdf" class="navbar-item">Korean Pavilion</a>
<a href="http://cop24.gov.pl/conference/agenda/polish-pavilion/" class="navbar-item">Polish Pavilion</a>
<a href="https://cop23.com.fj/cop24/cop24-pacific-koronivia-pavilion/" class="navbar-item">Pacific and Koronivia Pavilion</a>
<a href="https://www.worldbank.org/en/events/2018/11/30/mdb-joint-pavilion-at-cop24" class="navbar-item">Multilateral Development Banks Pavilion</a>
<hr class="navbar-divider">
<a href="http://www.undp.org/content/undp/en/home/events/2018/climate-2020/cop24.html" class="navbar-item">UNDP Events</a>
<a href="http://www.oecd.org/environment/cc/cop24/" class="navbar-item">OECD Events</a>
<a href="https://www.wri.org/events/2018/12/wri-events-cop24" class="navbar-item">WRI Events</a>
<hr class="navbar-divider">
<a href="https://unfccc.int/process-and-meetings/conferences/katowice-climate-change-conference-december-2018/events-and-schedules/pavilions-at-cop-24" class="navbar-item">UNFCCC Information</a>
</div>
</div>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">Sources</a>
<div class="navbar-dropdown">
<a href="https://seors.unfccc.int/seors/reports/events_list.html?session_id=COP%2024" class="navbar-item">UNFCCC Side Events</a>
<a href="http://espacobrasil.gov.br/en/brasil-pavilion/" class="navbar-item">Brasilian Pavilion</a>
<a href="http://ec.europa.eu/clima/events/0124/calendar_en.htm#schedule" class="navbar-item">EU Pavilion</a>
<a href="https://www.bmu.de/en/german-climate-pavilion/events/" class="navbar-item">German Pavilion</a>
<a href="http://www.ndcpartnershipcop.org/events/week/2018-12-03/" class="navbar-item">NDC Partnership</a>
<a href="https://www.events.great.gov.uk/ehome/index.php?eventid=200184147" class="navbar-item">UK Pavilion</a>
<a href="https://wwf.panda.org/our_work/climate_and_energy/cop24/" class="navbar-item">WWF Pavilion</a>
</div>
</div>
<a href="https://twitter.com/openclimatedata" class="navbar-item">Made by @openclimatedata</a>
</div>
</div>
</nav>
<div class="container">
<section class="section content">
<p>
Last Update: Sun, 16 Dec 2018 11:19<br>
Please always check with the linked original schedule for latest changes.<br>
Made by <a href="mailto:robert.gieseke@pik-potsdam.de">Robert Gieseke</a><br>
Source code on <a href="https://github.com/openclimatedata/cop-side-events">GitHub</a><br>
Follow me on Twitter: <a href="https://twitter.com/openclimatedata">@openclimatedata</a>
</p>
<p>
Venue Map: <a href="https://unfccc.int/sites/default/files/resource/COP24%20-%20All%20Areas%20-%2016_FINAL.pdf">All - Areas - 16_FINAL.pdf</a><br>
</p>
<p>
<a class="button is-primary" id="togglePastEvents"><span id="show" class="showOrHide is-hidden">Show</span><span id="hide" class="showOrHide">Hide</span> past events</a>
</p>
</section>
<a id="02" class="anchor"></a>
<section id="wwf-pavilion-2018-12-02-12-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Sunday, 02 December<a class="anchor-link" href="#wwf-pavilion-2018-12-02-12-30"> 🔗</a><br>
<time datetime="2018-12-02 12:30">12:30</time> -
14:45
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://wwf.panda.org/our_work/climate_and_energy/cop24/">WWF Pavilion</a><br> OPENING EVENT: Delivering now for a 1.5°C future: Ramping up climate ambition at the national level</h2>
<p>As a kick-off to thee COP24 #PandaHub, this event will build momentum for national governments to commit to increasing the ambition of their climate commitments. Following opening speeches from key high-level officials on the need to ramp up climate action and on expectations for the COP, the event will be the opportunity to launch of WWF’s Ambition Report and highlight opportunities to ramp up climate action in key countries notably China, the European Union and South Africa.</p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li>Manuel Pulgar Vidal - Leader of WWF’s Climate and Energy Practice, Former Environment Minister of Peru and President of COP20</li>
<li>Representatives from the European Union, China, and South Africa.</li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#wwf-pavilion-2018-12-02-12-30">Copy to Clipboard</a>
<hr>
</section>
<section id="wwf-pavilion-2018-12-02-15-00" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Sunday, 02 December<a class="anchor-link" href="#wwf-pavilion-2018-12-02-15-00"> 🔗</a><br>
<time datetime="2018-12-02 15:00">15:00</time> -
16:15
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://wwf.panda.org/our_work/climate_and_energy/cop24/">WWF Pavilion</a><br> Blockchain for corporate supply chains</h2>
<p>Corporate climate action and sustainability strategies are on the rise. Companies are evolving from simplistic approaches to more complex data- and science-driven strategies, placing greater emphasis on supply chains. This side event will highlight how blockchain, and Digital Ledger Technology (DLT) more broadly, can help companies tackle some of the new challenges posed by stakeholders’ growing needs for transparency through improved data management, impact quantification and verification, reporting progress, traceability of goods and business value.</p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li>Mark Griffiths - Global Leader, Climate Business Hub, WWF</li>
<li>Sarah Leugers - Director of Communications, Gold Standard + Climate Ledger Initiative (CLI)</li>
<li>Jürg Füssler - CEO, INFRAS, and CLI</li>
<li>Nick Beglinger - CEO and Founder, Cleantech21 and Hack4Climate + CLI</li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#wwf-pavilion-2018-12-02-15-00">Copy to Clipboard</a>
<hr>
</section>
<section id="wwf-pavilion-2018-12-02-16-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Sunday, 02 December<a class="anchor-link" href="#wwf-pavilion-2018-12-02-16-30"> 🔗</a><br>
<time datetime="2018-12-02 16:30">16:30</time> -
18:15
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://wwf.panda.org/our_work/climate_and_energy/cop24/">WWF Pavilion</a><br> Movie screening: The Tipping Point</h2>
<p>Tipping Point demonstrates the array of complex connections which make the alignment of climate policy in Poland with EU targets a challenge. The economic, social and political background of Polish energy dependence on coal is clearly explained. The movie also presents the opportunities provided by alternative energy sources and the barriers faced by those who advocate for them. The film warns but - above all - offers solutions to stop the oncoming catastrophe brought about by climate change.</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#wwf-pavilion-2018-12-02-16-30">Copy to Clipboard</a>
<hr>
</section>
<section id="wwf-pavilion-2018-12-02-18-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Sunday, 02 December<a class="anchor-link" href="#wwf-pavilion-2018-12-02-18-30"> 🔗</a><br>
<time datetime="2018-12-02 18:30">18:30</time> -
21:30
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://wwf.panda.org/our_work/climate_and_energy/cop24/">WWF Pavilion</a><br> Media training night school</h2>
<p>** This event is by invitation only **</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#wwf-pavilion-2018-12-02-18-30">Copy to Clipboard</a>
<hr>
</section>
<a id="03" class="anchor"></a>
<section id="wwf-pavilion-2018-12-03-10-00" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#wwf-pavilion-2018-12-03-10-00"> 🔗</a><br>
<time datetime="2018-12-03 10:00">10:00</time> -
11:15
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://wwf.panda.org/our_work/climate_and_energy/cop24/">WWF Pavilion</a><br> Article 6 market tools for going beyond offsetting: A dialogue on how to ensure overall mitigation of global emissions (OMGE) is reflected in Article 6.2 and 6.4 of the Paris rulebook</h2>
<p>This event will explore a lesser known proposal made by AOSIS and supported by AILAC, to automatically cancel a portion of emissions units generated under Article 6.2 and 6.4 mechanism. If calibrated correctly, this could simultaneously to help ensure that Article 6.2 and 6.4 are delivering additional mitigation benefits while not undermining would-be purchasers or suppliers of emission reductions. With presenters from countries, economists and carbon market industry representatives, we will explore all sides of this debate, including other potential ways to ensure OMGE.</p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li>Stefano DeClara - Director, International Policy, The International Emissions Trading Association</li>
<li>Lambert Schneider - Associate, Stockholm Environment Institute</li>
<li>MJ Mace - AOSIS (tbc)</li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#wwf-pavilion-2018-12-03-10-00">Copy to Clipboard</a>
<hr>
</section>
<section id="eu-pavilion-room-brussels-2018-12-03-10-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#eu-pavilion-room-brussels-2018-12-03-10-30"> 🔗</a><br>
<time datetime="2018-12-03 10:30">10:30</time> -
12:00
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="http://ec.europa.eu/clima/events/0124/calendar_en.htm#schedule">EU Pavilion Room Brussels</a><br> Increasing mitigation action for 1.5°C: short-term steps and long-term strategies</h2>
<p><p><p></p><p>The IPCC special report on 1.5°C is clear – global CO2 emissions must reach net zero around 2050, requiring rapid and wide-ranging systemic changes. <br/></p><p>This side event looks at plans and options for increasing mitigation actions in Europe and beyond. <br/></p><ul><li>The first part of the event will assess the compatibility of the European Commission’s draft strategy for long-term EU greenhouse gas emission reductions with the IPCC report. <br/></li><li>The second part will look at options for countries outside Europe to increase their mitigation actions in the short term in light of the upcoming global stock take and new NDC cycle, to build a path towards decarbonisation in the long-term. </li></ul>A key focus of the discussion will be how to overcome challenges associated with implementing mitigation actions, including through international support. We will present analyses of mitigation opportunities in Colombia, Ethiopia, Georgia, Indonesia, Iran, Kenya, the Marshall Islands, Morocco, Peru and Vietnam.</p></p>
<p>1. Climate Action Network Europe; 2. German Environment Agency, NewClimate Institute, Wuppertal Institute</p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li>1. Scientists; 2. NGO and climate policy experts; 3. European Government Representatives (TBC); 4. Kenyan Government Representatives (TBC) ; 5. Georgian Government Representatives (TBC)</li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#eu-pavilion-room-brussels-2018-12-03-10-30">Copy to Clipboard</a>
<hr>
</section>
<section id="eu-pavilion-room-vienna-2018-12-03-10-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#eu-pavilion-room-vienna-2018-12-03-10-30"> 🔗</a><br>
<time datetime="2018-12-03 10:30">10:30</time> -
12:00
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="http://ec.europa.eu/clima/events/0124/calendar_en.htm#schedule">EU Pavilion Room Vienna</a><br> Sustainable solutions to combat climate change: contribution of engineers and reducing air pollution</h2>
<p><p><p></p><p><span>Engineers and scientists will provide presentations on the following topics, with a discussion to follow:</span><span><br/></span></p><ol><li><span></span><span>The need to enhance the meteorological and engineering interface to provide the necessary data for science-based decision making. </span></li><li><span>Sustainable transportation solutions in cities, e-mobility and environmental protection. </span></li><li><span>Modernising national meteorology and hydrology services for climate change adaptation optimization – long-term research infrastructure (e.g. ACTRIS RI) is necessary for monitoring trends.</span></li><li><span></span><span></span><span>Emission-free coal-based power plant with a component for grid energy storage and energy recovery in the LNG regasification process. </span><span>Reducing air pollution can combat climate change, save lives and help achieve sustainable development.</span></li><li><span></span><span></span><span>Climate protection and health protection overlap widely <span>–</span> intelligent measures can therefore serve both and help to achieve sustainability goals more efficiently.</span></li><li><span></span><span></span><span>T</span><span>he future climate – engineering solutions. </span><span></span></li></ol></p></p>
<p>1. Prof.PK Dr Eng. Lidia Zakowska - Poland / Engineering Organisations Committee WFEO/NOT/SITK; 2. Tilo Arnhold, Leibniz Institute for Tropospheric Research (TROPOS), Germany; 3. Darrel Danyluk, Canada / WFEO CEE President</p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li>1. Darrel Danyluk, Canada / WFEO CEE President ; 2. David Lapp, Canada / WFEO CEE ; 3. Radoslaw Wojak, Poland / SITK RP ; 4. Prof. Lidia Zakowska, PK Poland ; 5. Dr Alexandra Howe, Global / FC-ES; 6. CEng. Andy Webster, Global / FC-ES; 7. Prof. Andreas Wahner, Germany / FZ Jülich; 8. Dr. Kathleen Mar, Germany / IASS; 9. Prof. Hartmut Herrmann, Germany / TROPOS</li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#eu-pavilion-room-vienna-2018-12-03-10-30">Copy to Clipboard</a>
<hr>
</section>
<section id="ndc-partnership-pavilion-2018-12-03-11-00" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#ndc-partnership-pavilion-2018-12-03-11-00"> 🔗</a><br>
<time datetime="2018-12-03 11:00">11:00</time> -
12:00
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="http://www.ndcpartnershipcop.org/events/">NDC Partnership Pavilion</a><br> International Institute for Sustainable Development (IISD)</h2>
<p>Alignment to Advance Climate-Resilient Development: Linking NAPs and NDCs</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#ndc-partnership-pavilion-2018-12-03-11-00">Copy to Clipboard</a>
<hr>
</section>
<section id="wwf-pavilion-2018-12-03-11-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#wwf-pavilion-2018-12-03-11-30"> 🔗</a><br>
<time datetime="2018-12-03 11:30">11:30</time> -
12:45
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://wwf.panda.org/our_work/climate_and_energy/cop24/">WWF Pavilion</a><br> Indigenous Governance: an undervalued climate ally</h2>
<p>Indigenous Peoples’ governance has a clear connection to climate change. Tenured Indigenous lands tend to have lower deforestation rates, and Indigenous and communally held lands hold about a quarter of aboveground global carbon stores. This event will feature a presentation, short video, and discussion among Indigenous Peoples representatives on how Indigenous territorial governance and rights are an undervalued climate solution.</p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li>Juan Carlos Jintiach, COICA</li>
<li>Robinson López, OPIAC</li>
<li>Marilen Puquio Arturo, CONAP</li>
<li>Nara Baré,COIAB</li>
<li>Richard Rubio, AIDESEP</li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#wwf-pavilion-2018-12-03-11-30">Copy to Clipboard</a>
<hr>
</section>
<section id="eu-pavilion-room-brussels-2018-12-03-12-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#eu-pavilion-room-brussels-2018-12-03-12-30"> 🔗</a><br>
<time datetime="2018-12-03 12:30">12:30</time> -
14:00
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="http://ec.europa.eu/clima/events/0124/calendar_en.htm#schedule">EU Pavilion Room Brussels</a><br> Just transition towards a low-carbon economy and employment in Europe: challenges and opportunities</h2>
<p><p><p></p><p>A just transition towards a low-carbon economy can help implement the Paris Agreement and reach national and international climate goals, as well as preventing unemployment and social distress. <br/></p><p>Additionally, it can bring many positive social co-benefits. As we are facing massive transformational challenges in order to stay within our planetary limits, it is essential that ‘just transition’ and ‘decent work’ become guiding principles and go hand in hand with ambitious global climate action.</p></p></p>
<p>1. Friedrich-Ebert-Stiftung (FES); 2. European Trade Union Confederation (ETUC)</p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li>1. Manuela Matthess (FES), ; 2. Montserrat Mir (ETUC, ; 3. Benjamin Denis (ETUC), ; 4. Alexander Reitzenstein (E3G), ; 5. Dorota Gardias (FZZ Forum), ; 6. Giles Dickson (Wind Europe), ; 7. Wendel Trio (CAN Europe), ; 8. Corinna Zierold (IndustriAll Europe)</li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#eu-pavilion-room-brussels-2018-12-03-12-30">Copy to Clipboard</a>
<hr>
</section>
<section id="eu-pavilion-room-vienna-2018-12-03-12-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#eu-pavilion-room-vienna-2018-12-03-12-30"> 🔗</a><br>
<time datetime="2018-12-03 12:30">12:30</time> -
14:00
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="http://ec.europa.eu/clima/events/0124/calendar_en.htm#schedule">EU Pavilion Room Vienna</a><br> Climate proofing strategies</h2>
<p><p><p>Climate change is expected to continuously alter the hydrological cycle and thereby water availability with adverse consequences for the interlinked water-, energy- and agricultural sector. <br/></p><p>Thus, stakeholders and decision makers clearly have to adapt to a changing climate already as soon as possible. <br/></p><p>This session provides a platform for demonstrating different strategies and possibilities of climate proofing at different time and spatial scales. Experts from different fields give an overview about ongoing research and current initiatives about current and future precipitation conditions as well as seasonal prediction systems. <br/></p><p>Examples of seasonal forecasts (up to 12 months) for supporting regional water-, energy- and agricultural management are presented at river basin scale. <br/></p><p>At the smaller urban hydrology scale, examples of practical climate proofing will be demonstrated based on results of the Polish Atlas of Rains Intensities (PANDA) project.</p></p></p>
<p>1. RETENCJAPL SP. Z O.O.; Karlsruhe Institute of Technology (KIT)</p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li>1. Jacek Zalewski, RETENCJAPL sp. o.o.; 2. Paweł Licznar PhD. Eng at Wrocław University of Science and Technology, RETENCJAPL Sp. z o.o. ; 3. Prof. Janusz Zaleski, PhD. Eng., Institute of Meteorology and Water Management - National Research Institute ; 4. Prof. Dr. Harald Kunstmann, ; 5. Dr. Christof Lorenz, Karlsruhe Institute of Technology – Institute of Meteorology and Climate Research ; 6. Ms. Romy Durst (p.p. BMBF ), Karlsruhe Institute of Technology; 7. Paweł Wilk PhD. Eng, Institute of Meteorology and Water Management- National Research Institute</li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#eu-pavilion-room-vienna-2018-12-03-12-30">Copy to Clipboard</a>
<hr>
</section>
<section id="uk-pavilion-2018-12-03-13-00" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#uk-pavilion-2018-12-03-13-00"> 🔗</a><br>
<time datetime="2018-12-03 13:00">13:00</time> -
15:00
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://www.events.great.gov.uk/ehome/index.php?eventid=200184147">UK Pavilion</a><br> Enhancing transparency of climate finance at individual and collective level</h2>
<p>In the context of negotiations on the Paris Rulebook and the developed country goal to collectively mobilise $100bn per year in climate finance from a variety of sources by 2020, efforts have been undertaken internationally to enhance climate finance transparency. This discussion will present examples of good practice from recent efforts to assess individual and collective progress in scaling up climate finance and improving transparency, including the recently released OECD analysis of public climate finance from 2013-2017.<br> The event will ask what further developments are needed to align incentives in climate finance reporting for building trust and facilitating effective and transparent climate finance.</p>
<p>UK Government</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#uk-pavilion-2018-12-03-13-00">Copy to Clipboard</a>
<hr>
</section>
<section id="wwf-pavilion-2018-12-03-13-15" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#wwf-pavilion-2018-12-03-13-15"> 🔗</a><br>
<time datetime="2018-12-03 13:15">13:15</time> -
14:45
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://wwf.panda.org/our_work/climate_and_energy/cop24/">WWF Pavilion</a><br> Towards a successful pre-2020 Stocktake: Addressing the action and support deficit</h2>
<p>The event will provide an overview of the set of issues to be addressed in the Pre-2020 Stocktake process at COP24 and subsequent COPs, and discuss potential outcomes. Initial presentations should provide an overview of the current situation, including mitigation targets, ambition and performance, Action Agenda, Technical Examination Process, and Finance and means of implementation. The discussion will aim to discuss potential responses and outcomes from the COP, and the implications for other COP processes, including the Talanoa process and potential outcomes related to post-2020 ambition. The event should provide insights into potential directions and outcomes from the Pre-2020 Stocktake process in COP24, and what a strong, coherent and equitable package of outcomes from COP24 could be.</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#wwf-pavilion-2018-12-03-13-15">Copy to Clipboard</a>
<hr>
</section>
<section id="eu-pavilion-meet-the-expert-2018-12-03-14-00" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#eu-pavilion-meet-the-expert-2018-12-03-14-00"> 🔗</a><br>
<time datetime="2018-12-03 14:00">14:00</time> -
16:00
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="http://ec.europa.eu/clima/events/0124/calendar_en.htm#schedule">EU Pavilion Meet-the-Expert</a><br> RETENCJAPL</h2>
<p><p></p></p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li></li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#eu-pavilion-meet-the-expert-2018-12-03-14-00">Copy to Clipboard</a>
<hr>
</section>
<section id="eu-pavilion-room-brussels-2018-12-03-14-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#eu-pavilion-room-brussels-2018-12-03-14-30"> 🔗</a><br>
<time datetime="2018-12-03 14:30">14:30</time> -
16:00
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="http://ec.europa.eu/clima/events/0124/calendar_en.htm#schedule">EU Pavilion Room Brussels</a><br> Clean Air Challenge: transport and heating solutions for better air quality</h2>
<p><p><p><span style="color: black;" lang="EN-US">According to the European Commission, the total external costs related to the health effects of smog are estimated around 2.9% of the European GDP every year. In Europe, smog primarily results from combustion of hydrocarbons in road transport and heating.</span><span lang="EN-US"></span></p><p class="Bodytext20"><span style="color: black;" lang="EN-US">Based on this observation, </span><span style="color: black;" lang="LT">EIT </span><span style="color: black;" lang="EN-US">InnoEnergy has elaborated a study of available solutions to help public authorities alleviate existing smog concentrations in their countries </span><span style="color: black;" lang="BG">/ </span><span style="color: black;" lang="EN-US">regions.</span><span lang="EN-US"></span></p><p class="Bodytext20"><span style="color: black;" lang="EN-US">During the side-event, </span><span style="color: black;" lang="LT">EIT </span><span style="color: black;" lang="EN-US">InnoEnergy would like to emphasize these solutions through </span><span style="color: black;">case ­studies</span><span style="color: black;" lang="EN-US"> and across three levers: education, regulation and economic incentives. The panel of speakers will then discuss the results of the study and help elaborate it further on how these solutions can be implemented at national </span><span style="color: black;" lang="BG">/ </span><span style="color: black;" lang="EN-US">regional and </span><span style="color: black;" lang="BG">/ </span><span style="color: black;" lang="EN-US">or local level.</span><span lang="EN-US"></span></p><p></p></p></p>
<p>1. EIT InnoEnergy</p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li>1. Maroš Šefčovič, Vice President in charge of the Energy Union, European Commission; 2. Bertrand Piccard, Explorer, Chairman of the Solar Impulse Foundation; 3. Diego Pavia, CEO, EIT InnoEnergy; 4. Patrick Labat, Senior Executive Vice-President for the Northern Europe Zone, Veolia; 5. Aleksander Nawrat, Deputy Director, NCBIR; 6. Julia Patorska, Leader of Economic Analysis Team, Sustainability Consulting Central Europe, Senior Manager, Deloitte</li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#eu-pavilion-room-brussels-2018-12-03-14-30">Copy to Clipboard</a>
<hr>
</section>
<section id="eu-pavilion-room-vienna-2018-12-03-14-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#eu-pavilion-room-vienna-2018-12-03-14-30"> 🔗</a><br>
<time datetime="2018-12-03 14:30">14:30</time> -
16:00
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="http://ec.europa.eu/clima/events/0124/calendar_en.htm#schedule">EU Pavilion Room Vienna</a><br> The role of finance in re-inventing coal and carbon intensive regions</h2>
<p><p><p></p><p>Coal currently accounts for 29% of the world’s primary energy supply and generates 44% of global CO2 emissions. <br/></p><p>The low-carbon transition implies a substantial reduction in global coal demand. Planned and ongoing closures of coal mines and the commitment by a number of EU Member States to phase out coal use for power generation are expected to accelerate this downward trend. <br/></p><p>Key topics: local innovations and investments, social, infrastructural and technical, are key for a successful and just transition for coal-intensive regions; financial instruments are fundamental for supporting local innovation potential; the ‘Coal Regions in Transition’ Platform and how to support carbon-intensive regions to reinvent themselves; Blending public and private financing to support the necessary investments; and how to ensure that transition plans involve stakeholders at all levels?</p></p></p>
<p>1. Climate-KIC; 2. European Commission (Climate Action); 3. EIB; 4. WWF</p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li>All to be confirmed:; 1. Facilitator (WWF); 2. EC / EIB speaker; 3. NGO/Civil Society representative; 4. Representative Silesian authorities; 5. Representative Coal Industry; 6. Representative “Climate Strategies”</li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#eu-pavilion-room-vienna-2018-12-03-14-30">Copy to Clipboard</a>
<hr>
</section>
<section id="bieszczady-2018-12-03-15-00" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#bieszczady-2018-12-03-15-00"> 🔗</a><br>
<time datetime="2018-12-03 15:00">15:00</time> -
16:30
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://seors.unfccc.int/seors/reports/events_list.html?session_id=COP%2024">Bieszczady</a><br> Update on the work of the Paris Committee on Capacity-building</h2>
<p>Update on the work of the Paris Committee on Capacity-building. More information: https://unfccc.int/node/183915. Please note - because of the Leader’s summit, COP 24 pass registration on 3 December only starts at 14:00. Participants are encouraged to register earlier, by 2 December at the latest.
Speakers: Marzena Chodor and Rita Mishaan, PCCB Co-Chairs; Jean Pierre Elong Mbassi, UCLG Africa, Faustin Munyazikwiye; Rwanda Environment Management Authority; Robert Bradley, NDC Partnership; Bernd-Markus Liss, GIZ; Rebecca Carman, UNDP NDC Support Programme</p>
<p>
<h4 class="has-text-weight-bold">Links</h4>
<a href="https://seors.unfccc.int/seors/attachments/get_attachment?code=K6U3PBOOV5MCEBUUXSYSXMCBDE814BN4">Programme [148 kb]</a><br>
<a href="https://seors.unfccc.int/seors/attachments/get_attachment?code=P5BVPBC18RLRQVHPBL085U2S2O7KRQ54">Announcement [855 kb]</a><br>
<a href="https://seors.unfccc.int/seors/attachments/get_attachment?code=J9BCMTWJ6ZC3NGSSAGV099BQRR7JR4V2">PCCB presentation [891 kb]</a><br>
<a href="https://seors.unfccc.int/seors/attachments/get_attachment?code=NB26KS3TSVO9FBKORDARMZ7F68KH4HPY">UNDP NDC Support Programme presentation [907 kb]</a><br>
</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#bieszczady-2018-12-03-15-00">Copy to Clipboard</a>
<hr>
</section>
<section id="bug-2018-12-03-15-00" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#bug-2018-12-03-15-00"> 🔗</a><br>
<time datetime="2018-12-03 15:00">15:00</time> -
16:30
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://seors.unfccc.int/seors/reports/events_list.html?session_id=COP%2024">Bug</a><br> Experience gained and lessons learned from the CDM</h2>
<p>This side event gives a unique opportunity to reflect on the broad range of experience gained and lessons learned over the 17 years of the CDM, including the infrastructure developed. In addition, the side-event will also present and discuss the outcomes of the “CDM achievements report”.
Speakers: Arthur Rolle (CDM EB Chair), Piotr Dombrowicki (CDM EB Vice-Chair), Margaret-Ann Splawn (CMIA), Daniel Rossetto (Climate Mundial), Sandra Greiner (Climate Focus), Alexis Leroy (Allcot), Mandy Rambharos (Eskom), Ricardo Esparta (EQAO)</p>
<p>
<h4 class="has-text-weight-bold">Links</h4>
<a href="https://seors.unfccc.int/seors/attachments/get_attachment?code=90EBTEVNJ3Z96O07PWAPC1DUI9P5VF7J">CDM EB side event at COP24 programme [362 kb]</a><br>
<a href="https://seors.unfccc.int/seors/attachments/get_attachment?code=B08V5FWLBYG7IOMXZLJZ8U0ER7KA282P">Presentation by Alexis Leroy [558 kb]</a><br>
<a href="https://seors.unfccc.int/seors/attachments/get_attachment?code=S8QM3G2LX44FKJL0IQA9JRWLILCWJKCV">Presentation by Daniel Rossetto [338 kb]</a><br>
<a href="https://seors.unfccc.int/seors/attachments/get_attachment?code=Y3UVLMAQ1IPIL57SW02W424GCOY64W5K">Presentation by Ricardo J. Esparta [448 kb]</a><br>
<a href="https://seors.unfccc.int/seors/attachments/get_attachment?code=LRXCUFW6X92NCUOKVCR23NPM6HHBNHFM">Presentation by Sandra Greiner [1 Mb]</a><br>
</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#bug-2018-12-03-15-00">Copy to Clipboard</a>
<hr>
</section>
<section id="narew-2018-12-03-15-00" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#narew-2018-12-03-15-00"> 🔗</a><br>
<time datetime="2018-12-03 15:00">15:00</time> -
16:30
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://seors.unfccc.int/seors/reports/events_list.html?session_id=COP%2024">Narew</a><br> Climate Friendly Technologies: Improving adaptive capacity of women and building resilience</h2>
<p>The event shall present case studies from developing and LDCs on locally relevant climate friendly technologies beneficial for livelihood needs of vulnerable communities especially women. Barriers and policy recommendations for promoting and scaling up these technologies will be discussed.
Speakers: Civil society practitioners, academicians, researchers and gender experts, mainly from developing and LDCs engaged with climate technologies and livelihoods</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#narew-2018-12-03-15-00">Copy to Clipboard</a>
<hr>
</section>
<section id="pieniny-2018-12-03-15-00" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#pieniny-2018-12-03-15-00"> 🔗</a><br>
<time datetime="2018-12-03 15:00">15:00</time> -
16:30
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://seors.unfccc.int/seors/reports/events_list.html?session_id=COP%2024">Pieniny</a><br> Cooperative Regional Models for GHG MRV</h2>
<p>This panel convenes partners from the Caribbean Cooperative MRV Hub to explain how smaller countries can improve their post-Paris success through regionally cooperative models. Topics include climate MRV, institutional arrangements, and transformative change.
Speakers: Mr. Vintura Silva, STG-RCC Mr. Hugh Sealy, WINDREF Mr. Michael Gillenwater, GHGMI Mr. Damiano Borgogno, UNDP Ms. Diane Black Layne, Antigua & Barbuda Mr. Kishan Kumarsingh, Trinidad & Tobago [Tentative Speaker List]</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#pieniny-2018-12-03-15-00">Copy to Clipboard</a>
<hr>
</section>
<section id="wwf-pavilion-2018-12-03-15-00" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#wwf-pavilion-2018-12-03-15-00"> 🔗</a><br>
<time datetime="2018-12-03 15:00">15:00</time> -
16:15
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://wwf.panda.org/our_work/climate_and_energy/cop24/">WWF Pavilion</a><br> How can multilateral institutions support innovators to ramp-up the implementation of clean and efficient solutions?</h2>
<p>The Solar Impulse Foundation has set itself the challenge of identifying 1000 solutions that are profitable and can protect the environment.</p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li>Bertrand Piccard - Founder, Solar Impulse Foundation</li>
<li>Maros Sefcovic - European Commission</li>
<li>Isabelle Durant - Deputy Secretary-General, UNCTAD</li>
<li>Cristina Aleixendri - Co-founder & Chief Operational Officer, bound4blue</li>
<li>Inna Baverman - Co-founder & International Marketing Director, Eco Wave Power Ltd.</li>
<li>Briac Barthes - Cofounder, Hilyte Power</li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#wwf-pavilion-2018-12-03-15-00">Copy to Clipboard</a>
<hr>
</section>
<section id="wisla-2018-12-03-15-00" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#wisla-2018-12-03-15-00"> 🔗</a><br>
<time datetime="2018-12-03 15:00">15:00</time> -
16:30
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://seors.unfccc.int/seors/reports/events_list.html?session_id=COP%2024">Wisla</a><br> Africa Day High - level side event at COP 24: Implementation of NDCs in support of Agenda 2063</h2>
<p>“Operationalization of the Africa NDC Hub: Going further and faster with NDC implementation in support of Agenda 2063”
Speakers: H.E. Ali Bongo Ondimba, President of Gabon & Coordinator, Committee of African Heads of State& Govt. on Climate Change (CAHOSCC)(tbc); Chairperson of AU Commission, H.E. Moussa Faki Mahamat (tbc); President, Afr. Dev. Bank, H.E. Dr. Akinwumi Adesina (tbc); Executive Sec. H.E. Ms. Dr.Vera Songwe (tbc</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#wisla-2018-12-03-15-00">Copy to Clipboard</a>
<hr>
</section>
<section id="uk-pavilion-2018-12-03-15-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#uk-pavilion-2018-12-03-15-30"> 🔗</a><br>
<time datetime="2018-12-03 15:30">15:30</time> -
16:00
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://www.events.great.gov.uk/ehome/index.php?eventid=200184147">UK Pavilion</a><br> Cogeneration and hybrid power generation technology</h2>
<p>A presentation by Clarke Energy, DIT Northern Powerhouse Export Champions, on global experience of gas engines deployment for cogeneration, hybrid power plants, microgrids and grid balancing.</p>
<p>Clarke Energy</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#uk-pavilion-2018-12-03-15-30">Copy to Clipboard</a>
<hr>
</section>
<section id="ndc-partnership-pavilion-2018-12-03-16-00" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#ndc-partnership-pavilion-2018-12-03-16-00"> 🔗</a><br>
<time datetime="2018-12-03 16:00">16:00</time> -
17:15
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="http://www.ndcpartnershipcop.org/events/">NDC Partnership Pavilion</a><br> WRI, UNDP, GIZ and LEDS Global Partnership</h2>
<p>Improving Governance Frameworks and Unlocking Ambition with Non-State and Subnational Actors</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#ndc-partnership-pavilion-2018-12-03-16-00">Copy to Clipboard</a>
<hr>
</section>
<section id="eu-pavilion-meet-the-expert-2018-12-03-16-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#eu-pavilion-meet-the-expert-2018-12-03-16-30"> 🔗</a><br>
<time datetime="2018-12-03 16:30">16:30</time> -
18:30
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="http://ec.europa.eu/clima/events/0124/calendar_en.htm#schedule">EU Pavilion Meet-the-Expert</a><br> Clima Analyitics</h2>
<p><p></p></p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li></li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#eu-pavilion-meet-the-expert-2018-12-03-16-30">Copy to Clipboard</a>
<hr>
</section>
<section id="eu-pavilion-room-brussels-2018-12-03-16-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#eu-pavilion-room-brussels-2018-12-03-16-30"> 🔗</a><br>
<time datetime="2018-12-03 16:30">16:30</time> -
18:00
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="http://ec.europa.eu/clima/events/0124/calendar_en.htm#schedule">EU Pavilion Room Brussels</a><br> Energy decarbonisation and coal phase-out: financial, technological and policy drivers</h2>
<p><p><p><b><span>INNOPATHS</span></b></p><p><span>This presentation will look at:</span></p><p><span></span></p><p><span></span></p><p><b><span>Carbon Tracker </span></b></p><p><span>Carbon Tracker will present their new, comprehensive analysis of the changing economics of global coal power. The analysis covers 6,685 coal units which represent ~95of global operating capacity and ~90% of capacity under-construction. </span></p><p><span></span></p><p><span>The research found that 42% of global coal power plants run at a loss and that by2040 that could reach 72% as existing carbon pricing and air pollution regulations drive up costs while the price of onshore wind and solar power continues to fall.</span></p><p><span></span></p><p><b><span>German Federal Ministry for the Environment (BMU)</span></b></p><p><span>WWF Poland and Bank watch Network will showcase two projects - funded by BMU’s European Climate Initiative (EUKI) - which support the development of inclusive Just Transition Strategies in Upper Silesia region involving both state actors and civil society. </span></p><p><span>Both projects </span><span>demonstrate how a dialogue and exchange with other EU countries can support and inspire climate pioneers of other European coal regions to tackle decarbonisation challenges in their local contexts.</span></p><p><span></span></p><p><span>WWF and Bank watch will offer insights into methodological approaches for developing Just Transition Strategies and activating relevant stakeholders in this process and present results from WWF’s recent report on Upper Silesia region. </span></p><br/></p></p>
<p>Carbon Tracker Initiative (CTI) www.carbontracker.org; 1. University College London (UCL) for INNOPATHS http://www.innopaths.eu/; 2. German Federal Ministry for the Environment (BMU); 3. Nature Conservation and Nuclear Safety (BMU) www.bmu.bund.de</p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li>1. Laurence Watson – Data Analyst, Carbon Tracker; 2. Elena Verdolini – RFF-CMCC European Institute on Economics and the Environment; 3. Oskar Kulik – WWF Poland; 4. Alexandru Mustață – Bank Watch</li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#eu-pavilion-room-brussels-2018-12-03-16-30">Copy to Clipboard</a>
<hr>
</section>
<section id="uk-pavilion-2018-12-03-16-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#uk-pavilion-2018-12-03-16-30"> 🔗</a><br>
<time datetime="2018-12-03 16:30">16:30</time> -
18:30
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://www.events.great.gov.uk/ehome/index.php?eventid=200184147">UK Pavilion</a><br> Stakeholder workshop and networking event on enhancing the role of academia and improving knowledge sharing in capacity building</h2>
<p>Spaces are limited, please email nicola.benton2@beis.gov.uk for more information.</p>
<p>UK Government</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#uk-pavilion-2018-12-03-16-30">Copy to Clipboard</a>
<hr>
</section>
<section id="wwf-pavilion-2018-12-03-16-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#wwf-pavilion-2018-12-03-16-30"> 🔗</a><br>
<time datetime="2018-12-03 16:30">16:30</time> -
17:45
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://wwf.panda.org/our_work/climate_and_energy/cop24/">WWF Pavilion</a><br> Value Change: Climate-positive action in corporate value chains</h2>
<p>This event will showcase best practices in reducing emissions from what is often the largest source of a company’s carbon footprint: the value chain. Content presented will help remove barriers to addressing value chain emissions and case studies will demonstrate what is possible -- to help inspire more companies to set and reach ambitious climate targets.</p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li>Alex Farsan - Global Lead, Science Based Targets, WWF</li>
<li>Ian Trim - Director of Energy, Navigant</li>
<li>Sarah Leugers - Director of Communications, Gold Standard</li>
<li>Flore Augé - Climate Change Strategy Manager, Danone</li>
<li>Matt Spannagle - Carbon and Forest Adviser, Barry Callebaut</li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#wwf-pavilion-2018-12-03-16-30">Copy to Clipboard</a>
<hr>
</section>
<section id="bug-2018-12-03-18-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#bug-2018-12-03-18-30"> 🔗</a><br>
<time datetime="2018-12-03 18:30">18:30</time> -
20:00
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://seors.unfccc.int/seors/reports/events_list.html?session_id=COP%2024">Bug</a><br> Equity is the Gateway to Climate Ambition</h2>
<p>Developing country delegates will share their views on the issues at COP 24 and greater climate action is only possible with equity between developed and developing countries</p>
<p>
<h4 class="has-text-weight-bold">Links</h4>
<a href="https://seors.unfccc.int/seors/attachments/get_attachment?code=X4WHDJC1CP02WS38LOLA4RYGDB7RXUFI">side event flyer [14 kb]</a><br>
<a href="https://seors.unfccc.int/seors/attachments/get_attachment?code=JCDCXI8OZCAVHL88BV9BNMX4IFZQTI6J">TWN update 1 [278 kb]</a><br>
</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#bug-2018-12-03-18-30">Copy to Clipboard</a>
<hr>
</section>
<section id="eu-pavilion-room-brussels-2018-12-03-18-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#eu-pavilion-room-brussels-2018-12-03-18-30"> 🔗</a><br>
<time datetime="2018-12-03 18:30">18:30</time> -
20:00
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="http://ec.europa.eu/clima/events/0124/calendar_en.htm#schedule">EU Pavilion Room Brussels</a><br> The price to pay for lignite and how to take just transition to the next level</h2>
<p><p><p><span>This event will focus on the issue of just transition - a zero-carbon transition built on the principle of social justice. In the first part this complex concept will be illustrated with stories of local communities affected by coal infrastructure. Speakers will present the recently published report "The Real Costs of Coal: Muğla”, which provides testimonies of the villagers living in Muğla, Turkey, who suffer health and environmental impacts of extracting and burning coal and analyses impacts of coal on people's health, socio-economic well being, and forest ecosystems. You will also hear from local citizens of Imielin, Poland, who oppose the expansion of the hard coal mine underneath their town.</span></p><p></p><p><span>In the second part we will take a closer look at the concept of Just Transition. If it is to contribute to greater equality and justice, Just Transition needs to promote rapid decarbonisation while protecting workers and their communities. It needs to challenge the inbuilt inequalities that exist between different social groups and move beyond a green growth agenda. This involves questioning power relations and considering inter-sectional issues, such as human rights, gender and the participation of indigenous and local communities. What kind of transition do we want? In the interests of whom? To what end? </span></p><br/></p></p>
<p>Rosa-Luxemburg-Stiftung (RLS); Climate Action Network (CAN) Europe; United Nations Research Institute for Social Development (UNRISD)</p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li>1. Joanna Flisowska, Coal Policy Coordinator at Climate Action Network (CAN) Europe; 2. Alicja Zdziechowicz, Zielony Imielin (Society of Green Imielin); 3. Ireneusz Górniok, Zielony Imielin (Society of Green Imielin); 4. Catalina Caro Galvis (CENSAT-Friends of the Earth Colombia); 5. Bridget Burns, Women’s Environment & Development Organization (WEDO); 6. Dunja Krause (UNRISD); 7. Nadja Charaby (RLS)</li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#eu-pavilion-room-brussels-2018-12-03-18-30">Copy to Clipboard</a>
<hr>
</section>
<section id="eu-pavilion-room-vienna-2018-12-03-18-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#eu-pavilion-room-vienna-2018-12-03-18-30"> 🔗</a><br>
<time datetime="2018-12-03 18:30">18:30</time> -
20:00
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="http://ec.europa.eu/clima/events/0124/calendar_en.htm#schedule">EU Pavilion Room Vienna</a><br> In search for a climate leader - the role of the EU in shaping an ambitious international climate regime</h2>
<p><p><span lang="EN-US">The EU has increasingly established itself as an international leader in global environmental governance, for example with respect to the protection of the ozone layer and biodiversity. It has been a driving force within the UN Framework Convention on Climate Change (UNFCCC) and its Kyoto Protocol, using ‘soft leadership’ and ‘leadership by example’ as its strategy. Although some involvements have not succeeded, the EU can still be considered a master at coalition building. In terms of diplomatic as well as economic power the European Union has the potential to function as a climate leader. It has a number of diplomatic skills and tools at its disposal as well as the economic power to support other countries not only in terms of financing mitigation policies, but also adaptation approaches to climate change. At the same time, the EU is facing challenges such as the Brexit negotiations, continuing centrifugal and polarizing forces or the financial crisis that could potentially form obstacles to an active leadership role in international climate politics. The event aims at discussing the prospects for a leadership role of the European Union in shaping an ambitious international climate regime while examining past and current policy approaches.</span><span lang="EN-US"> </span><span lang="EN-US"></span></p></p>
<p>Friedrich-Ebert-Stiftung (FES)</p>
<h4 class="has-text-weight-bold">Speakers</h4>
<ul>
<li>1. Manuela Matthess (FES), ; 2. Elina Bardram (DG Climate), ; 3. Alexander Reitzenstein (E3G), ; 4. Ulriika Aarnio (CAN Europe, tbc), ; 5. Robert Muthami (FES Kenya); 6. Benjamin Denis (ETUC).</li>
</ul>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#eu-pavilion-room-vienna-2018-12-03-18-30">Copy to Clipboard</a>
<hr>
</section>
<section id="narew-2018-12-03-18-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#narew-2018-12-03-18-30"> 🔗</a><br>
<time datetime="2018-12-03 18:30">18:30</time> -
20:00
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://seors.unfccc.int/seors/reports/events_list.html?session_id=COP%2024">Narew</a><br> National engagement for low emission development pathways</h2>
<p>The side event presents research and exchanges experience on how governments, regional actors, civil society and the private sector can establish and finance low emission development strategies according to priorities and capacities of each party to the Paris Agreement
Speakers: Ministry of Local Affairs and Environment (Tunisia),NGO: Climate Change and sustainable development organization (Tunisia), GIZ, Researchers from Perspectives, Stockholm Environment Institute and South South North</p>
<p>
<h4 class="has-text-weight-bold">Links</h4>
<a href="https://seors.unfccc.int/seors/attachments/get_attachment?code=NHUUH55IHGS6AIK1NVT5EG2ZRYEA9UBT">Flyer [448 kb]</a><br>
</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#narew-2018-12-03-18-30">Copy to Clipboard</a>
<hr>
</section>
<section id="pieniny-2018-12-03-18-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#pieniny-2018-12-03-18-30"> 🔗</a><br>
<time datetime="2018-12-03 18:30">18:30</time> -
20:00
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://seors.unfccc.int/seors/reports/events_list.html?session_id=COP%2024">Pieniny</a><br> Achieving the IMO GHG Reduction objectives: fossil fuels, climate change and economic development</h2>
<p>Achieving the Paris Agreement and the IMO Initial Strategy Objectives will require a rapid shift away from fossil fuel use. This session will discuss options for achieving these objectives, and the implications for economic development, including for vulnerable countries.
Speakers: Ian Parry, Fiscal Affairs Dept. IMF, Dominik Englert, Carbon Pricing Leadership Coalition, Johannah Christensen Global Maritime Forum, Academic, govt, and NGO representatives</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#pieniny-2018-12-03-18-30">Copy to Clipboard</a>
<hr>
</section>
<section id="wwf-pavilion-2018-12-03-18-30" class="section is-size-6 is-size-7-touch anchor">
<p class="is-size-5 is-size-6-touch">Monday, 03 December<a class="anchor-link" href="#wwf-pavilion-2018-12-03-18-30"> 🔗</a><br>
<time datetime="2018-12-03 18:30">18:30</time> -
21:30
</p>
<h2 class="is-size-4 is-size-5-touch"><a class="has-text-primary" href="https://wwf.panda.org/our_work/climate_and_energy/cop24/">WWF Pavilion</a><br> Media training night school (closed event)</h2>
<p>** This event is by invitation only **</p>
<a class="clipboard-action button is-primary is-small" data-clipboard-target="#wwf-pavilion-2018-12-03-18-30">Copy to Clipboard</a>
<hr>