-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenericActionList.json
10832 lines (10832 loc) · 562 KB
/
genericActionList.json
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
[
{
"ActionID": "c40_0001",
"ActionName": "Building Codes",
"ActionType": [
"mitigation"
],
"AdaptationCategory": null,
"Hazard": null,
"Sector": [
"stationary_energy"
],
"Subsector": [
"all"
],
"PrimaryPurpose": [
"ghg_reduction"
],
"InterventionType": [
"regulations_and_laws"
],
"Description": "\"Building Codes and Standards\" entail the formulation and enforcement of regulations guiding the construction of environmentally responsible buildings. By implementing stringent codes, cities promote energy efficiency, reduce carbon emissions, and enhance resilience to climate change, fostering sustainable urban development.",
"BehavioralChangeTargeted": "The targeted behavioral change that the \"Building Codes and Standards\" climate action aims to achieve is the adoption of environmentally responsible construction practices among builders, developers, and homeowners. This includes prioritizing energy-efficient designs, utilizing sustainable materials, and adhering to regulations that reduce carbon emissions in new buildings. By enforcing stringent building codes, the intervention seeks to shift perceptions about the importance of sustainability in construction, ultimately leading to a widespread commitment to building practices that contribute to climate resilience and reduced greenhouse gas emissions.",
"CoBenefits": {
"air_quality": 0,
"water_quality": 1,
"habitat": 0,
"cost_of_living": 0,
"housing": -1,
"mobility": 0,
"stakeholder_engagement": 0
},
"EquityAndInclusionConsiderations": "The \"Building Codes and Standards\" climate action promotes equity and inclusion in several ways:\n\n1. **Access to Safe Housing**: By enforcing building codes that prioritize safety and resilience, vulnerable communities benefit from improved housing conditions, reducing their risk of displacement due to climate-related disasters.\n\n2. **Energy Efficiency**: Stricter energy efficiency standards can lower utility costs for low-income households, making housing more affordable and reducing the financial burden on underserved communities.\n\n3. **Health Benefits**: Environmentally responsible buildings often incorporate better ventilation and materials, leading to improved indoor air quality, which is particularly beneficial for communities that may face higher health risks.\n\n4. **Job Creation**: The implementation of new building codes can create job opportunities in construction and retrofitting, providing economic benefits to underserved populations and promoting workforce development.\n\n5. **Community Engagement**: The process of developing and enforcing building codes often involves community input, ensuring that the voices of vulnerable populations are considered in urban planning and development decisions.\n\n6. **Resilience to Climate Change**: By enhancing the resilience of buildings in underserved areas, this action helps protect these communities from the disproportionate impacts of climate change, fostering long-term sustainability and stability. \n\nOverall, the action integrates equity and inclusion by addressing the specific needs and vulnerabilities of underserved communities while promoting sustainable urban development.",
"GHGReductionPotential": {
"stationary_energy": "0-19",
"transportation": null,
"waste": null,
"ippu": null,
"afolu": null
},
"AdaptationEffectiveness": null,
"CostInvestmentNeeded": "medium",
"TimelineForImplementation": "5-10 years",
"Dependencies": [
"Government commitment to enforce regulations",
"Availability of technical expertise for code development",
"Public awareness and support for sustainable building practices",
"Collaboration with construction industry stakeholders",
"Access to funding for implementation and compliance",
"Integration with existing urban planning and development policies"
],
"KeyPerformanceIndicators": [
"Percentage reduction in energy consumption in new buildings",
"Percentage of buildings compliant with updated building codes",
"Reduction in greenhouse gas emissions from the building sector",
"Number of buildings certified under green building standards",
"Percentage increase in the use of sustainable building materials",
"Average resilience score of buildings against climate-related hazards",
"Number of training sessions conducted for builders and architects on new codes",
"Public awareness and engagement levels regarding building codes and standards"
],
"Impacts": [
"Promotes energy efficiency in construction",
"Reduces greenhouse gas emissions",
"Enhances resilience of buildings to climate change",
"Improves housing conditions for vulnerable communities",
"Lowers utility costs for low-income households",
"Creates job opportunities in construction and retrofitting",
"Involves community input in urban planning",
"Improves indoor air quality"
]
},
{
"ActionID": "c40_0002",
"ActionName": "Building Codes",
"ActionType": [
"mitigation"
],
"AdaptationCategory": null,
"Hazard": null,
"Sector": [
"stationary_energy"
],
"Subsector": [
"residential_buildings"
],
"PrimaryPurpose": [
"ghg_reduction"
],
"InterventionType": [
"regulations_and_laws"
],
"Description": "\"Building Codes and Standards, Residential Buildings\" entail the formulation and enforcement of regulations guiding the construction of environmentally responsible buildings. By implementing stringent codes, cities promote energy efficiency, reduce carbon emissions, and enhance resilience to climate change, fostering sustainable urban development.",
"BehavioralChangeTargeted": "The targeted behavioral change that the climate action \"Building Codes and Standards, Residential Buildings\" aims to achieve is the adoption of energy-efficient construction practices among builders, developers, and homeowners. This includes a shift towards designing and constructing residential buildings that comply with stringent environmental regulations, thereby reducing energy consumption and carbon emissions. By fostering a culture of sustainability in building practices, the intervention encourages stakeholders to prioritize environmentally responsible choices in the construction and renovation of homes, ultimately contributing to sustainable urban development and resilience to climate change.",
"CoBenefits": {
"air_quality": 0,
"water_quality": 1,
"habitat": 0,
"cost_of_living": 0,
"housing": -1,
"mobility": 0,
"stakeholder_engagement": 0
},
"EquityAndInclusionConsiderations": "The climate action of implementing \"Building Codes and Standards\" for residential buildings promotes equity and inclusion in several ways:\n\n1. **Access to Safe Housing**: By enforcing building codes that prioritize safety and environmental responsibility, vulnerable communities are ensured access to safe and resilient housing, reducing their risk of displacement due to climate-related events.\n\n2. **Energy Efficiency Benefits**: Stricter energy efficiency standards can lower utility costs for residents, particularly benefiting low-income households that may struggle with high energy bills, thus promoting economic equity.\n\n3. **Healthier Living Environments**: The focus on environmentally responsible construction can lead to healthier living conditions, reducing exposure to pollutants and improving overall public health, which is particularly beneficial for underserved communities that often face higher health risks.\n\n4. **Community Resilience**: By enhancing resilience to climate change, these building codes help protect underserved communities from the adverse effects of climate impacts, ensuring they are not disproportionately affected by climate-related disasters.\n\n5. **Inclusive Development**: The formulation of these codes often involves community input, ensuring that the voices of vulnerable populations are considered in the decision-making process, fostering a sense of ownership and inclusion in urban development initiatives. \n\nOverall, the action integrates equity and inclusion by addressing the specific needs and vulnerabilities of underserved communities while promoting sustainable urban development.",
"GHGReductionPotential": {
"stationary_energy": "80-100",
"transportation": null,
"waste": null,
"ippu": null,
"afolu": null
},
"AdaptationEffectiveness": null,
"CostInvestmentNeeded": "medium",
"TimelineForImplementation": "5-10 years",
"Dependencies": [
"Collaboration with local governments to develop and enforce building codes",
"Access to updated research and data on energy efficiency and sustainable materials",
"Training and resources for builders and contractors on new standards",
"Public awareness and support for sustainable building practices",
"Funding and incentives for implementing energy-efficient technologies"
],
"KeyPerformanceIndicators": [
"Energy efficiency improvements",
"Reduction in carbon emissions",
"Number of buildings compliant with codes",
"Percentage of new constructions meeting sustainability standards",
"Reduction in energy consumption per square foot",
"Increase in use of renewable energy sources",
"Cost savings from energy-efficient designs",
"Improvement in indoor air quality",
"Resilience metrics against climate impacts",
"Stakeholder engagement and compliance rates"
],
"Impacts": [
"Reduction in GHG emissions from residential buildings",
"Improved energy efficiency leading to lower utility costs for residents",
"Enhanced resilience of communities to climate change impacts",
"Promotion of safe and healthy living environments",
"Increased equity in housing access for vulnerable populations"
]
},
{
"ActionID": "c40_0003",
"ActionName": "Building Codes",
"ActionType": [
"mitigation"
],
"AdaptationCategory": null,
"Hazard": null,
"Sector": [
"stationary_energy"
],
"Subsector": [
"commercial_and_institutional_buildings_and_facilities"
],
"PrimaryPurpose": [
"ghg_reduction"
],
"InterventionType": [
"regulations_and_laws"
],
"Description": "\"Building Codes and Standards, Commercial Buildings\" entail the formulation and enforcement of regulations guiding the construction of environmentally responsible buildings. By implementing stringent codes, cities promote energy efficiency, reduce carbon emissions, and enhance resilience to climate change, fostering sustainable urban development.",
"BehavioralChangeTargeted": "The targeted behavioral shift that the climate action \"Building Codes and Standards, Commercial Buildings\" aims to achieve is the adoption of environmentally responsible construction practices among builders, developers, and architects. This includes prioritizing energy efficiency, utilizing sustainable materials, and adhering to stringent building regulations that reduce carbon emissions and enhance resilience to climate change. By enforcing these codes, the intervention seeks to change perceptions about the importance of sustainable building practices, ultimately leading to a widespread commitment to constructing energy-efficient commercial buildings.",
"CoBenefits": {
"air_quality": 0,
"water_quality": 1,
"habitat": 0,
"cost_of_living": 0,
"housing": -1,
"mobility": 0,
"stakeholder_engagement": 0
},
"EquityAndInclusionConsiderations": "The climate action of establishing \"Building Codes and Standards, Commercial Buildings\" promotes equity and inclusion in several ways:\n\n1. **Access to Safe and Healthy Environments**: By enforcing regulations for environmentally responsible buildings, the action ensures that all communities, including vulnerable and underserved populations, have access to safe, healthy, and energy-efficient spaces, reducing health risks associated with poor building conditions.\n\n2. **Economic Opportunities**: The implementation of stringent building codes can create job opportunities in the construction and retrofitting sectors, particularly benefiting local workers from underserved communities who may face barriers to employment.\n\n3. **Resilience to Climate Change**: By enhancing the resilience of buildings to climate impacts, the action helps protect vulnerable communities that are often disproportionately affected by climate-related disasters, ensuring they are better equipped to withstand such events.\n\n4. **Energy Cost Savings**: Energy-efficient buildings can lead to lower utility bills, which is particularly beneficial for low-income households and businesses, helping to alleviate financial burdens and promote economic equity.\n\n5. **Community Engagement**: The formulation of building codes often involves stakeholder engagement, which can include input from underserved communities, ensuring their needs and perspectives are considered in the development of regulations that affect their living and working environments. \n\nOverall, this climate action integrates equity and inclusion by prioritizing the needs of vulnerable populations, promoting economic opportunities, and enhancing community resilience.",
"GHGReductionPotential": {
"stationary_energy": "80-100",
"transportation": null,
"waste": null,
"ippu": null,
"afolu": null
},
"AdaptationEffectiveness": null,
"CostInvestmentNeeded": "medium",
"TimelineForImplementation": "5-10 years",
"Dependencies": [
"Collaboration with local governments to develop and enforce building codes",
"Access to updated research and data on energy efficiency and sustainable practices",
"Training and resources for builders and contractors on new standards",
"Public awareness and support for sustainable building practices",
"Funding and incentives for implementing energy-efficient technologies"
],
"KeyPerformanceIndicators": [
"Energy consumption reduction",
"Carbon emissions reduction",
"Percentage of buildings meeting code standards",
"Cost savings from energy efficiency",
"Number of buildings certified under green building standards",
"Improvement in indoor air quality",
"Resilience score against climate impacts",
"Rate of compliance with building codes",
"Reduction in water usage",
"Increase in renewable energy usage in buildings"
],
"Impacts": [
"Reduction in greenhouse gas emissions by 80-100% in stationary energy sector",
"Promotion of energy-efficient and environmentally responsible construction practices",
"Improvement in water quality through sustainable building practices",
"Creation of job opportunities in construction and retrofitting sectors",
"Enhanced resilience of buildings to climate change impacts",
"Lower utility bills for low-income households and businesses",
"Increased access to safe and healthy environments for underserved communities"
]
},
{
"ActionID": "c40_0004",
"ActionName": "Building Codes",
"ActionType": [
"mitigation"
],
"AdaptationCategory": null,
"Hazard": null,
"Sector": [
"stationary_energy"
],
"Subsector": [
"commercial_and_institutional_buildings_and_facilities"
],
"PrimaryPurpose": [
"ghg_reduction"
],
"InterventionType": [
"regulations_and_laws"
],
"Description": "\"Building Codes and Standards, Institutional Buildings\" entail the formulation and enforcement of regulations guiding the construction of environmentally responsible buildings. By implementing stringent codes, cities promote energy efficiency, reduce carbon emissions, and enhance resilience to climate change, fostering sustainable urban development.",
"BehavioralChangeTargeted": "The targeted behavioral change that the climate action \"Building Codes and Standards, Institutional Buildings\" aims to achieve is the adoption of energy-efficient construction practices among builders, architects, and developers. This intervention seeks to encourage these stakeholders to prioritize environmentally responsible building designs and materials, thereby reducing carbon emissions and enhancing resilience to climate change. By enforcing regulations and standards, the action promotes a shift towards sustainable urban development, ultimately leading to a broader societal acceptance and implementation of energy-efficient practices in the construction industry.",
"CoBenefits": {
"air_quality": 0,
"water_quality": 1,
"habitat": 0,
"cost_of_living": 0,
"housing": -1,
"mobility": 0,
"stakeholder_engagement": 0
},
"EquityAndInclusionConsiderations": "The climate action of implementing \"Building Codes and Standards\" for institutional buildings promotes equity and inclusion in several ways:\n\n1. **Access to Safe and Healthy Environments**: By enforcing regulations for environmentally responsible buildings, the action ensures that all communities, including vulnerable and underserved populations, have access to safe, healthy, and energy-efficient spaces. This is particularly important for low-income neighborhoods that may otherwise be subjected to substandard housing conditions.\n\n2. **Job Creation and Economic Opportunities**: The formulation and enforcement of building codes can lead to job creation in construction and related industries. This can provide economic opportunities for underserved communities, helping to reduce disparities in employment and income.\n\n3. **Resilience to Climate Change**: By enhancing resilience to climate change, the action helps protect vulnerable communities that are often disproportionately affected by climate impacts. Improved building standards can mitigate risks such as flooding and extreme heat, thereby safeguarding the health and well-being of these populations.\n\n4. **Community Engagement**: The process of developing and enforcing building codes often involves community input, ensuring that the voices of underserved populations are heard and considered. This participatory approach fosters a sense of ownership and inclusion in the decision-making process.\n\n5. **Long-term Cost Savings**: Energy-efficient buildings can lead to lower utility bills, which is particularly beneficial for low-income households. By promoting energy efficiency through building codes, the action helps alleviate financial burdens on vulnerable communities.\n\nOverall, the implementation of building codes and standards not only addresses environmental concerns but also actively promotes equity and inclusion by considering the needs and rights of underserved communities.",
"GHGReductionPotential": {
"stationary_energy": "80-100",
"transportation": null,
"waste": null,
"ippu": null,
"afolu": null
},
"AdaptationEffectiveness": null,
"CostInvestmentNeeded": "medium",
"TimelineForImplementation": "5-10 years",
"Dependencies": [
"Collaboration with local governments to develop and enforce building codes",
"Access to updated research and data on energy efficiency and sustainable building practices",
"Training and resources for builders and contractors on new standards",
"Public awareness and support for sustainable building practices",
"Funding and incentives for implementing energy-efficient technologies in buildings"
],
"KeyPerformanceIndicators": [
"Energy efficiency improvements",
"Reduction in carbon emissions",
"Number of buildings compliant with codes",
"Percentage of new buildings meeting sustainability standards",
"Reduction in energy consumption per square foot",
"Increase in use of renewable energy sources",
"Cost savings from energy efficiency measures",
"Improvement in indoor air quality",
"Resilience metrics against climate impacts",
"Stakeholder engagement and training sessions conducted"
],
"Impacts": [
"Reduction of GHG emissions by 80-100% in stationary energy sector",
"Promotion of energy-efficient construction practices",
"Improved access to safe and healthy environments for underserved communities",
"Job creation and economic opportunities in construction",
"Enhanced resilience to climate change for vulnerable populations",
"Community engagement in decision-making processes",
"Long-term cost savings for low-income households through reduced utility bills"
]
},
{
"ActionID": "c40_0005",
"ActionName": "Building Codes",
"ActionType": [
"mitigation"
],
"AdaptationCategory": null,
"Hazard": null,
"Sector": [
"stationary_energy"
],
"Subsector": [
"manufacturing_industries_and_construction"
],
"PrimaryPurpose": [
"ghg_reduction"
],
"InterventionType": [
"regulations_and_laws"
],
"Description": "\"Building Codes and Standards, Industrial Buildings\" entail the formulation and enforcement of regulations guiding the construction of environmentally responsible buildings. By implementing stringent codes, cities promote energy efficiency, reduce carbon emissions, and enhance resilience to climate change, fostering sustainable urban development.",
"BehavioralChangeTargeted": "The targeted behavioral shift that the climate action \"Building Codes and Standards, Industrial Buildings\" aims to achieve is the adoption of energy-efficient construction practices and the prioritization of sustainable building designs among architects, builders, and developers. This shift is encouraged through the enforcement of regulations that mandate environmentally responsible building standards, leading to reduced carbon emissions and enhanced resilience to climate change. Ultimately, the goal is to foster a culture of sustainability in urban development, where stakeholders actively choose to comply with and advocate for energy-efficient building practices.",
"CoBenefits": {
"air_quality": 0,
"water_quality": 1,
"habitat": 0,
"cost_of_living": 0,
"housing": -1,
"mobility": 0,
"stakeholder_engagement": 0
},
"EquityAndInclusionConsiderations": "The climate action of establishing \"Building Codes and Standards, Industrial Buildings\" promotes equity and inclusion in several ways:\n\n1. **Access to Safe and Healthy Environments**: By enforcing regulations for environmentally responsible buildings, the action ensures that all communities, including vulnerable and underserved populations, have access to safe, healthy, and energy-efficient living and working environments.\n\n2. **Economic Opportunities**: The implementation of stringent building codes can create job opportunities in construction, retrofitting, and maintenance, particularly benefiting low-income individuals and communities that may face barriers to employment.\n\n3. **Resilience to Climate Change**: By enhancing resilience to climate change, the action helps protect underserved communities that are often disproportionately affected by climate impacts, ensuring they are better equipped to withstand environmental challenges.\n\n4. **Reduction of Energy Burden**: Promoting energy efficiency through building standards can lower utility costs for residents and businesses in vulnerable communities, alleviating the financial strain associated with high energy bills.\n\n5. **Community Engagement**: The formulation of building codes often involves stakeholder engagement, which can include input from underserved communities, ensuring their voices and needs are considered in the development of regulations that affect their environments.\n\n6. **Long-term Sustainability**: By fostering sustainable urban development, the action contributes to the overall well-being of all community members, particularly those in marginalized groups who may face greater risks from environmental degradation. \n\nOverall, this climate action integrates equity and inclusion by prioritizing the needs and rights of vulnerable communities in the pursuit of sustainable development.",
"GHGReductionPotential": {
"stationary_energy": "80-100",
"transportation": null,
"waste": null,
"ippu": null,
"afolu": null
},
"AdaptationEffectiveness": null,
"CostInvestmentNeeded": "medium",
"TimelineForImplementation": "5-10 years",
"Dependencies": [
"Collaboration with local governments to develop and enforce building codes",
"Access to updated research and data on energy efficiency and sustainable materials",
"Training and resources for builders and contractors on new standards",
"Public awareness and support for sustainable building practices",
"Funding and incentives for compliance with building codes"
],
"KeyPerformanceIndicators": [
"Energy efficiency improvements",
"Reduction in carbon emissions",
"Number of buildings compliant with codes",
"Percentage of new buildings meeting sustainability standards",
"Reduction in energy consumption per square foot",
"Increase in the use of renewable energy sources",
"Cost savings from energy-efficient designs",
"Improvement in indoor air quality",
"Resilience metrics against climate impacts",
"Stakeholder engagement and compliance rates"
],
"Impacts": [
"Reduction of GHG emissions by 80-100% in stationary energy sector",
"Promotion of energy-efficient construction practices",
"Creation of job opportunities in construction and retrofitting",
"Improved access to safe and healthy environments for underserved communities",
"Lower utility costs for residents in vulnerable communities",
"Enhanced resilience to climate change for marginalized groups",
"Increased stakeholder engagement in building code development"
]
},
{
"ActionID": "c40_0006",
"ActionName": "Retrofit Measures",
"ActionType": [
"mitigation"
],
"AdaptationCategory": null,
"Hazard": null,
"Sector": [
"stationary_energy"
],
"Subsector": [
"all"
],
"PrimaryPurpose": [
"ghg_reduction"
],
"InterventionType": [
"programs_and_initiatives",
"infrastructure_investments"
],
"Description": "\"Retrofit Measures\" encompass targeted interventions to enhance the environmental performance of existing buildings, promoting energy efficiency and sustainability. This initiative focuses on upgrading structures to reduce emissions and contribute to the city's commitment to climate change mitigation.",
"BehavioralChangeTargeted": "The targeted behavioral change that the \"Retrofit Measures\" climate action aims to achieve is the increased adoption of energy-efficient practices among building owners and occupants. This includes encouraging individuals and organizations to invest in retrofitting existing buildings with sustainable technologies and practices, thereby reducing greenhouse gas emissions and enhancing overall energy performance. The initiative seeks to shift perceptions around the benefits of energy efficiency—such as cost savings, improved comfort, and environmental responsibility—ultimately leading to a broader societal commitment to sustainability and climate change mitigation.",
"CoBenefits": {
"air_quality": 0,
"water_quality": 0,
"habitat": 0,
"cost_of_living": 0,
"housing": -1,
"mobility": 0,
"stakeholder_engagement": 0
},
"EquityAndInclusionConsiderations": "The \"Retrofit Measures\" initiative promotes equity and inclusion by specifically targeting existing buildings in vulnerable or underserved communities, ensuring that these areas benefit from enhanced environmental performance. By focusing on energy efficiency upgrades, the action addresses the disproportionate energy burdens faced by low-income households, which often experience higher utility costs and poorer living conditions. \n\nAdditionally, the initiative may create job opportunities in these communities, particularly in the green building sector, thereby fostering economic inclusion. By prioritizing retrofitting in areas that have historically been overlooked, the action helps to reduce emissions while simultaneously improving the quality of life for residents in underserved neighborhoods. This dual focus on environmental sustainability and social equity ensures that the benefits of climate action are shared more broadly, contributing to a more inclusive approach to climate change mitigation.",
"GHGReductionPotential": {
"stationary_energy": "0-19",
"transportation": null,
"waste": null,
"ippu": null,
"afolu": null
},
"AdaptationEffectiveness": null,
"CostInvestmentNeeded": "high",
"TimelineForImplementation": "5-10 years",
"Dependencies": [
"Availability of funding for retrofitting projects",
"Access to skilled labor and contractors for implementation",
"Compliance with local building codes and regulations",
"Availability of energy-efficient materials and technologies",
"Engagement and support from building owners and occupants",
"Data on current building performance and emissions",
"Collaboration with local government and stakeholders for policy support"
],
"KeyPerformanceIndicators": [
"Energy consumption reduction",
"Greenhouse gas emissions reduction",
"Cost savings from energy efficiency",
"Number of buildings retrofitted",
"Percentage of buildings meeting energy efficiency standards",
"Increase in renewable energy usage",
"Occupant satisfaction and comfort levels",
"Return on investment (ROI) for retrofitting projects",
"Reduction in water usage",
"Improvement in indoor air quality"
],
"Impacts": [
"Reduction of greenhouse gas emissions from stationary energy use",
"Increased energy efficiency in existing buildings",
"Improved living conditions in underserved communities",
"Creation of job opportunities in the green building sector",
"Enhanced environmental performance in vulnerable areas"
]
},
{
"ActionID": "c40_0007",
"ActionName": "Retrofit Measures",
"ActionType": [
"mitigation"
],
"AdaptationCategory": null,
"Hazard": null,
"Sector": [
"stationary_energy"
],
"Subsector": [
"residential_buildings"
],
"PrimaryPurpose": [
"ghg_reduction"
],
"InterventionType": [
"programs_and_initiatives",
"infrastructure_investments"
],
"Description": "\"Retrofit Measures, Residential buildings\" encompass targeted interventions to enhance the environmental performance of existing buildings, promoting energy efficiency and sustainability. This initiative focuses on upgrading structures to reduce emissions and contribute to the city's commitment to climate change mitigation.",
"BehavioralChangeTargeted": "The targeted behavioral shift that the climate action \"Retrofit Measures, Residential buildings\" aims to achieve is the increased adoption of energy-efficient upgrades and sustainable practices among homeowners and residents. This includes encouraging individuals to invest in retrofitting their existing homes with energy-efficient technologies, such as improved insulation, energy-efficient windows, and renewable energy systems, thereby reducing greenhouse gas emissions and contributing to overall climate change mitigation efforts.",
"CoBenefits": {
"air_quality": 0,
"water_quality": 0,
"habitat": 0,
"cost_of_living": 0,
"housing": -1,
"mobility": 0,
"stakeholder_engagement": 0
},
"EquityAndInclusionConsiderations": "The \"Retrofit Measures, Residential buildings\" initiative promotes equity and inclusion by specifically targeting existing residential structures, which often include homes in vulnerable or underserved communities. By focusing on these areas, the action addresses the needs of populations that may lack the resources to invest in energy efficiency upgrades on their own. \n\nAdditionally, the initiative likely prioritizes low-income households, ensuring that those who are most affected by climate change and energy costs benefit from improved energy efficiency. This can lead to lower utility bills, enhancing economic stability for these communities. \n\nFurthermore, the action may involve community engagement and participation, allowing residents to have a voice in the retrofitting process, thereby fostering a sense of ownership and inclusion. Overall, the initiative not only aims to reduce emissions but also actively seeks to uplift and empower underserved populations through sustainable building practices.",
"GHGReductionPotential": {
"stationary_energy": "80-100",
"transportation": null,
"waste": null,
"ippu": null,
"afolu": null
},
"AdaptationEffectiveness": null,
"CostInvestmentNeeded": "high",
"TimelineForImplementation": "5-10 years",
"Dependencies": [
"Availability of funding for retrofitting projects",
"Access to skilled labor and contractors for implementation",
"Compliance with local building codes and regulations",
"Availability of energy-efficient materials and technologies",
"Community engagement and support for retrofitting initiatives",
"Data on existing building performance and energy usage",
"Partnerships with local governments and organizations for resources and incentives"
],
"KeyPerformanceIndicators": [
"Energy consumption reduction",
"Greenhouse gas emissions reduction",
"Cost savings on energy bills",
"Number of buildings retrofitted",
"Percentage of energy-efficient upgrades",
"Improvement in indoor air quality",
"Increase in property value",
"User satisfaction and comfort levels",
"Return on investment (ROI)",
"Compliance with sustainability standards"
],
"Impacts": [
"Reduction of greenhouse gas emissions by 80-100% in stationary energy sector",
"Increased adoption of energy-efficient upgrades among homeowners",
"Economic stability for low-income households through lower utility bills",
"Empowerment of underserved communities through community engagement",
"Targeted support for vulnerable populations in residential areas"
]
},
{
"ActionID": "c40_0008",
"ActionName": "Retrofit Measures",
"ActionType": [
"mitigation"
],
"AdaptationCategory": null,
"Hazard": null,
"Sector": [
"stationary_energy"
],
"Subsector": [
"commercial_and_institutional_buildings_and_facilities"
],
"PrimaryPurpose": [
"ghg_reduction"
],
"InterventionType": [
"programs_and_initiatives",
"infrastructure_investments"
],
"Description": "\"Retrofit Measures, Commercial buildings\" encompass targeted interventions to enhance the environmental performance of existing buildings, promoting energy efficiency and sustainability. This initiative focuses on upgrading structures to reduce emissions and contribute to the city's commitment to climate change mitigation.",
"BehavioralChangeTargeted": "The targeted behavioral change that the climate action \"Retrofit Measures, Commercial buildings\" aims to achieve is the increased adoption of energy-efficient practices and technologies among building owners and managers. This includes a shift towards investing in retrofitting existing commercial buildings to enhance their environmental performance, thereby reducing greenhouse gas emissions and promoting sustainability. The initiative encourages stakeholders to prioritize energy efficiency upgrades, leading to a broader cultural shift in the commercial real estate sector towards sustainable building practices.",
"CoBenefits": {
"air_quality": 0,
"water_quality": 0,
"habitat": 0,
"cost_of_living": 0,
"housing": -1,
"mobility": 0,
"stakeholder_engagement": 0
},
"EquityAndInclusionConsiderations": "The \"Retrofit Measures, Commercial buildings\" initiative promotes equity and inclusion by specifically targeting existing structures that may be located in underserved communities, ensuring that these areas benefit from improved energy efficiency and reduced emissions. By focusing on retrofitting, the action addresses the needs of vulnerable populations who may be disproportionately affected by climate change and poor building conditions. \n\nAdditionally, the initiative can create job opportunities in the local workforce, particularly for individuals from marginalized backgrounds, thereby fostering economic inclusion. The emphasis on sustainability and energy efficiency also contributes to healthier living and working environments, which is crucial for the well-being of underserved communities. Overall, this climate action recognizes and addresses the unique challenges faced by vulnerable populations, ensuring they are included in the transition to a more sustainable future.",
"GHGReductionPotential": {
"stationary_energy": "80-100",
"transportation": null,
"waste": null,
"ippu": null,
"afolu": null
},
"AdaptationEffectiveness": null,
"CostInvestmentNeeded": "high",
"TimelineForImplementation": "5-10 years",
"Dependencies": [
"Availability of funding for retrofitting projects",
"Access to skilled labor and contractors for implementation",
"Compliance with local building codes and regulations",
"Availability of energy-efficient technologies and materials",
"Support from building owners and tenants for upgrades",
"Data on current building performance and emissions",
"Collaboration with local government and stakeholders for planning and execution"
],
"KeyPerformanceIndicators": [
"Energy consumption reduction",
"Greenhouse gas emissions reduction",
"Cost savings from energy efficiency",
"Percentage of buildings retrofitted",
"Improvement in building energy ratings",
"Occupant satisfaction and comfort levels",
"Return on investment (ROI)",
"Water usage reduction",
"Renewable energy integration",
"Compliance with sustainability standards"
],
"Impacts": [
"Significant reduction in greenhouse gas emissions (80-100%) from commercial buildings",
"Increased adoption of energy-efficient practices among building owners and managers",
"Job creation opportunities for marginalized communities",
"Improved energy efficiency in underserved areas",
"Promotion of sustainability and healthier living environments"
]
},
{
"ActionID": "c40_0009",
"ActionName": "New Building Standards",
"ActionType": [
"mitigation"
],
"AdaptationCategory": null,
"Hazard": null,
"Sector": [
"stationary_energy"
],
"Subsector": [
"all"
],
"PrimaryPurpose": [
"ghg_reduction"
],
"InterventionType": [
"regulations_and_laws"
],
"Description": "\"New Building Standards\" set guidelines for environmentally responsible construction, ensuring that new structures adhere to energy-efficient practices, thereby reducing carbon emissions and promoting sustainable urban development.",
"BehavioralChangeTargeted": "The targeted behavioral change aimed by the \"New Building Standards\" climate action is to encourage builders, developers, and property owners to adopt energy-efficient construction practices. This shift is intended to promote the construction of environmentally responsible buildings that minimize carbon emissions, thereby fostering a culture of sustainability in urban development. By mandating adherence to these standards through regulations and laws, the intervention seeks to alter perceptions about the importance of energy efficiency in construction, ultimately leading to a broader acceptance and implementation of sustainable building practices.",
"CoBenefits": {
"air_quality": 1,
"water_quality": 0,
"habitat": 0,
"cost_of_living": 0,
"housing": -1,
"mobility": 0,
"stakeholder_engagement": 0
},
"EquityAndInclusionConsiderations": "The \"New Building Standards\" promote equity and inclusion by ensuring that all new constructions, including those in vulnerable or underserved communities, adhere to energy-efficient practices. This helps to reduce energy costs for residents, making housing more affordable and accessible. Additionally, by prioritizing sustainable urban development, these standards can lead to improved living conditions and health outcomes in these communities, which often face disproportionate environmental burdens. Furthermore, the implementation of these standards can create job opportunities in green construction, benefiting local workers and fostering economic empowerment in underserved areas. Overall, the action considers the needs of vulnerable populations by promoting sustainable practices that enhance their quality of life and economic stability.",
"GHGReductionPotential": {
"stationary_energy": "0-19",
"transportation": null,
"waste": null,
"ippu": null,
"afolu": null
},
"AdaptationEffectiveness": null,
"CostInvestmentNeeded": "low",
"TimelineForImplementation": "<5 years",
"Dependencies": [
"Regulatory framework to enforce building standards",
"Availability of sustainable construction materials",
"Training and education for builders and architects on energy-efficient practices",
"Monitoring and evaluation systems to assess compliance with standards",
"Public awareness and support for sustainable building practices"
],
"KeyPerformanceIndicators": [
"Reduction in carbon emissions from new buildings",
"Percentage of new buildings meeting energy efficiency standards",
"Increase in the use of sustainable materials in construction",
"Number of buildings certified under green building standards",
"Energy consumption reduction in new constructions",
"Percentage of urban development projects incorporating green spaces"
],
"Impacts": [
"Reduction in carbon emissions from new buildings",
"Improvement in air quality",
"Enhanced energy efficiency in construction",
"Promotion of sustainable urban development",
"Increased affordability of housing for residents",
"Creation of job opportunities in green construction",
"Support for vulnerable communities through equitable practices"
]
},
{
"ActionID": "c40_0010",
"ActionName": "New Building Standards",
"ActionType": [
"mitigation"
],
"AdaptationCategory": null,
"Hazard": null,
"Sector": [
"stationary_energy"
],
"Subsector": [
"residential_buildings"
],
"PrimaryPurpose": [
"ghg_reduction"
],
"InterventionType": [
"regulations_and_laws"
],
"Description": "\"New Building Standards, Residential buildings\" set guidelines for environmentally responsible construction, ensuring that new structures adhere to energy-efficient practices, thereby reducing carbon emissions and promoting sustainable urban development.",
"BehavioralChangeTargeted": "The targeted behavioral change encouraged by the \"New Building Standards, Residential buildings\" climate action is to promote the adoption of energy-efficient construction practices among builders, developers, and homeowners. This intervention aims to shift perceptions regarding the importance of sustainable building methods, leading to increased compliance with energy-efficient guidelines and a reduction in carbon emissions associated with new residential buildings. Ultimately, the goal is to foster a culture of environmentally responsible construction that prioritizes sustainability in urban development.",
"CoBenefits": {
"air_quality": 1,
"water_quality": 0,
"habitat": 0,
"cost_of_living": 0,
"housing": -1,
"mobility": 0,
"stakeholder_engagement": 0
},
"EquityAndInclusionConsiderations": "The \"New Building Standards, Residential buildings\" action promotes equity and inclusion in several ways:\n\n1. **Access to Sustainable Housing**: By establishing guidelines for energy-efficient practices, the action ensures that all new residential buildings, including those in underserved communities, are constructed to be environmentally responsible. This can lead to more affordable utility costs for residents, benefiting low-income households.\n\n2. **Healthier Living Environments**: The focus on sustainable urban development contributes to healthier living conditions, which is particularly important for vulnerable populations who may be disproportionately affected by poor housing quality and environmental hazards.\n\n3. **Job Creation in Underserved Areas**: Implementing new building standards can create job opportunities in construction and related fields, particularly in communities that may lack economic resources. This can help uplift local economies and provide employment for residents.\n\n4. **Community Resilience**: By promoting energy efficiency and sustainable practices, the action enhances the resilience of communities to climate impacts, which is crucial for vulnerable populations that may be more susceptible to climate-related challenges.\n\n5. **Inclusive Policy Development**: The establishment of building standards often involves stakeholder engagement, which can include input from community members, particularly those from underserved backgrounds, ensuring that their needs and perspectives are considered in the development process. \n\nOverall, the action integrates equity and inclusion by ensuring that all communities, especially those that are vulnerable or underserved, benefit from sustainable building practices and improved living conditions.",
"GHGReductionPotential": {
"stationary_energy": "20-39",
"transportation": null,
"waste": null,
"ippu": null,
"afolu": null
},
"AdaptationEffectiveness": null,
"CostInvestmentNeeded": "low",
"TimelineForImplementation": "<5 years",
"Dependencies": [
"Regulatory framework to enforce building standards",
"Availability of sustainable building materials",
"Training and education for builders and architects on energy-efficient practices",
"Incentives for developers to adopt green building practices",
"Monitoring and evaluation mechanisms to assess compliance with standards"
],
"KeyPerformanceIndicators": [
"Energy consumption reduction",
"Carbon emissions reduction",
"Percentage of buildings meeting standards",
"Cost savings from energy efficiency",
"Water usage reduction",
"Sustainable materials usage",
"Occupant satisfaction",
"Compliance rate with building standards"
],
"Impacts": [
"Reduction in carbon emissions from residential buildings",
"Promotion of energy-efficient construction practices",
"Improved air quality",
"Access to sustainable housing for underserved communities",
"Creation of job opportunities in construction",
"Enhanced community resilience to climate impacts",
"Healthier living environments for vulnerable populations",
"Inclusive policy development involving community input"
]
},
{
"ActionID": "c40_0011",
"ActionName": "New Building Standards",
"ActionType": [
"mitigation"
],
"AdaptationCategory": null,
"Hazard": null,
"Sector": [
"stationary_energy"
],
"Subsector": [
"commercial_and_institutional_buildings_and_facilities"
],
"PrimaryPurpose": [
"ghg_reduction"
],
"InterventionType": [
"regulations_and_laws"
],
"Description": "\"New Building Standards, Commercial buildings\" set guidelines for environmentally responsible construction, ensuring that new structures adhere to energy-efficient practices, thereby reducing carbon emissions and promoting sustainable urban development.",
"BehavioralChangeTargeted": "The targeted behavioral change that the \"New Building Standards, Commercial buildings\" climate action aims to achieve is the adoption of energy-efficient construction practices among builders, architects, and developers. This intervention seeks to shift the behavior of these stakeholders towards prioritizing sustainable design and construction methods, thereby reducing carbon emissions associated with new commercial buildings. By mandating adherence to environmentally responsible guidelines, the action encourages a broader cultural shift within the construction industry towards sustainability, ultimately leading to a significant reduction in greenhouse gas emissions in urban development.",
"CoBenefits": {
"air_quality": 1,
"water_quality": 0,
"habitat": 0,
"cost_of_living": 0,
"housing": -1,
"mobility": 0,
"stakeholder_engagement": 0
},
"EquityAndInclusionConsiderations": "The \"New Building Standards, Commercial buildings\" action promotes equity and inclusion in several ways:\n\n1. **Access to Sustainable Infrastructure**: By establishing guidelines for energy-efficient practices, the action ensures that all new commercial buildings, including those in underserved communities, are constructed with sustainable features. This can lead to improved access to clean energy and reduced utility costs for local businesses and residents.\n\n2. **Job Creation and Economic Opportunities**: The implementation of new building standards can create job opportunities in construction and related industries, particularly benefiting individuals from vulnerable communities who may face barriers to employment. This can help stimulate local economies and provide pathways to stable employment.\n\n3. **Health Benefits**: Environmentally responsible construction often includes improved indoor air quality and reduced exposure to harmful pollutants. This is particularly beneficial for underserved communities that may already face health disparities, thereby promoting overall community well-being.\n\n4. **Community Resilience**: By promoting sustainable urban development, the action helps build resilience in vulnerable communities against climate impacts. This includes better infrastructure that can withstand extreme weather events, thereby protecting these communities from disproportionate harm.\n\n5. **Equitable Access to Resources**: The standards can encourage the inclusion of community input in the planning and development process, ensuring that the needs and voices of underserved populations are considered in the construction of new commercial buildings.\n\nOverall, the action integrates equity and inclusion by ensuring that the benefits of sustainable building practices are accessible to all communities, particularly those that are often marginalized.",
"GHGReductionPotential": {
"stationary_energy": "20-39",
"transportation": null,
"waste": null,
"ippu": null,
"afolu": null
},
"AdaptationEffectiveness": null,
"CostInvestmentNeeded": "low",
"TimelineForImplementation": "<5 years",
"Dependencies": [
"Regulatory framework to enforce building standards",
"Availability of sustainable construction materials",
"Training and certification programs for builders and architects",
"Incentives for adopting energy-efficient technologies",
"Public awareness and support for sustainable practices"
],
"KeyPerformanceIndicators": [
"Energy consumption reduction",
"Carbon emissions reduction",
"Percentage of buildings meeting standards",
"Cost savings from energy efficiency",
"Water usage reduction",
"Sustainable materials usage",
"Building occupancy rates",
"Compliance rate with new standards",
"Reduction in urban heat island effect",
"Improvement in indoor air quality"
],
"Impacts": [
"Reduction in greenhouse gas emissions from commercial buildings",
"Improvement in air quality due to energy-efficient practices",
"Creation of job opportunities in construction for underserved communities",
"Enhanced access to sustainable infrastructure in marginalized areas",
"Improved indoor air quality leading to better health outcomes",
"Increased community resilience against climate impacts",
"Inclusion of community input in building standards"
]
},
{
"ActionID": "c40_0012",
"ActionName": "New Building Standards",
"ActionType": [
"mitigation"
],
"AdaptationCategory": null,
"Hazard": null,
"Sector": [
"stationary_energy"
],
"Subsector": [
"commercial_and_institutional_buildings_and_facilities"
],
"PrimaryPurpose": [
"ghg_reduction"
],
"InterventionType": [
"regulations_and_laws"
],
"Description": "\"New Building Standards, Institutional buidlings\" set guidelines for environmentally responsible construction, ensuring that new structures adhere to energy-efficient practices, thereby reducing carbon emissions and promoting sustainable urban development.",
"BehavioralChangeTargeted": "The targeted behavioral change aimed at by the \"New Building Standards, Institutional buildings\" climate action is to encourage architects, builders, and developers to adopt energy-efficient construction practices. This shift is intended to lead to a broader acceptance and implementation of sustainable building methods, ultimately resulting in a significant reduction in carbon emissions associated with new institutional buildings. By mandating environmentally responsible construction through regulations and laws, the action seeks to foster a culture of sustainability within the construction industry and among stakeholders, promoting long-term commitment to energy efficiency and sustainable urban development.",
"CoBenefits": {
"air_quality": 1,
"water_quality": 0,
"habitat": 0,
"cost_of_living": 0,
"housing": -1,
"mobility": 0,
"stakeholder_engagement": 0
},
"EquityAndInclusionConsiderations": "The \"New Building Standards, Institutional buildings\" action promotes equity and inclusion in several ways:\n\n1. **Access to Healthy Environments**: By ensuring that new institutional buildings are constructed with energy-efficient practices, the action contributes to healthier living and working environments for all community members, particularly benefiting vulnerable populations who may be more susceptible to environmental hazards.\n\n2. **Job Creation and Economic Opportunities**: The implementation of these building standards can create job opportunities in construction and related fields, particularly for underserved communities. This can help to uplift local economies and provide pathways to stable employment.\n\n3. **Community Engagement**: The development of new building standards often involves community input, ensuring that the voices of underserved populations are heard and considered in the decision-making process, fostering a sense of ownership and inclusion.\n\n4. **Long-term Cost Savings**: Energy-efficient buildings can lead to lower utility costs, which is particularly beneficial for low-income families and communities. This financial relief can help reduce economic disparities and improve overall quality of life.\n\n5. **Resilience to Climate Impacts**: By promoting sustainable urban development, the action helps build resilience in communities that are often the most affected by climate change, ensuring that vulnerable populations are better equipped to handle environmental challenges.\n\nOverall, the action integrates equity and inclusion by addressing the needs of underserved communities, promoting economic opportunities, and fostering healthier environments.",
"GHGReductionPotential": {
"stationary_energy": "20-39",
"transportation": null,
"waste": null,
"ippu": null,
"afolu": null
},
"AdaptationEffectiveness": null,
"CostInvestmentNeeded": "low",
"TimelineForImplementation": "<5 years",
"Dependencies": [
"Compliance from construction companies with the new standards",
"Support from government agencies for enforcement and monitoring",
"Availability of training programs for builders and architects on energy-efficient practices",
"Public awareness and acceptance of sustainable building practices",
"Access to funding or incentives for implementing energy-efficient technologies"
],
"KeyPerformanceIndicators": [
"Energy consumption reduction",
"Carbon emissions reduction",
"Percentage of buildings meeting new standards",
"Cost savings from energy efficiency",
"Water usage reduction",
"Sustainable materials usage",
"Building occupancy rates",
"Compliance rate with building codes",
"Reduction in urban heat island effect",
"Feedback from building occupants on comfort and sustainability"
],
"Impacts": [
"Reduction in carbon emissions from new institutional buildings",
"Improvement in air quality due to energy-efficient practices",
"Creation of job opportunities in construction for underserved communities",
"Enhanced access to healthy environments for vulnerable populations",
"Long-term cost savings on utility bills for low-income families",
"Increased community engagement in building standards development",
"Improved resilience of communities to climate impacts"
]
},
{
"ActionID": "c40_0013",
"ActionName": "New Building Standards",
"ActionType": [
"mitigation"
],
"AdaptationCategory": null,
"Hazard": null,
"Sector": [
"stationary_energy"
],
"Subsector": [
"manufacturing_industries_and_construction"
],
"PrimaryPurpose": [
"ghg_reduction"
],
"InterventionType": [
"regulations_and_laws"
],
"Description": "\"New Building Standards, Industrial\" set guidelines for environmentally responsible construction, ensuring that new structures adhere to energy-efficient practices, thereby reducing carbon emissions and promoting sustainable urban development.",
"BehavioralChangeTargeted": "The targeted behavioral change encouraged by the \"New Building Standards, Industrial\" climate action is the adoption of energy-efficient construction practices among builders, architects, and developers. This intervention aims to shift the behavior of these stakeholders towards prioritizing sustainable design and construction methods that reduce carbon emissions, thereby fostering a culture of environmentally responsible building within the industry. As a result, this could lead to a broader activity shift towards sustainable urban development and a significant reduction in greenhouse gas emissions associated with new construction projects.",
"CoBenefits": {
"air_quality": 1,
"water_quality": 0,
"habitat": 0,
"cost_of_living": 0,
"housing": -1,
"mobility": 0,
"stakeholder_engagement": 0
},
"EquityAndInclusionConsiderations": "The \"New Building Standards, Industrial\" action promotes equity and inclusion by ensuring that all new structures, including those in vulnerable or underserved communities, adhere to energy-efficient practices. This helps to reduce energy costs for residents and businesses in these areas, making sustainable living more accessible. Additionally, by prioritizing environmentally responsible construction, the action supports healthier living conditions, which can disproportionately benefit underserved populations who may face higher exposure to environmental hazards. Furthermore, the implementation of these standards can create job opportunities in green construction, providing economic benefits to local communities that may have been historically marginalized. Overall, the action fosters a more equitable urban development landscape by integrating sustainability into the fabric of all new buildings, thereby uplifting vulnerable communities.",
"GHGReductionPotential": {
"stationary_energy": "20-39",
"transportation": null,
"waste": null,
"ippu": null,
"afolu": null
},
"AdaptationEffectiveness": null,
"CostInvestmentNeeded": "low",
"TimelineForImplementation": "<5 years",
"Dependencies": [
"Regulatory framework to enforce building standards",
"Availability of sustainable construction materials",
"Training and certification programs for builders and architects",
"Monitoring and compliance mechanisms to ensure adherence to standards",
"Public awareness and support for sustainable building practices"
],
"KeyPerformanceIndicators": [
"Reduction in carbon emissions (tons/year)",
"Percentage of new buildings meeting energy efficiency standards",
"Energy consumption per square foot of new buildings",
"Percentage of sustainable materials used in construction",
"Number of new buildings certified under green building standards",
"Reduction in energy costs for new buildings",
"Increase in renewable energy usage in new constructions",
"Compliance rate with building standards"
],
"Impacts": [
"Reduction in greenhouse gas emissions from new construction",
"Improvement in air quality",
"Promotion of energy-efficient practices in the construction industry",
"Creation of job opportunities in green construction",
"Enhanced equity and inclusion in urban development",
"Potential increase in energy cost savings for residents in underserved communities"
]
},
{
"ActionID": "c40_0014",
"ActionName": "Existing Building Standards",
"ActionType": [
"mitigation"
],
"AdaptationCategory": null,
"Hazard": null,
"Sector": [
"stationary_energy"
],
"Subsector": [
"all"
],
"PrimaryPurpose": [
"ghg_reduction"
],
"InterventionType": [
"regulations_and_laws",
"programs_and_initiatives"
],
"Description": "\"Existing Building Standards\" involve interventions to improve the environmental performance of current structures, aiming to boost energy efficiency, decrease emissions, and enhance overall sustainability within a city.",
"BehavioralChangeTargeted": "The targeted behavioral change that the \"Existing Building Standards\" climate action aims to achieve is an increase in the adoption of energy-efficient practices among building owners and occupants. This includes encouraging individuals and organizations to invest in energy-efficient upgrades, such as insulation, energy-efficient appliances, and renewable energy sources, as well as adhering to new regulations that mandate improved environmental performance in existing structures. By fostering a perception that energy efficiency is both beneficial and necessary, the intervention seeks to shift behaviors towards more sustainable building management and usage, ultimately leading to reduced greenhouse gas emissions and enhanced sustainability within the city.",
"CoBenefits": {
"air_quality": 1,
"water_quality": 0,
"habitat": 0,
"cost_of_living": 0,
"housing": -1,
"mobility": 0,
"stakeholder_engagement": 0
},
"EquityAndInclusionConsiderations": "The \"Existing Building Standards\" climate action promotes equity and inclusion by focusing on the following aspects:\n\n1. **Targeting Vulnerable Communities**: By improving the environmental performance of existing buildings, the action addresses the needs of underserved communities that often reside in older, less efficient structures. These communities typically face higher energy costs and poorer living conditions.\n\n2. **Energy Efficiency Benefits**: Enhancing energy efficiency in buildings can lead to lower utility bills, which directly benefits low-income households. This financial relief helps to alleviate economic burdens on vulnerable populations.\n\n3. **Health Improvements**: Upgrading building standards can lead to better indoor air quality and overall living conditions, which is particularly beneficial for marginalized groups who may be more susceptible to health issues related to poor housing conditions.\n\n4. **Job Creation and Training**: Implementing these standards can create job opportunities in the local community, particularly for individuals from underserved backgrounds. This can include training programs that equip residents with skills needed for green jobs.\n\n5. **Community Engagement**: The development and implementation of building standards often involve community input, ensuring that the voices of those in vulnerable communities are heard and considered in decision-making processes.\n\n6. **Resilience to Climate Impacts**: By improving the sustainability of existing buildings, the action helps vulnerable communities become more resilient to climate change impacts, such as extreme weather events, thereby promoting long-term equity.\n\nOverall, the \"Existing Building Standards\" initiative inherently considers equity and inclusion by addressing the specific needs and challenges faced by underserved communities, ultimately fostering a more sustainable and equitable urban environment.",
"GHGReductionPotential": {
"stationary_energy": "0-19",
"transportation": null,
"waste": null,
"ippu": null,
"afolu": null
},
"AdaptationEffectiveness": null,
"CostInvestmentNeeded": "low",
"TimelineForImplementation": "<5 years",
"Dependencies": [
"Availability of funding for retrofitting and upgrades",
"Access to skilled labor and contractors for implementation",
"Compliance with local building codes and regulations",
"Availability of technology and materials for energy efficiency improvements",
"Support from local government and stakeholders for policy changes",
"Public awareness and acceptance of building standards and sustainability practices"
],
"KeyPerformanceIndicators": [
"Energy consumption reduction",
"Greenhouse gas emissions reduction",
"Percentage of buildings meeting new standards",
"Cost savings from energy efficiency improvements",
"Increase in renewable energy usage",
"Occupant satisfaction and comfort levels",
"Reduction in water usage",
"Improvement in indoor air quality",
"Building retrofitting completion rate",
"Compliance rate with existing building standards"
],
"Impacts": [
"Improved energy efficiency in existing buildings",
"Reduction in greenhouse gas emissions",
"Enhanced indoor air quality",
"Lower utility bills for low-income households",
"Job creation and training opportunities",
"Increased resilience of vulnerable communities to climate impacts",
"Community engagement in decision-making processes"
]
},
{
"ActionID": "c40_0015",
"ActionName": "Existing Building Standards",
"ActionType": [
"mitigation"
],
"AdaptationCategory": null,
"Hazard": null,
"Sector": [
"stationary_energy"