Update app.py
Browse files
app.py
CHANGED
@@ -40,8 +40,8 @@ with st.expander("ℹ️ - About this app", expanded=False):
|
|
40 |
"""
|
41 |
Climate Policy Analysis Assistant (CPo_droid) is an open-source\
|
42 |
digital tool which aims to assist policy analysts and \
|
43 |
-
other users in extracting and filtering
|
44 |
-
information from public documents.
|
45 |
""")
|
46 |
st.write('**Definitions**')
|
47 |
|
@@ -50,29 +50,20 @@ with st.expander("ℹ️ - About this app", expanded=False):
|
|
50 |
for example, to reduce GHG emissions to a specific level \
|
51 |
(a GHG target) or increase energy efficiency or renewable \
|
52 |
energy to a specific level (a non-GHG target), typically by \
|
53 |
-
a certain date.
|
54 |
-
|
55 |
-
|
56 |
-
wide scale.
|
57 |
-
- **Netzero**: Identifies if its Netzero Target or not.
|
58 |
-
- 'NET-ZERO target_labels' = ['T_Netzero','T_Netzero_C']
|
59 |
-
- **GHG Target**: GHG targets refer to contributions framed as targeted \
|
60 |
outcomes in GHG terms.
|
61 |
-
- '
|
62 |
-
- 'NON GHG TARGET': ['T_Adaptation_Unc','T_Adaptation_C', 'T_Transport_O_Unc', 'T_Transport_O_C']
|
63 |
-
- **Conditionality**: An “unconditional contribution” is what countries \
|
64 |
-
could implement without any conditions and based on their own \
|
65 |
-
resources and capabilities. A “conditional contribution” is one \
|
66 |
-
that countries would undertake if international means of support \
|
67 |
-
are provided, or other conditions are met.
|
68 |
- **Action**: Actions are an intention to implement specific means of \
|
69 |
achieving GHG reductions, usually in forms of concrete projects.
|
70 |
-
- **Policies
|
71 |
-
such as policies, regulations or guidlines
|
72 |
-
|
73 |
to ‘improve efficiency’, ‘develop renewable energy’, etc. \
|
74 |
-
|
75 |
""")
|
|
|
76 |
c1, c2, c3 = st.columns([12,1,10])
|
77 |
with c1:
|
78 |
image = Image.open('docStore/img/flow.jpg')
|
|
|
40 |
"""
|
41 |
Climate Policy Analysis Assistant (CPo_droid) is an open-source\
|
42 |
digital tool which aims to assist policy analysts and \
|
43 |
+
other users in extracting and filtering \
|
44 |
+
information from public documents in context of Climate Change Commitments and Strategies.
|
45 |
""")
|
46 |
st.write('**Definitions**')
|
47 |
|
|
|
50 |
for example, to reduce GHG emissions to a specific level \
|
51 |
(a GHG target) or increase energy efficiency or renewable \
|
52 |
energy to a specific level (a non-GHG target), typically by \
|
53 |
+
a certain date. There are are 3 subclass of targets:
|
54 |
+
- **Netzero**: Identifies if its Netzero Target or not.
|
55 |
+
- **GHG Target**: GHG targets refer to contributions framed as targeted \
|
|
|
|
|
|
|
|
|
56 |
outcomes in GHG terms.
|
57 |
+
- 'NonGHG Target': Targets/contributions framed in NOT GHG terms like energy efficiency, sectoral-target like Distribution of 100K electric stoves etc \
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
- **Action**: Actions are an intention to implement specific means of \
|
59 |
achieving GHG reductions, usually in forms of concrete projects.
|
60 |
+
- **Policies**: Policies are domestic planning documents \
|
61 |
+
such as policies, regulations or guidlines.
|
62 |
+
- **Plans**: Plans are broader than specific policies or actions, such as a general intention \
|
63 |
to ‘improve efficiency’, ‘develop renewable energy’, etc. \
|
64 |
+
These terms come from the World Bank's NDC platform and WRI's publication.
|
65 |
""")
|
66 |
+
|
67 |
c1, c2, c3 = st.columns([12,1,10])
|
68 |
with c1:
|
69 |
image = Image.open('docStore/img/flow.jpg')
|