<% if research.author_image.present? %>
diff --git a/app/views/tpi/sectors/index.html.erb b/app/views/tpi/sectors/index.html.erb
index ebf106a3f..d10cda863 100644
--- a/app/views/tpi/sectors/index.html.erb
+++ b/app/views/tpi/sectors/index.html.erb
@@ -1,11 +1,6 @@
<% content_for :page_title, "Tool - Transition Pathway Initiative" %>
<% content_for :page_description, "The TPI tool is a corporate climate action benchmark which assesses how prepared companies are for the transition to a low-carbon economy." %>
-<%= react_component('MqBetaModal', {
- enabled: session[:enable_beta_mq_assessments],
- page: "company"
-}) %>
-
diff --git a/app/views/tpi/sectors/show.html.erb b/app/views/tpi/sectors/show.html.erb
index ca740b175..047635637 100644
--- a/app/views/tpi/sectors/show.html.erb
+++ b/app/views/tpi/sectors/show.html.erb
@@ -1,11 +1,6 @@
<% content_for :page_title, "#{@sector.name} - Transition Pathway Initiative" %>
<% content_for :page_description, "Description: Compare and assess how prepared the world’s top companies in the #{@sector.name} sector are for the transition to a low-carbon economy." %>
-<%= react_component('MqBetaModal', {
- enabled: session[:enable_beta_mq_assessments],
- page: "sector"
-}) %>
-
<%= react_component("DropdownSelector", {
@@ -19,22 +14,13 @@
<%= render 'tpi/shared/mq_beta_scores', has_data: true %>
-
@@ -42,16 +28,6 @@
<%= render 'tpi/shared/mq_beta_scores', has_data: true %>
-
@@ -65,32 +41,11 @@
<%= react_component('charts/mq-sector-pie', { dataUrl: levels_chart_data_tpi_sector_path(@sector.id) }) %>
+
Number and Detailed Companies Lists by Management Quality
<%= react_component("charts/bubble/CompaniesAccordion", { levels: @companies_by_levels, by_sector: false }) %>
-
- <% @companies_by_levels.each do |level, companies| -%>
-
-
-
Level <%= level.to_i === 5 ? "#{level} [BETA]" : level %>
-
<%= t("tpi.company.level_description_short.#{level.to_i}") %>
-
-
-
- <% companies.each do |company| %>
- -
- <%= link_to company[:name], tpi_company_path(company[:id]) %>
- <%= render 'tpi/companies/mq_level_trend', level: company[:level], status: company[:status] %>
-
- <% end %>
+ <%= react_component('charts/mq-sector-bar', { data: @companies_by_levels, sector: @sector.name }) %>
- <% unless companies.any? %>
- - No companies
- <% end %>
-
-
-
- <% end %>
-
<% if any_cp_assessment? %>
@@ -110,23 +65,4 @@
}) %>
<% end %>
-
- <% if @publications_and_articles.present? %>
-
-
-
- <% end %>
diff --git a/app/views/tpi/shared/_mq_beta_scores.html.erb b/app/views/tpi/shared/_mq_beta_scores.html.erb
index 37acc0d0a..452a4747f 100644
--- a/app/views/tpi/shared/_mq_beta_scores.html.erb
+++ b/app/views/tpi/shared/_mq_beta_scores.html.erb
@@ -1,21 +1,21 @@
<% if ENV['MQ_BETA_ENABLED'].to_s == 'true' %>
<% link_html = link_to(enable_beta_data_tpi_mq_assessments_path,
class: class_names('button', 'is-primary', 'mq-beta-scores__beta-button', 'active': session[:enable_beta_mq_assessments], 'disabled': !has_data),
- style: "min-width: 0;") { "BETA (V5.0)" } %>
+ style: "min-width: 0;") { "Current V5.0" } %>
- MQ Methodology
+
<%= link_to disable_beta_data_tpi_mq_assessments_path,
class: class_names('button', 'is-primary', 'no-margin', 'weight-normal': session[:enable_beta_mq_assessments], 'active': !session[:enable_beta_mq_assessments]),
style: "min-width: 0;" do %>
- Current (V4.0)
+ V4.0
<% end %>
<% if has_data %>
<%= link_html %>
<% else %>
<%= react_component("InfoTooltip", {
trigger: link_html,
- content: 'It is not currently possible to show Beta (V5.0) scores for this company. Scores for the current methodology (V4.0) are shown in their place.',
+ content: 'It is not currently possible to show V5.0 scores for this company. Scores for the V4.0 methodology are shown in their place.',
html: true,
}) %>
<% end %>
diff --git a/config/environments/development.rb b/config/environments/development.rb
index 444e6b0a1..fff936694 100644
--- a/config/environments/development.rb
+++ b/config/environments/development.rb
@@ -33,10 +33,8 @@
# Store uploaded files on the local file system (see config/storage.yml for options)
config.active_storage.service = :local
- # Don't care if the mailer can't send.
config.action_mailer.raise_delivery_errors = false
-
- config.action_mailer.perform_caching = false
+ config.action_mailer.perform_deliveries = false
# Print deprecation notices to the Rails logger.
config.active_support.deprecation = :log
diff --git a/config/environments/production.rb b/config/environments/production.rb
index 99067f050..db8701407 100644
--- a/config/environments/production.rb
+++ b/config/environments/production.rb
@@ -62,11 +62,9 @@
# config.active_job.queue_adapter = :resque
# config.active_job.queue_name_prefix = "laws_and_pathways_production"
- config.action_mailer.perform_caching = false
-
- # Ignore bad email addresses and do not raise email delivery errors.
- # Set this to true and configure the email server for immediate delivery to raise delivery errors.
- # config.action_mailer.raise_delivery_errors = false
+ config.action_mailer.raise_delivery_errors = true
+ config.action_mailer.delivery_method = :mailjet
+ config.action_mailer.perform_deliveries = true
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
# the I18n.default_locale when a translation cannot be found).
diff --git a/config/environments/staging.rb b/config/environments/staging.rb
index 3a1b12b98..273b0b6f7 100644
--- a/config/environments/staging.rb
+++ b/config/environments/staging.rb
@@ -65,11 +65,9 @@
# config.active_job.queue_adapter = :resque
# config.active_job.queue_name_prefix = "laws_and_pathways_#{Rails.env}"
- config.action_mailer.perform_caching = false
-
- # Ignore bad email addresses and do not raise email delivery errors.
- # Set this to true and configure the email server for immediate delivery to raise delivery errors.
- # config.action_mailer.raise_delivery_errors = false
+ config.action_mailer.raise_delivery_errors = true
+ config.action_mailer.delivery_method = :mailjet
+ config.action_mailer.perform_deliveries = true
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
# the I18n.default_locale when a translation cannot be found).
diff --git a/config/initializers/mailjet.rb b/config/initializers/mailjet.rb
new file mode 100644
index 000000000..01c67dbd0
--- /dev/null
+++ b/config/initializers/mailjet.rb
@@ -0,0 +1,6 @@
+# kindly generated by appropriated Rails generator
+Mailjet.configure do |config|
+ config.api_key = ENV['SMTP_API_KEY']
+ config.secret_key = ENV['SMTP_API_SECRET']
+ config.default_from = ENV.fetch('SMTP_DEFAULT_FROM', 'from@example.com')
+end
diff --git a/config/routes.rb b/config/routes.rb
index 856d9837b..c955ccb7f 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -23,6 +23,8 @@
get :levels_chart_data
get :cp_performance_chart_data
get :user_download_all
+ get :user_download_methodology
+ post :send_download_file_info_email
end
member do
get :levels_chart_data
@@ -31,6 +33,9 @@
end
end
+ get '/corporates', to: 'sectors#index'
+ get '/corporates/:id', to: 'sectors#show'
+
resources :companies, only: [:show] do
member do
get :emissions_chart_data
diff --git a/db/migrate/20241115133904_add_assessment_date_flag_to_cp_assessments.rb b/db/migrate/20241115133904_add_assessment_date_flag_to_cp_assessments.rb
new file mode 100644
index 000000000..b2abe96c8
--- /dev/null
+++ b/db/migrate/20241115133904_add_assessment_date_flag_to_cp_assessments.rb
@@ -0,0 +1,5 @@
+class AddAssessmentDateFlagToCPAssessments < ActiveRecord::Migration[6.1]
+ def change
+ add_column :cp_assessments, :assessment_date_flag, :string
+ end
+end
diff --git a/db/seeds/tpi/company-cp-assessments.csv b/db/seeds/tpi/company-cp-assessments.csv
index 9f32e335d..5e83096b7 100644
--- a/db/seeds/tpi/company-cp-assessments.csv
+++ b/db/seeds/tpi/company-cp-assessments.csv
@@ -1,224 +1,226 @@
-"Id","Company id","Company","Assessment date","Publication date","Last reported year","2013","2014","2015","2016","2017","2018","2019","2020","2021","2022","2023","2024","2025","2026","2027","2028","2029","2030","2031","2032","2033","2034","2035","2036","2037","2038","2039","2040","2041","2042","2043","2044","2045","2046","2047","2048","2049","2050","Assumptions","CP alignment 2050","CP alignment 2025","CP alignment 2035","Region","CP regional alignment 2025","CP regional alignment 2035","CP regional alignment 2050",CP alignment 2027,CP regional alignment 2027
-,"1267","Air China","23/10/2020","2020-12","2019",,"840.0","844.0","807.0","814.0","814.0","863.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology.","Not aligned","2 Degrees (Shift-Improve)","International Pledges","Europe","2 Degrees (Shift-Improve)","International Pledges","International Pledges",,
-,"1269","ANA Group","23/10/2020","2020-12","2019",,"897.0","908.0","870.0","844.0","842.0","869.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. The company has set targets to reduce its emissions intensity, but they could not be included in this assessment as it was not possible to make them consistent with TPI’s methodology.","Not aligned",,,,,,,2 Degrees (Shift-Improve),2 Degrees (Shift-Improve)
-,"1077","Mitsubishi","23/10/2020","2020-12","2018","151.0","144.0","139.0","149.0","146.0","139.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Mitsubishi has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not aligned",,,,,,,,
-,"1080","Nissan","23/10/2020","2020-12","2018","144.0","141.0","140.0","141.0","140.0","139.0","135.0","132.0","129.0","125.0","122.0","118.0","114.0","110.0","107.0","103.0","99.0","96.0","92.0","88.0","84.0","81.0","77.0","73.0","69.0","66.0","62.0","58.0","54.0","51.0","47.0","43.0","40.0","36.0","32.0","28.0","25.0","21.0","TPI has not made any further assumptions in order to project this company’s Carbon Performance.","2 Degrees (Shift-Improve)",,,,,,,,
-,"1175","SAIC motor","23/10/2020","2020-12","2019","170.0","167.0","163.0","157.0","150.0","148.0","137.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"SAIC Motors has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not aligned",,,,,,,,
-,"1087","Subaru","23/10/2020","2020-12","2018","159.0","160.0","157.0","158.0","156.0","158.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Subaru has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not aligned",,,,,,,,
-,"1318","COSCO Shipping Holdings","23/10/2020","2020-12","2019",,,,,"8.12","8.05","7.66",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","International Pledges",,,,,,,,
-,"1090","Suzuki","23/10/2020","2020-12","2019","115.0","112.0","110.0","108.0","107.0","106.0","104.0","101.0","99.0","96.0","94.0","91.0","89.0","86.0","84.0","81.0","79.0","76.0","73.0","70.0","67.0","64.0","60.0","57.0","54.0","51.0","48.0","45.0","41.0","38.0","35.0","32.0","29.0","25.0","22.0","19.0","16.0","13.0","TPI has not made any further assumptions in order to project this company’s Carbon Performance.","2 Degrees (Shift-Improve)",,,,,,,,
-,"1270","China Southern","23/10/2020","2020-12","2019",,"907.0","901.0","892.0","874.0","837.0","826.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology.","Not aligned",,,,,,,,
-,"1275","Japan Airlines","23/10/2020","2020-12","2019",,"1074.0","1038.0","1037.0","1005.0","983.0","995.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has set targets to reduce its emissions intensity, but they could not be included in this assessment as it was not possible to make them consistent with TPI’s methodology.","Not aligned",,,,,,,,
-,"1116","Qantas","23/10/2020","2020-12","2019",,"970.0","960.0","960.0","943.0","918.0","962.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has set targets to reduce its emissions intensity, but they could not be included in this assessment as it was not possible to make them consistent with TPI’s methodology.","Not aligned",,,,,,,,
-,"1002","Brilliance","23/10/2020","2020-12","2019","174.0","171.0","168.0","161.0","152.0","143.0","139.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Brilliance has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not aligned",,,,,,,,
-,"1097","Toyota","23/10/2020","2020-12","2018","142.0","136.0","134.0","132.0","126.0","122.0","119.0","117.0","114.0","111.0","108.0","105.0","102.0","101.0","100.0","98.0","97.0","95.0","91.0","87.0","83.0","79.0","75.0","71.0","67.0","63.0","59.0","55.0","51.0","47.0","43.0","39.0","35.0","31.0","27.0","23.0","19.0","15.0","TPI has not made any further assumptions in order to project this company's Carbon Performance.","2 Degrees (Shift-Improve)",,,,,,,,
-,"1540","BYD","23/10/2020","2020-12","2019","167.0","156.0","175.0","73.0","53.0","52.0","50.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Paris Pledges",,,,,,,,
-,"1326","COSCO Shipping Energy","23/10/2020","2020-12","2019",,,,,"3.72","3.27","3.71",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","International Pledges",,,,,,,,
-,"1125","AP Moller – Maersk","23/10/2020","2020-12","2019",,,,"4.45","4.38","4.3","4.1","3.98","3.87","3.75","3.63","3.52","3.4","3.28","3.17","3.05","2.93","2.82","2.68","2.54","2.4","2.25","2.11","1.97","1.83","1.69","1.55","1.41","1.27","1.13","0.99","0.85","0.7","0.56","0.42","0.28","0.14","0.0","TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Below 2 Degrees",,,,,,,,
-,"1009","Fiat Chrysler","23/10/2020","2020-12","2018","174.0","182.0","170.0","176.0","173.0","178.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Fiat Chrysler has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not aligned",,,,,,,,
-,"1052","Honda","23/10/2020","2020-12","2019","149.0","144.0","141.0","140.0","137.0","134.0","130.0","128.0","127.0","123.0","120.0","116.0","112.0","109.0","105.0","102.0","98.0","94.0","91.0","87.0","83.0","80.0","76.0","73.0","69.0","65.0","62.0","58.0","54.0","51.0","47.0","44.0","40.0","36.0","33.0","29.0","25.0","22.0","TPI has not made any further assumptions in order to project this company’s carbon performance.","2 Degrees (Shift-Improve)",,,,,,,,
-,"1029","Geely","23/10/2020","2020-12","2018","155.0","152.0","147.0","125.0","124.0","134.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Geely has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not aligned",,,,,,,,
-,"1006","Ferrari","23/10/2020","2020-12",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Ferrari has not disclosed sufficient current emissions data nor any quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","No Disclosure",,,,,,,,
-,"1314","MOL","23/10/2020","2020-12","2019",,"6.2","6.01","6.07","6.13","6.05","5.08","5.02","4.96","4.9","4.84","4.78","4.72","4.66","4.6","4.54","4.48","4.42","4.26","4.11","3.95","3.79","3.64","3.48","3.32","3.17","3.01","2.85","2.7","2.54","2.38","2.23","2.07","1.91","1.76","1.6","1.44","1.29","TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Below 2 Degrees",,,,,,,,
-,"1538","China Merchants Energy Shipping","23/10/2020","2020-12",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate current or future Carbon Performance.","No Disclosure",,,,,,,,
-,"1537","Iino Kaiun Kaisha","23/10/2020","2020-12",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions to allow TPI to verify the carbon intensities, or any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.","No Disclosure",,,,,,,,
-,"1539","NS United Kaiun Kaisha","23/10/2020","2020-12",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate current or future Carbon Performance.","No Disclosure",,,,,,,,
-,"1319","K Line","23/10/2020","2020-12","2019",,"6.03","5.77","5.71","5.98","5.84","5.31","5.25","5.18","5.11","5.04","4.97","4.91","4.84","4.77","4.7","4.63","4.57","4.48","4.38","4.29","4.2","4.11","4.02","3.93","3.84","3.74","3.65","3.56","3.47","3.38","3.29","3.2","3.11","3.01","2.92","2.83","2.74","To calculate this company’s baseline emissions intensity, TPI has taken a weighted average of emission intensities of the company's various ship types in 2008.","International Pledges",,,,,,,,
-,"1315","NYK Line","23/10/2020","2020-12","2019",,,"6.3","6.6","6.2","5.85","5.6","5.49","5.38","5.28","5.17","5.06","4.95","4.84","4.73","4.63","4.52","4.41","4.35","4.28","4.22","4.16","4.1","4.03","3.97","3.91","3.84","3.78","3.72","3.65","3.59","3.53","3.47","3.4","3.34","3.28","3.21","3.15","TPI has not made any further assumptions in order to project this company’s Carbon Performance.","International Pledges",,,,,,,,
-,"1076","Mazda","23/10/2020","2020-12","2018","143.0","138.0","137.0","137.0","142.0","142.0","137.0","132.0","127.0","122.0","117.0","112.0","107.0","102.0","97.0","92.0","87.0","82.0","79.0","76.0","72.0","69.0","66.0","62.0","59.0","56.0","53.0","49.0","46.0","43.0","39.0","36.0","33.0","30.0","26.0","23.0","20.0","16.0","TPI has assumed that both tank-to-wheel and well-to-tank emissions fall by equal proportions in meeting the company’s well-to-wheel target.","2 Degrees (Shift-Improve)",,,,,,,,
-,"1358","Rio Tinto (Diversified mining)","12/08/2020","2020-10","2019",,,,"73.08","73.59","72.84","77.66","77.54","77.42","77.3","77.18","77.06","76.93","76.81","76.69","76.57","76.45","76.33","76.17","76.02","75.87","75.71","75.56","75.4","75.25","75.09","74.94","74.78","74.63","74.47","74.32","74.17","74.01","73.86","73.7","73.55","73.39","73.24","The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company has set targets to reduce its emissions intenisty. The company's target covers a subset of Scope 1, 2 and 3 (use and/or processing of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.","Not Aligned",,,,,,,,
-,"1147","Orsted","12/08/2020","2020-10","2018",,,"0.38","0.368","0.236","0.203","0.092","0.076","0.061","0.046","0.031","0.015","0.0",,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Below 2 Degrees",,,,,,,,
-,"1239","Woodside Petroleum","12/08/2020","2020-10","2019",,"65.43","65.61","64.59","65.21","64.68","64.55","64.33","64.12","63.9","63.69","63.48","63.26","63.05","62.84","62.62","62.41","62.19","61.98","61.77","61.55","61.34","61.13","60.91","60.7","60.49","60.27","60.06","59.84","59.63","59.42","59.2","58.99","58.78","58.56","58.35","58.14","57.921581552074","The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology.","Not Aligned",,,,,,,,
-,"1023","China Petroleum & Chemical","12/08/2020","2020-10","2019",,,,,"81.97","82.23","81.5","80.83","80.16","79.5","80.16",,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Not Aligned",,,,,,,,
-,"1194","Equinor","12/08/2020","2020-10","2019",,"69.7","69.82","69.74","69.25","69.34","69.07","69.03","68.98","68.94","68.89","68.85","68.81","68.39","67.97","67.55","67.13","66.72","65.71","64.71","63.7","62.7","61.69","60.69","59.68","58.68","57.67","56.67","55.67","54.66","53.66","52.65","51.65","50.64","49.64","48.63","47.63","46.6244715364657","The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company's target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.","Paris Pledges",,,,,,,,
-,"1311","Chugoku","12/08/2020","2020-10","2019",,,,,,"0.576","0.559","0.542","0.525","0.507","0.49","0.473","0.456","0.439","0.422","0.404","0.387","0.37",,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions to allow TPI to verify the carbon intensities, or any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.","Not Aligned",,,,,,,,
-,"1027","Chubu Electric Power","12/08/2020","2020-10","2018","0.507","0.469","0.466","0.489","0.485","0.473","0.464","0.456","0.447","0.439","0.43","0.422","0.413","0.404","0.396","0.387","0.379","0.37",,,,,,,,,,,,,,,,,,,,,"The company discloses a target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Not Aligned",,,,,,,,
-,"1312","China Resources Power","12/08/2020","2020-10","2019",,,,,"0.78","0.755","0.728",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.","Not Aligned",,,,,,,,
-,"1224","Santos","12/08/2020","2020-10","2018",,"73.7","71.08","73.14","73.57","72.26","71.87","71.48","71.09","70.7","70.31","69.92","69.53","69.14","68.75","68.36","67.97","67.58","67.19","66.8","66.41","66.02","65.63","65.24","64.85","64.46","64.07","63.68","63.29","62.9","62.51","62.12","61.73","61.34","60.95","60.56","60.17","59.7770490860771","The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.","Not Aligned",,,,,,,,
-,"1307","Kyushu Elec Power","12/08/2020","2020-10",,"0.598","0.528","0.483","0.463","0.347",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions to allow TPI to verify the carbon intensities, or any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.","Not Aligned",,,,,,,,
-,"1503","EDP","12/08/2020","2020-10","2019","0.282","0.276","0.34","0.272","0.333","0.257","0.217","0.203","0.189","0.175","0.161","0.147","0.133","0.119","0.105","0.091","0.077","0.063","0.06","0.057","0.053","0.05","0.047","0.044","0.041","0.038","0.035","0.031","0.028","0.025","0.022","0.019","0.016","0.013","0.009","0.006","0.003","0.0","TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Below 2 Degrees",,,,,,,,
-,"1313","PGE","12/08/2020","2020-10","2019","0.98","0.98","0.96","0.95","0.93","0.88","0.958","0.85","0.836","0.822","0.808","0.794","0.78",,,,,,,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Not Aligned",,,,,,,,
-,"1146","Origin Energy","12/08/2020","2020-10","2018","0.77","0.77","0.81","0.79","0.84","0.87","0.833","0.796","0.76","0.723","0.686","0.649","0.612","0.575","0.539","0.502","0.465","0.428","0.397","0.366",,,,,,,,,,,,,,,,,,,"The company has set targets to reduce its absolute emissions. To calculate this company’s targeted emissions intensity, TPI has assumed that: - The company’s regional electricity generation grows according to the regional electricity generation growth rate projected in the IEA’s Energy Technology Perspectives model ‘Reference Technology’ scenario.","Not Aligned",,,,,,,,
-,"1031","CNOOC","12/08/2020","2020-10","2019",,,,"74.58","74.84","74.26","74.78",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology.","Not Aligned",,,,,,,,
-,"1154","Petrochina","12/08/2020","2020-10","2019",,,,,,,"73.38",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate current or future Carbon Performance.","Not Aligned",,,,,,,,
-,"1145","OMV","12/08/2020","2020-10","2019",,,,"63.05","62.94","62.34","61.68","61.44","61.2","60.96","60.72","60.48","60.24","60.16","60.08","60.01","59.93","59.85","59.77","59.69","59.61","59.53","59.45","59.37","59.29","59.21","59.13","59.05","58.97","58.89","58.81","58.73","58.65","58.57","58.49","58.41","58.33","58.2482827474976","The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.","Not Aligned",,,,,,,,
-,"1108","Eneos (Oil & Gas)","12/08/2020","2020-10","2018",,,,"81.49","81.59","82.15","82.09","82.03","81.97","81.9","81.56","81.21","80.87","80.52","80.17","79.83","79.48","79.14","78.63","78.13","77.63","77.12","76.62","76.11","75.61","75.11","74.6","74.1",,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company has set targets to reduce its absolute emissions. To calculate this company’s targeted emissions intensity, TPI has assumed that: The company’s externally sold energy products grow according to the regional or global primary energy supply growth rate projected in the IEA’s Energy Technology Perspectives model ‘Reference Technology’ scenario. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.","Not Aligned",,,,,,,,
-,"1518","INPEX","12/08/2020","2020-10","2019",,,,,,"73.61","74.21",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology.","Not Aligned",,,,,,,,
-,"1516","Galp Energia","12/08/2020","2020-10","2019",,,,,"67.08","66.45","66.5","66.44","66.37",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.","Not Aligned",,,,,,,,
-,"1057","Ecopetrol","12/08/2020","2020-10","2019",,"75.36","75.68","76.85","78.24","78.46","77.93",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company has set targets to reduce its absolute emissions. To calculate this company’s targeted emissions intensity, TPI has assumed that: The company’s externally sold energy products grow according to the regional or global primary energy supply growth rate projected in the IEA’s Energy Technology Perspectives model ‘Reference Technology’ scenario. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.","Not Aligned",,,,,,,,
-,"1065","Eni","12/08/2020","2020-10","2019",,"66.02","65.59","65.36","65.37","65.47","65.15","64.28","63.42","62.56","61.69","60.83","59.96","59.1","58.24","57.37","56.51","55.65","54.34","53.03","51.72","50.41","49.1","47.79","46.48","45.17","43.86","42.55","41.24","39.94","38.63","37.32","36.01","34.7","33.39","32.08","30.77","29.4605376210079","The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.","Paris Pledges",,,,,,,,
-,"1514","South32 (Diversified mining)","12/08/2020","2020-10","2018",,,,"98.89","95.03","94.0","93.67","93.34","93.01","92.67","92.34","92.01","91.68","91.35","91.02","90.69","90.36","90.02","89.69","89.36","89.03","88.7","88.37","88.04","87.71","87.37","87.04","86.71","86.38","86.05","85.72","85.39","85.06","84.72","84.39","84.06","83.73","83.4","The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company has set targets to reduce its absolute emissions. To calculate the company's targeted emissions intensity, TPI has assumed that: its externally sold energy, Aluminium and steel products grow in-line with the rate projected in the IEA's Energy Technology Perspectives model and other commodities grow in-line with GDP used by the IEA in the ETP. The company's target covers a subset of Scope 1, 2 and 3 (use and/or processing of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.","Not Aligned",,,,,,,,
-,"1522","Fortescue","12/08/2020","2020-10","2018",,,,"115.57","114.15","119.17","119.15","119.13","119.1","119.08","119.05","119.03","119.0","118.98","118.96","118.93","118.91","118.88","118.81","118.74","118.68","118.61","118.54","118.47","118.4","118.33","118.26","118.19",,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company has set targets to reduce its absolute emissions. To calculate the company's targeted emissions intensity, TPI has assumed that: its externally sold energy, Aluminium and steel products grow in-line with the rate projected in the IEA's Energy Technology Perspectives model and other commodities grow in-line with GDP used by the IEA in the ETP. The company's target covers a subset of Scope 1, 2 and 3 (use and/or processing of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.","Not Aligned",,,,,,,,
-,"1301","TEPCO","12/08/2020","2020-10","2018",,,"0.437","0.444","0.428","0.43","0.424","0.417","0.41","0.404","0.397","0.39","0.383","0.377","0.37","0.363","0.357","0.35",,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Not Aligned",,,,,,,,
-,"1304","Tohoku Elec Power","12/08/2020","2020-10","2019",,,,"0.497","0.499","0.496","0.484","0.471","0.459","0.446","0.434","0.422","0.409","0.397","0.385","0.372","0.36","0.347",,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Not Aligned",,,,,,,,
-,"1302","Terna","12/08/2020","2020-10",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company’s activities lie outside the scope of TPI’s Carbon Performance assessment of this sector, hence the company is not assessed.","Not assessed",,,,,,,,
-,"1300","Kansai Elec Power","12/08/2020","2020-10","2018",,,,"0.347","0.303","0.254","0.255","0.257","0.258","0.259","0.261","0.262","0.263","0.265","0.266","0.267","0.269","0.27",,,,,,,,,,,,,,,,,,,,,"The company has not disclosed data on current emissions nor quantitative emissions reduction targets in a way which TPI can use to estimate current or future Carbon Performance.","Paris Pledges",,,,,,,,
-,"1310","Electric Power Development","12/08/2020","2020-10","2017",,,"0.666","0.667","0.672","0.678","0.656","0.635","0.613","0.591","0.569","0.548","0.526","0.504","0.482","0.461","0.439","0.417",,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Not Aligned",,,,,,,,
-,"1063","Enel","12/08/2020","2020-10","2019","0.403","0.407","0.42","0.406","0.421","0.377","0.303","0.275","0.248","0.22","0.208","0.196","0.184","0.173","0.161","0.149","0.137","0.125","0.119","0.113","0.106","0.1","0.094","0.088","0.081","0.075","0.069","0.063","0.056","0.05","0.044","0.038","0.031","0.025","0.019","0.013","0.006",,"The company discloses an emissions intensity using an activity measure and/or emissions figure that is inconsistent with TPI's methodology for this sector. The carbon intensity has been recalculated according to TPI methodology.","Below 2 Degrees",,,,,,,,
-,"1294","AGL Energy","12/08/2020","2020-10","2018","0.964","0.958","0.95","0.98","0.97","0.95",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Not Aligned",,,,,,,,
-,"1289","Nippon Light Metal","20/12/2019","2020-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company’s activities don't fit the scope of TPI’s Carbon Performance assessment of this sector, hence the company is not assessed.","Not Assessed",,,,,,,,
-,"1202","Taiheiyo Cement","20/12/2019","2020-02","2018","0.686","0.692","0.692","0.683","0.679","0.671","0.664","0.657","0.65","0.643","0.636","0.629","0.622",,,,,,,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this companyís Carbon Performance.","Not Aligned",,,,,,,,
-,"1183","Nippon Paper Industries","20/12/2019","2020-02","2018",,,,"1.191135734","1.110721179","1.177103894","1.142872654","1.108641415",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has set targets to reduce its absolute emissions. To calculate this companyís targeted emissions intensity, TPI has assumed that: The companyís pulp, paper and paperboard production grows according to the global growth rate projected in the IEAís Energy Technology Perspectives model ëReference Technologyí scenario.","Not Aligned",,,,,,,,
-,"1024","China Resources Cement Holdings","20/12/2019","2020-02","2018",,,,"0.8615","0.8574","0.8569",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this companyís Carbon Performance.","Not Aligned",,,,,,,,
-,"1265","Anhui Conch Cement","20/12/2019","2020-02","2018",,,,,"0.855","0.844",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this companyís Carbon Performance.","Not Aligned",,,,,,,,
-,"1126","Daio Paper","20/12/2019","2020-02","2018","1.054054054","1.06","0.99","0.94","0.87","0.83","0.825833333","0.821666667","0.8175","0.813333333","0.809166667","0.805","0.800833333","0.796666667","0.7925","0.788333333","0.784166667","0.78",,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this companyís Carbon Performance.","Not Aligned",,,,,,,,
-,"1144","Hokuetsu","20/12/2019","2020-02","2018","0.511147228","0.476794358","0.473157176","0.488092045","0.513560109","0.479576741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Hokuetsu has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Paris Pledges",,,,,,,,
-,"1187","Oji Holdings","20/12/2019","2020-02","2018","0.523","0.517","0.493","0.485","0.481","0.476","0.4735","0.471",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this companyís Carbon Performance.","Paris Pledges",,,,,,,,
-,"1022","China National Building Materials","20/12/2019","2020-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"China National Building Materials has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","No Disclosure",,,,,,,,
-,"1115","Boral","20/12/2019","2020-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate current or future Carbon Performance.","No Disclosure",,,,,,,,
-,"1040","Adelaide Brighton","20/12/2019","2020-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adelaide Brighton has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","No Disclosure",,,,,,,,
-,"1134","Nisshin Steel","20/12/2019","2020-02","2018","2.4","2.37","2.36","2.35","2.43","2.41",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this companyís Carbon Performance.","Not Aligned",,,,,,,,
-,"1286","Alumina","20/12/2019","2020-02","2018","21.27","20.7","19.9","19.41","17.06","17.22",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this companyís Carbon Performance.","Not Aligned",,,,,,,,
-,"1092","Bluescope Steel","20/12/2019","2020-02","2018","2.1","2.04","1.82","1.68","1.66","1.64","1.625896667","1.611793333","1.59769","1.583586667","1.569483333","1.55538","1.541276667","1.527173333","1.51307","1.498966667","1.484863333","1.47076",,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this companyís Carbon Performance.","Paris Pledges",,,,,,,,
-,"1497","Mitsui & Co","20/12/2019","2020-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company’s activities don't fit the scope of TPI’s Carbon Performance assessment of this sector, hence the company is not assessed.","Not Assessed",,,,,,,,
-,"1106","JFE Holdings","20/12/2019","2020-02","2018","2.073247297","2.058368495","2.077850877","2.028083896","2.055867885","2.093120487",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"JFE Holdings has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1288","China Zhongwang","20/12/2019","2020-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company’s activities don't fit the scope of TPI’s Carbon Performance assessment of this sector, hence the company is not assessed.","Not Assessed",,,,,,,,
-,"1290","Norsk Hydro","20/12/2019","2020-02","2018","3.306230218","3.446921084","3.36947713","3.325620713","3.307644373","3.321617094","3.232887954","3.144158813","3.055429673","2.966700533","2.877971392","2.789242252","2.700513112","2.588547633","2.476582155","2.364616676","2.252651198","2.140685719",,,,,,,,,,,,,,,,,,,,,"The company has set targets to reduce its absolute emissions. To calculate this companyís targeted emissions intensity, TPI has assumed that: The companyís aluminium production grows according to the global growth rate projected in the IEAís Energy Technology Perspectives model ëReference Technologyí scenario. Norsk Hydro has a net zero emissions target for 2020. TPI does not consider this target, as it includes avoided emissions.","Below 2 Degrees",,,,,,,,
-,"1287","Chalco","20/12/2019","2020-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.","No Disclosure",,,,,,,,
-,"1189","South32 (Aluminium)","20/12/2019","2020-02","2018",,,,,,"16.18548885","16.05201921","15.91854956","15.78507992","15.65161028","15.51814064","15.38467099","15.25120135","15.11773171","14.98426207","14.85079242","14.71732278","14.58385314",,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPIís methodology for this sector. The carbon intensity has been recalculated according to TPI methodology.","Not Aligned",,,,,,,,
-,"1170","Rio Tinto (Aluminium)","20/12/2019","2020-02","2018",,,,,,"5.235415237",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this companyís Carbon Performance. The company discloses emissions targets, but these refer to the company as a whole and not to aluminium activities specifically.","Not Aligned",,,,,,,,
-,"1112","Kobe Steel","20/12/2019","2020-02","2018","2.328947368","2.36","2.346666667","2.361111111","2.32","2.315484805",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Kobe has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1230","Voestalpine","20/12/2019","2020-02","2018",,,,,"1.867321867","1.957940537","1.952181888","1.946423239","1.940664591","1.934905942","1.929147293","1.923388645","1.917629996","1.911871348","1.906112699","1.90035405","1.894595402","1.888836753",,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPIís methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this companyís Carbon Performance.","Not Aligned",,,,,,,,
-,"1197","Shandong Chenming","20/12/2019","2020-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate current or future Carbon Performance.","No Disclosure",,,,,,,,
-,"1209","Tenaris","20/12/2019","2020-02","2018","0.9","0.87","0.91","0.85","0.82","0.81",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Tenaris has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Below 2 Degrees",,,,,,,,
-,"1007","Nippon Steel","20/12/2019","2020-02","2018","2.24","2.0","2.02","1.99","2.01","2.02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Nippon Steel & Sumitomo Metal has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1198","Sumitomo Osaka Cement","20/12/2019","2020-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate current or future Carbon Performance.","No Disclosure",,,,,,,,
-,"1168","Lee & Man Paper Manufacturing","20/12/2019","2020-02","2018",,,,,,"0.763358779",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this companyís Carbon Performance.","Not Aligned",,,,,,,,
-,"1178","Nine Dragons Paper Industries","20/12/2019","2020-02","2018",,,,,"0.9722","0.9339",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Nine Dragons Paper Industries has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1292","UACJ","20/12/2019","2020-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company’s activities don't fit the scope of TPI’s Carbon Performance assessment of this sector, hence the company is not assessed.","Not Assessed",,,,,,,,
-,"1052","Honda","07/11/2019","2019-12","2018","149.3912","143.5896","140.6888","139.9636","137.2441","134.3433","130.62665","126.91",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Honda has set targets to reduce its emissions intensity. TPI has not made any further assumptions in order to project this company’s carbon performance.","Not Aligned",,,,,,,,
-,"1318","COSCO Shipping Holdings","07/11/2019","2019-12","2018",,,,,"8.1","8.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"TPI's Carbon Performance assessment is based on emissions data disclosed by COSCO Shipping Lines Co Ltd, a 100% subsidiary of COSCO Shipping Holdings. The assessment excludes Orient Overseas International Limited, which was acquired by COSCO Shipping Holdings in July 2018. COSCO Shipping Lines discloses an emissions intensity using an activity measure and emissions figure that is consistent with TPI’s methodology for this sector. COSCO Shipping Lines does not disclose sufficient data on quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.","International Pledges",,,,,,,,
-,"1125","AP Moller – Maersk","07/11/2019","2019-12","2018",,,,"4.5","4.4","4.3","4.2","4.1","4.0","3.8","3.7","3.6","3.5","3.4","3.3","3.1","3.0","2.9",,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI assumes that carbon intensity reported in the company's CDP Climate Change Response takes precedence over the fuel efficiency data reported in the company's Annual Report.","Below 2 Degrees",,,,,,,,
-,"1314","MOL","07/11/2019","2019-12","2018",,"6.2","6.0","6.1","6.1","6.0","5.9","5.8","5.7","5.6","5.5","5.4","5.2","5.1","5.0","4.9","4.8","4.7",,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and emissions figure that is consistent with TPI’s methodology for this sector. Based on the information disclosed, it is assumed that the company's reported intensity for 2018 excludes emissions and activity data for vessels chartered out to the ONE joint venture.","Below 2 Degrees",,,,,,,,
-,"1315","NYK Line","07/11/2019","2019-12","2017",,,"6.3","6.6","6.2","5.9","5.7","5.6","5.5","5.4","5.2","5.1","5.0","4.9","4.8","4.6","4.5","4.4",,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and emissions figure that is consistent with TPI’s methodology for this sector. Based on the information disclosed, it is assumed that the company's reported intensity for 2018 excludes emissions and activity data for vessels chartered out to the ONE joint venture.","Below 2 Degrees",,,,,,,,
-,"1326","COSCO Shipping Energy","07/11/2019","2019-12","2018",,,,,"3.7","3.3",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity using an activity measure and emissions figure that is consistent with TPI’s methodology for this sector. It is assumed that the reference to 'miles' in the reported carbon intensity is 'nautical miles'. The company does not disclose sufficient data on quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.","Below 2 Degrees",,,,,,,,
-,"1319","K Line","07/11/2019","2019-12","2018",,"6.0","5.8","5.7","6.0","5.8","5.8","5.7","5.7","5.6","5.5","5.5","5.4","5.3","5.3","5.2","5.2","5.1",,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and emissions figure that is consistent with TPI’s methodology for this sector. The company's reported intensity for 2018 includes emissions and activity data for vessels chartered out to the ONE joint venture. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Below 2 Degrees",,,,,,,,
-,"1002","Brilliance","07/11/2019","2019-12","2018","174.285215422078","170.522784463115","168.113925547762","160.54239169122","152.398841347846","142.748588099422",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Brilliance has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1087","Subaru","07/11/2019","2019-12","2017","158.762188692437","159.705451304485","156.923055508085","158.464401043084","156.434858705562",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Subaru has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1090","Suzuki","07/11/2019","2019-12","2018","114.560541114564","111.800271723476","109.751525043452","108.269756256866","107.391098567487","106.579577864776","105.542473302665","104.279784881154",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Suzuki has set targets to reduce its emissions intensity. TPI has not made any further assumptions in order to project this company’s carbon performance.","Paris Pledges",,,,,,,,
-,"1097","Toyota","07/11/2019","2019-12","2017","142.057538913104","135.978132565016","134.03067252118","131.644007814661","126.186013511836","122.557666857771","118.929320203706","115.30097354964","113.379290657146","111.457607764652","109.535924872158","107.614241979664","105.69255908717","103.770876194676","101.849193302182","99.9275104096884","98.0058275171944","96.0841446247004",,,,,,,,,,,,,,,,,,,,,"Toyota has set targets to reduce its emissions intensity. TPI has not made any further assumptions in order to project this company’s carbon performance.","Paris Pledges",,,,,,,,
-,"1006","Ferrari","07/11/2019","2019-12",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Ferrari has not disclosed sufficient current emissions data nor any quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","No Disclosure",,,,,,,,
-,"1009","Fiat Chrysler","07/11/2019","2019-12","2017","174.386820678857","181.812168840364","170.391345191363","175.862438069861","172.943160938316",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Fiat Chrysler has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1029","Geely","07/11/2019","2019-12","2017","154.578599795615","151.567391458099","146.757500833323","125.316739633162","124.180509319795",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Geely has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1076","Mazda","07/11/2019","2019-12","2017","142.66242674075","137.550620756171","137.252805399574","137.187162201129","142.156925140147","137.54462356609","132.932321992033","128.320020417976","123.707718843918","119.095417269861","114.483115695804","109.870814121747","105.25851254769","100.646210973633","96.0339093995757","91.4216078255186","86.8093062514614","82.1970046774043",,,,,,,,,,,,,,,,,,,,,"Mazda has set targets to reduce its emissions intensity. For this company, TPI has assumed that:
-- Both tank-to-wheel and well-to-tank emissions fall by equal proportions in meeting the company’s well-to-wheel target.","Paris Pledges",,,,,,,,
-,"1077","Mitsubishi","07/11/2019","2019-12","2017","150.500762668168","143.639598463364","138.597143145043","149.31931423008","146.307488914725",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Mitsubishi has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1080","Nissan","07/11/2019","2019-12","2017","143.950158269321","141.446361529729","140.274440331992","141.049858964351","139.98121946895","136.562883905404","133.144548341858","129.726212778313","126.307877214767","125.4","121.981664436454","118.563328872909","115.144993309363","111.726657745818","108.308322182272","104.889986618727","101.471651055181","95.5428571428572",,,,,,,,,,,,,,,,,,,,,"Nissan has set targets to reduce its emissions intensity. TPI has not made any further assumptions in order to project this company’s carbon performance.","Paris Pledges",,,,,,,,
-,"1175","SAIC motor","07/11/2019","2019-12","2018","170.091779143999","167.252090978434","162.521644804566","157.252566950509","150.266909460982","148.395923470928",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"SAIC Motors has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1267","Air China","07/11/2019","2019-12","2018",,"592.0","598.0","570.0","568.0","566.0","570.0","574.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Not Aligned",,,,,,,,
-,"1269","ANA Group","07/11/2019","2019-12","2018",,"660.0","662.0","638.0","620.0","614.0","629.0","644.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance. TPI’s intensity calculation excludes emissions and passenger traffic data for ANA's low cost carrier operations.","Not Aligned",,,,,,,,
-,"1270","China Southern","07/11/2019","2019-12","2018",,"630.0","625.0","620.0","601.0","580.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. The company has no quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.","Not Aligned",,,,,,,,
-,"1275","Japan Airlines","07/11/2019","2019-12","2017",,"755.0","725.0","728.0","712.0","697.0","682.0","667.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI assumes that JAL's jet fuel emissions and passenger traffic figures (which include codeshare tickets from FY2015/16 onwards) are reported on a consistent basis for each year. It is also assumed that the company's disclosed freight activity is expressed in metric tonnes.","Not Aligned",,,,,,,,
-,"1116","Qantas","07/11/2019","2019-12","2018",,"662.0","651.0","651.0","636.0","622.0","602.0","583.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Not Aligned",,,,,,,,
-,"1027","Chubu Electric Power","02/08/2019","2019-09","2017","0.507","0.489","0.492","0.498","0.477","0.468","0.46","0.452","0.444","0.436","0.428","0.419","0.411","0.403","0.395","0.387","0.379","0.37",,,,,,,,,,,,,,,,,,,,,"The company discloses a target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Paris Pledges",,,,,,,,
-,"1307","Kyushu Elec Power","02/08/2019","2019-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions to allow TPI to verify the carbon intensities, or any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.","No Disclosure",,,,,,,,
-,"1300","Kansai Elec Power","02/08/2019","2019-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed data on current emissions nor quantitative emissions reduction targets in a way which TPI can use to estimate current or future Carbon Performance.","No Disclosure",,,,,,,,
-,"1023","China Petroleum & Chemical","12/07/2019","2019-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate current or future Carbon Performance.","No Disclosure",,,,,,,,
-,"1063","Enel","12/07/2019","2019-09","2018","0.396","0.395","0.409","0.395","0.411","0.369","0.36","0.35","0.345","0.332","0.319","0.307","0.294","0.281","0.268","0.256","0.243","0.23",,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this company’s Carbon Performance.","2 Degrees",,,,,,,,
-,"1310","Electric Power Development","02/08/2019","2019-09","2017",,,"0.666","0.667","0.672","0.652","0.632","0.612","0.591","0.571","0.551","0.531","0.511","0.491","0.471","0.45","0.43","0.41",,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Not Aligned",,,,,,,,
-,"1311","Chugoku","02/08/2019","2019-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions to allow TPI to verify the carbon intensities, or any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.","No Disclosure",,,,,,,,
-,"1239","Woodside Petroleum","12/07/2019","2019-09","2018",,"65.288","65.472","64.705","65.301","64.735",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology.","Not Aligned",,,,,,,,
-,"1031","CNOOC","12/07/2019","2019-09","2018",,,,"73.538","73.747","73.222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology.","Not Aligned",,,,,,,,
-,"1146","Origin Energy","12/07/2019","2019-09","2017","0.77","0.77","0.81","0.79","0.83","0.797","0.764","0.732","0.699","0.666","0.633","0.6","0.568","0.535","0.502","0.469","0.436","0.404",,,,,,,,,,,,,,,,,,,,,"The company has set targets to reduce its absolute emissions. To calculate this company’s targeted emissions intensity, TPI has assumed that: - The company’s regional electricity generation grows according to the regional electricity generation growth rate projected in the IEA’s Energy Technology Perspectives model ‘Reference Technology’ scenario.","Not Aligned",,,,,,,,
-,"1147","Orsted","02/08/2019","2019-09","2018",,,"0.38","0.368","0.234","0.198","0.174","0.151","0.111","0.07","0.03","0.023","0.015",,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Below 2 Degrees",,,,,,,,
-,"1313","PGE","12/07/2019","2019-09","2018","0.98","0.98","0.96","0.95","0.93","0.88","0.865","0.85","0.836","0.822","0.808","0.794","0.78",,,,,,,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Not Aligned",,,,,,,,
-,"1301","TEPCO","02/08/2019","2019-09","2017",,,"0.437","0.444","0.428","0.422","0.415","0.408","0.402","0.395","0.389","0.382","0.376","0.369","0.362","0.356","0.349","0.343",,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Paris Pledges",,,,,,,,
-,"1302","Terna","02/08/2019","2019-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company’s activities lie outside the scope of TPI’s Carbon Performance assessment of this sector, hence the company is not assessed.","Not Assessed",,,,,,,,
-,"1057","Ecopetrol","12/07/2019","2019-09","2017",,,"76.363","77.73","78.998","78.861","78.724","78.587","78.45","78.313","78.176","78.038","77.901","77.764","77.627","77.49","77.353","77.216",,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company has set targets to reduce its absolute emissions. To calculate this company’s targeted emissions intensity, TPI has assumed that: The company’s externally sold energy products grow according to the regional or global primary energy supply growth rate projected in the IEA’s Energy Technology Perspectives model ‘Reference Technology’ scenario. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.","Not Aligned",,,,,,,,
-,"1065","Eni","12/07/2019","2019-09","2018",,"65.493","64.475","64.549","64.958","64.887","64.607","64.326","64.046","63.766","63.486","63.205","62.925","62.645","62.365","62.084","61.804","61.524",,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.","Not Aligned",,,,,,,,
-,"1194","Equinor","12/07/2019","2019-09","2018",,"70.293","70.644","70.33","69.992","69.966","69.966","69.966","69.948","69.93","69.913","69.895","69.878","69.86","69.842","69.825","69.807","69.79",,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.","Not Aligned",,,,,,,,
-,"1108","Eneos (Oil & Gas)","12/07/2019","2019-09","2016",,"83.564","83.494","83.083","82.596","82.109","81.622","81.136","80.649","80.162","79.675","79.188","78.701","78.214","77.727","77.24","76.753","76.266",,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company has set targets to reduce its absolute emissions. To calculate this company’s targeted emissions intensity, TPI has assumed that: The company’s externally sold energy products grow according to the regional or global primary energy supply growth rate projected in the IEA’s Energy Technology Perspectives model ‘Reference Technology’ scenario. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.","Not Aligned",,,,,,,,
-,"1145","OMV","12/07/2019","2019-09","2018",,,,,"75.22","73.415","73.332","73.249","73.166","73.083","73.0","72.917","72.834",,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.","Not Aligned",,,,,,,,
-,"1154","Petrochina","12/07/2019","2019-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate current or future Carbon Performance.","No Disclosure",,,,,,,,
-,"1304","Tohoku Elec Power","02/08/2019","2019-09","2017",,,,"0.497","0.499","0.486","0.474","0.461","0.448","0.436","0.423","0.411","0.398","0.386","0.373","0.36","0.348","0.335",,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Paris Pledges",,,,,,,,
-,"1294","AGL Energy","12/07/2019","2019-09","2017","0.964","0.958","0.95","0.966","0.957","0.941","0.925","0.91","0.894","0.878","0.862",,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Not Aligned",,,,,,,,
-,"1312","China Resources Power","02/08/2019","2019-09","2017",,,,,"0.681",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.","Not Aligned",,,,,,,,
-,"1287","Chalco","12/12/2018","2019-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.","No Disclosure",,,,,,,,
-,"1270","China Southern","04/01/2019","2019-02","2017",,"114.0","112.0","112.0","108.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. The company has no quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.","Not Aligned",,,,,,,,
-,"1269","ANA Group","04/01/2019","2019-02","2017",,"137.0","134.0","132.0","128.0","130.0","132.0","133.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Not Aligned",,,,,,,,
-,"1267","Air China","04/01/2019","2019-02","2017",,"111.0","112.0","111.0","107.0","107.0","107.0","108.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","Not Aligned",,,,,,,,
-,"1286","Alumina","19/12/2018","2019-02","2017","21.27","20.7","19.9","19.41","17.06",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this company’s Carbon Performance. The company has not set targets to reduce its emissions intensity.
-Despite Alumina itself not setting targets, AWAC, of which Alumina owns 40%, does have targets in place.","Not Aligned",,,,,,,,
-,"1290","Norsk Hydro","17/12/2018","2019-02","2017","3.31","3.46","3.45","3.35","3.34",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this company’s Carbon Performance.
-Norsk Hydro has a net zero emissions target for 2020. TPI does not consider this target, as it includes avoided emissions.","Paris Pledges",,,,,,,,
-,"1170","Rio Tinto (Aluminium)","17/12/2018","2019-02","2017",,"5.71","5.18","4.8","4.59",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Emissions from bauxite mining were assumed to be negligibly small compared to alumina refining and aluminium smelting emissions. All of the company's produced alumina is assumed to be smelted into aluminium by the company itself.
-Rio Tinto discloses emissions targets, but these refer to the company as a whole and not to aluminium activities specifically.","Not Aligned",,,,,,,,
-,"1189","South32 (Aluminium)","17/12/2018","2019-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.
-South32 discloses emissions data as well as targets, but these refer to the company as a whole and not to aluminium activities specifcially.","No Disclosure",,,,,,,,
-,"1275","Japan Airlines","04/01/2019","2019-02","2017",,"140.0","132.0","134.0","134.0","131.0","128.0","125.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. It is assumed that JAL's jet fuel emissions and passenger traffic figures (which include codeshare tickets from FY2015/16 onwards) are reported on a consistent basis for each year.","Not Aligned",,,,,,,,
-,"1116","Qantas","04/01/2019","2019-02","2017",,"104.0","101.0","101.0","98.0","95.0","92.0","89.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.","International Pledges",,,,,,,,
-,"1009","Fiat Chrysler","12/10/2018","2018-11","2016","174.0","182.0","170.0","176.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Fiat Chrysler has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1006","Ferrari","12/10/2018","2018-11",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Ferrari has not disclosed sufficient current emissions data nor any quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","No Disclosure",,,,,,,,
-,"1002","Brilliance","12/10/2018","2018-11","2017","174.0","171.0","168.0","161.0","152.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Brilliance has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1168","Lee & Man Paper Manufacturing","09/10/2018","2018-11",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Lee & Man Paper Manufacturing has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","No Disclosure",,,,,,,,
-,"1080","Nissan","12/10/2018","2018-11","2017","144.0","141.0","140.0","141.0","142.0","132.0","122.0","112.0","107.0","102.0","98.0","93.0","89.0","85.0","82.0","78.0","75.0","71.0",,,,,,,,,,,,,,,,,,,,,"Nissan has set targets to reduce its emissions intensity. For this company, TPI has assumed that:
-- Both tank-to-wheel and well-to-tank emissions fall by equal proportions in meeting the company’s well-to-wheel target.","2 Degrees (Shift-Improve)",,,,,,,,
-,"1178","Nine Dragons Paper Industries","09/10/2018","2018-11",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Nine Dragons Paper Industries has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","No Disclosure",,,,,,,,
-,"1183","Nippon Paper Industries","09/10/2018","2018-11","2017","1.23","1.21","1.21","1.19","1.11","1.1","1.1","1.09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Nippon Paper Industries has emissions reduction targets expressed in total emissions. To calculate an emissions intensity, TPI has assumed that:
+Id,Company id,Company,Assessment date,Assessment date flag,Publication date,Last reported year,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,Assumptions,CP alignment 2050,CP alignment 2025,CP alignment 2035,Region,CP regional alignment 2025,CP regional alignment 2035,CP regional alignment 2050,CP alignment 2027,CP regional alignment 2027
+,1267,Air China,23/10/2020,old,2020-12,2019,,840.0,844.0,807.0,814.0,814.0,863.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology.,Not aligned,2 Degrees (Shift-Improve),International Pledges,Europe,2 Degrees (Shift-Improve),International Pledges,International Pledges,,
+,1269,ANA Group,23/10/2020,old,2020-12,2019,,897.0,908.0,870.0,844.0,842.0,869.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. The company has set targets to reduce its emissions intensity, but they could not be included in this assessment as it was not possible to make them consistent with TPI’s methodology.",Not aligned,,,,,,,2 Degrees (Shift-Improve),2 Degrees (Shift-Improve)
+,1077,Mitsubishi,23/10/2020,old,2020-12,2018,151.0,144.0,139.0,149.0,146.0,139.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Mitsubishi has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not aligned,,,,,,,,
+,1080,Nissan,23/10/2020,old,2020-12,2018,144.0,141.0,140.0,141.0,140.0,139.0,135.0,132.0,129.0,125.0,122.0,118.0,114.0,110.0,107.0,103.0,99.0,96.0,92.0,88.0,84.0,81.0,77.0,73.0,69.0,66.0,62.0,58.0,54.0,51.0,47.0,43.0,40.0,36.0,32.0,28.0,25.0,21.0,TPI has not made any further assumptions in order to project this company’s Carbon Performance.,2 Degrees (Shift-Improve),,,,,,,,
+,1175,SAIC motor,23/10/2020,old,2020-12,2019,170.0,167.0,163.0,157.0,150.0,148.0,137.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"SAIC Motors has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not aligned,,,,,,,,
+,1087,Subaru,23/10/2020,old,2020-12,2018,159.0,160.0,157.0,158.0,156.0,158.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Subaru has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not aligned,,,,,,,,
+,1318,COSCO Shipping Holdings,23/10/2020,old,2020-12,2019,,,,,8.12,8.05,7.66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",International Pledges,,,,,,,,
+,1090,Suzuki,23/10/2020,old,2020-12,2019,115.0,112.0,110.0,108.0,107.0,106.0,104.0,101.0,99.0,96.0,94.0,91.0,89.0,86.0,84.0,81.0,79.0,76.0,73.0,70.0,67.0,64.0,60.0,57.0,54.0,51.0,48.0,45.0,41.0,38.0,35.0,32.0,29.0,25.0,22.0,19.0,16.0,13.0,TPI has not made any further assumptions in order to project this company’s Carbon Performance.,2 Degrees (Shift-Improve),,,,,,,,
+,1270,China Southern,23/10/2020,old,2020-12,2019,,907.0,901.0,892.0,874.0,837.0,826.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology.,Not aligned,,,,,,,,
+,1275,Japan Airlines,23/10/2020,old,2020-12,2019,,1074.0,1038.0,1037.0,1005.0,983.0,995.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has set targets to reduce its emissions intensity, but they could not be included in this assessment as it was not possible to make them consistent with TPI’s methodology.",Not aligned,,,,,,,,
+,1116,Qantas,23/10/2020,old,2020-12,2019,,970.0,960.0,960.0,943.0,918.0,962.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has set targets to reduce its emissions intensity, but they could not be included in this assessment as it was not possible to make them consistent with TPI’s methodology.",Not aligned,,,,,,,,
+,1002,Brilliance,23/10/2020,old,2020-12,2019,174.0,171.0,168.0,161.0,152.0,143.0,139.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Brilliance has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not aligned,,,,,,,,
+,1097,Toyota,23/10/2020,old,2020-12,2018,142.0,136.0,134.0,132.0,126.0,122.0,119.0,117.0,114.0,111.0,108.0,105.0,102.0,101.0,100.0,98.0,97.0,95.0,91.0,87.0,83.0,79.0,75.0,71.0,67.0,63.0,59.0,55.0,51.0,47.0,43.0,39.0,35.0,31.0,27.0,23.0,19.0,15.0,TPI has not made any further assumptions in order to project this company's Carbon Performance.,2 Degrees (Shift-Improve),,,,,,,,
+,1540,BYD,23/10/2020,old,2020-12,2019,167.0,156.0,175.0,73.0,53.0,52.0,50.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Paris Pledges,,,,,,,,
+,1326,COSCO Shipping Energy,23/10/2020,old,2020-12,2019,,,,,3.72,3.27,3.71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",International Pledges,,,,,,,,
+,1125,AP Moller – Maersk,23/10/2020,old,2020-12,2019,,,,4.45,4.38,4.3,4.1,3.98,3.87,3.75,3.63,3.52,3.4,3.28,3.17,3.05,2.93,2.82,2.68,2.54,2.4,2.25,2.11,1.97,1.83,1.69,1.55,1.41,1.27,1.13,0.99,0.85,0.7,0.56,0.42,0.28,0.14,0.0,TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Below 2 Degrees,,,,,,,,
+,1009,Fiat Chrysler,23/10/2020,old,2020-12,2018,174.0,182.0,170.0,176.0,173.0,178.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Fiat Chrysler has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not aligned,,,,,,,,
+,1052,Honda,23/10/2020,old,2020-12,2019,149.0,144.0,141.0,140.0,137.0,134.0,130.0,128.0,127.0,123.0,120.0,116.0,112.0,109.0,105.0,102.0,98.0,94.0,91.0,87.0,83.0,80.0,76.0,73.0,69.0,65.0,62.0,58.0,54.0,51.0,47.0,44.0,40.0,36.0,33.0,29.0,25.0,22.0,TPI has not made any further assumptions in order to project this company’s carbon performance.,2 Degrees (Shift-Improve),,,,,,,,
+,1029,Geely,23/10/2020,old,2020-12,2018,155.0,152.0,147.0,125.0,124.0,134.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Geely has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not aligned,,,,,,,,
+,1006,Ferrari,23/10/2020,old,2020-12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Ferrari has not disclosed sufficient current emissions data nor any quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",No Disclosure,,,,,,,,
+,1314,MOL,23/10/2020,old,2020-12,2019,,6.2,6.01,6.07,6.13,6.05,5.08,5.02,4.96,4.9,4.84,4.78,4.72,4.66,4.6,4.54,4.48,4.42,4.26,4.11,3.95,3.79,3.64,3.48,3.32,3.17,3.01,2.85,2.7,2.54,2.38,2.23,2.07,1.91,1.76,1.6,1.44,1.29,TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Below 2 Degrees,,,,,,,,
+,1538,China Merchants Energy Shipping,23/10/2020,old,2020-12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate current or future Carbon Performance.",No Disclosure,,,,,,,,
+,1537,Iino Kaiun Kaisha,23/10/2020,old,2020-12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions to allow TPI to verify the carbon intensities, or any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.",No Disclosure,,,,,,,,
+,1539,NS United Kaiun Kaisha,23/10/2020,old,2020-12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate current or future Carbon Performance.",No Disclosure,,,,,,,,
+,1319,K Line,23/10/2020,old,2020-12,2019,,6.03,5.77,5.71,5.98,5.84,5.31,5.25,5.18,5.11,5.04,4.97,4.91,4.84,4.77,4.7,4.63,4.57,4.48,4.38,4.29,4.2,4.11,4.02,3.93,3.84,3.74,3.65,3.56,3.47,3.38,3.29,3.2,3.11,3.01,2.92,2.83,2.74,"To calculate this company’s baseline emissions intensity, TPI has taken a weighted average of emission intensities of the company's various ship types in 2008.",International Pledges,,,,,,,,
+,1315,NYK Line,23/10/2020,old,2020-12,2019,,,6.3,6.6,6.2,5.85,5.6,5.49,5.38,5.28,5.17,5.06,4.95,4.84,4.73,4.63,4.52,4.41,4.35,4.28,4.22,4.16,4.1,4.03,3.97,3.91,3.84,3.78,3.72,3.65,3.59,3.53,3.47,3.4,3.34,3.28,3.21,3.15,TPI has not made any further assumptions in order to project this company’s Carbon Performance.,International Pledges,,,,,,,,
+,1076,Mazda,23/10/2020,old,2020-12,2018,143.0,138.0,137.0,137.0,142.0,142.0,137.0,132.0,127.0,122.0,117.0,112.0,107.0,102.0,97.0,92.0,87.0,82.0,79.0,76.0,72.0,69.0,66.0,62.0,59.0,56.0,53.0,49.0,46.0,43.0,39.0,36.0,33.0,30.0,26.0,23.0,20.0,16.0,TPI has assumed that both tank-to-wheel and well-to-tank emissions fall by equal proportions in meeting the company’s well-to-wheel target.,2 Degrees (Shift-Improve),,,,,,,,
+,1358,Rio Tinto (Diversified mining),12/08/2020,old,2020-10,2019,,,,73.08,73.59,72.84,77.66,77.54,77.42,77.3,77.18,77.06,76.93,76.81,76.69,76.57,76.45,76.33,76.17,76.02,75.87,75.71,75.56,75.4,75.25,75.09,74.94,74.78,74.63,74.47,74.32,74.17,74.01,73.86,73.7,73.55,73.39,73.24,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company has set targets to reduce its emissions intenisty. The company's target covers a subset of Scope 1, 2 and 3 (use and/or processing of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.",Not Aligned,,,,,,,,
+,1147,Orsted,12/08/2020,old,2020-10,2018,,,0.38,0.368,0.236,0.203,0.092,0.076,0.061,0.046,0.031,0.015,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Below 2 Degrees,,,,,,,,
+,1239,Woodside Petroleum,12/08/2020,old,2020-10,2019,,65.43,65.61,64.59,65.21,64.68,64.55,64.33,64.12,63.9,63.69,63.48,63.26,63.05,62.84,62.62,62.41,62.19,61.98,61.77,61.55,61.34,61.13,60.91,60.7,60.49,60.27,60.06,59.84,59.63,59.42,59.2,58.99,58.78,58.56,58.35,58.14,57.921581552074,The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology.,Not Aligned,,,,,,,,
+,1023,China Petroleum & Chemical,12/08/2020,old,2020-10,2019,,,,,81.97,82.23,81.5,80.83,80.16,79.5,80.16,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Not Aligned,,,,,,,,
+,1194,Equinor,12/08/2020,old,2020-10,2019,,69.7,69.82,69.74,69.25,69.34,69.07,69.03,68.98,68.94,68.89,68.85,68.81,68.39,67.97,67.55,67.13,66.72,65.71,64.71,63.7,62.7,61.69,60.69,59.68,58.68,57.67,56.67,55.67,54.66,53.66,52.65,51.65,50.64,49.64,48.63,47.63,46.6244715364657,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company's target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.",Paris Pledges,,,,,,,,
+,1311,Chugoku,12/08/2020,old,2020-10,2019,,,,,,0.576,0.559,0.542,0.525,0.507,0.49,0.473,0.456,0.439,0.422,0.404,0.387,0.37,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions to allow TPI to verify the carbon intensities, or any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.",Not Aligned,,,,,,,,
+,1027,Chubu Electric Power,12/08/2020,old,2020-10,2018,0.507,0.469,0.466,0.489,0.485,0.473,0.464,0.456,0.447,0.439,0.43,0.422,0.413,0.404,0.396,0.387,0.379,0.37,,,,,,,,,,,,,,,,,,,,,The company discloses a target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Not Aligned,,,,,,,,
+,1312,China Resources Power,12/08/2020,old,2020-10,2019,,,,,0.78,0.755,0.728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.",Not Aligned,,,,,,,,
+,1224,Santos,12/08/2020,old,2020-10,2018,,73.7,71.08,73.14,73.57,72.26,71.87,71.48,71.09,70.7,70.31,69.92,69.53,69.14,68.75,68.36,67.97,67.58,67.19,66.8,66.41,66.02,65.63,65.24,64.85,64.46,64.07,63.68,63.29,62.9,62.51,62.12,61.73,61.34,60.95,60.56,60.17,59.7770490860771,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.",Not Aligned,,,,,,,,
+,1307,Kyushu Elec Power,12/08/2020,old,2020-10,,0.598,0.528,0.483,0.463,0.347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions to allow TPI to verify the carbon intensities, or any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.",Not Aligned,,,,,,,,
+,1503,EDP,12/08/2020,old,2020-10,2019,0.282,0.276,0.34,0.272,0.333,0.257,0.217,0.203,0.189,0.175,0.161,0.147,0.133,0.119,0.105,0.091,0.077,0.063,0.06,0.057,0.053,0.05,0.047,0.044,0.041,0.038,0.035,0.031,0.028,0.025,0.022,0.019,0.016,0.013,0.009,0.006,0.003,0.0,TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Below 2 Degrees,,,,,,,,
+,1313,PGE,12/08/2020,old,2020-10,2019,0.98,0.98,0.96,0.95,0.93,0.88,0.958,0.85,0.836,0.822,0.808,0.794,0.78,,,,,,,,,,,,,,,,,,,,,,,,,,TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Not Aligned,,,,,,,,
+,1146,Origin Energy,12/08/2020,old,2020-10,2018,0.77,0.77,0.81,0.79,0.84,0.87,0.833,0.796,0.76,0.723,0.686,0.649,0.612,0.575,0.539,0.502,0.465,0.428,0.397,0.366,,,,,,,,,,,,,,,,,,,"The company has set targets to reduce its absolute emissions. To calculate this company’s targeted emissions intensity, TPI has assumed that: - The company’s regional electricity generation grows according to the regional electricity generation growth rate projected in the IEA’s Energy Technology Perspectives model ‘Reference Technology’ scenario.",Not Aligned,,,,,,,,
+,1031,CNOOC,12/08/2020,old,2020-10,2019,,,,74.58,74.84,74.26,74.78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology.,Not Aligned,,,,,,,,
+,1154,Petrochina,12/08/2020,old,2020-10,2019,,,,,,,73.38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate current or future Carbon Performance.",Not Aligned,,,,,,,,
+,1145,OMV,12/08/2020,old,2020-10,2019,,,,63.05,62.94,62.34,61.68,61.44,61.2,60.96,60.72,60.48,60.24,60.16,60.08,60.01,59.93,59.85,59.77,59.69,59.61,59.53,59.45,59.37,59.29,59.21,59.13,59.05,58.97,58.89,58.81,58.73,58.65,58.57,58.49,58.41,58.33,58.2482827474976,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.",Not Aligned,,,,,,,,
+,1108,Eneos (Oil & Gas),12/08/2020,old,2020-10,2018,,,,81.49,81.59,82.15,82.09,82.03,81.97,81.9,81.56,81.21,80.87,80.52,80.17,79.83,79.48,79.14,78.63,78.13,77.63,77.12,76.62,76.11,75.61,75.11,74.6,74.1,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company has set targets to reduce its absolute emissions. To calculate this company’s targeted emissions intensity, TPI has assumed that: The company’s externally sold energy products grow according to the regional or global primary energy supply growth rate projected in the IEA’s Energy Technology Perspectives model ‘Reference Technology’ scenario. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.",Not Aligned,,,,,,,,
+,1518,INPEX,12/08/2020,old,2020-10,2019,,,,,,73.61,74.21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology.,Not Aligned,,,,,,,,
+,1516,Galp Energia,12/08/2020,old,2020-10,2019,,,,,67.08,66.45,66.5,66.44,66.37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.",Not Aligned,,,,,,,,
+,1057,Ecopetrol,12/08/2020,old,2020-10,2019,,75.36,75.68,76.85,78.24,78.46,77.93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company has set targets to reduce its absolute emissions. To calculate this company’s targeted emissions intensity, TPI has assumed that: The company’s externally sold energy products grow according to the regional or global primary energy supply growth rate projected in the IEA’s Energy Technology Perspectives model ‘Reference Technology’ scenario. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.",Not Aligned,,,,,,,,
+,1065,Eni,12/08/2020,old,2020-10,2019,,66.02,65.59,65.36,65.37,65.47,65.15,64.28,63.42,62.56,61.69,60.83,59.96,59.1,58.24,57.37,56.51,55.65,54.34,53.03,51.72,50.41,49.1,47.79,46.48,45.17,43.86,42.55,41.24,39.94,38.63,37.32,36.01,34.7,33.39,32.08,30.77,29.4605376210079,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.",Paris Pledges,,,,,,,,
+,1514,South32 (Diversified mining),12/08/2020,old,2020-10,2018,,,,98.89,95.03,94.0,93.67,93.34,93.01,92.67,92.34,92.01,91.68,91.35,91.02,90.69,90.36,90.02,89.69,89.36,89.03,88.7,88.37,88.04,87.71,87.37,87.04,86.71,86.38,86.05,85.72,85.39,85.06,84.72,84.39,84.06,83.73,83.4,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company has set targets to reduce its absolute emissions. To calculate the company's targeted emissions intensity, TPI has assumed that: its externally sold energy, Aluminium and steel products grow in-line with the rate projected in the IEA's Energy Technology Perspectives model and other commodities grow in-line with GDP used by the IEA in the ETP. The company's target covers a subset of Scope 1, 2 and 3 (use and/or processing of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.",Not Aligned,,,,,,,,
+,1522,Fortescue,12/08/2020,old,2020-10,2018,,,,115.57,114.15,119.17,119.15,119.13,119.1,119.08,119.05,119.03,119.0,118.98,118.96,118.93,118.91,118.88,118.81,118.74,118.68,118.61,118.54,118.47,118.4,118.33,118.26,118.19,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company has set targets to reduce its absolute emissions. To calculate the company's targeted emissions intensity, TPI has assumed that: its externally sold energy, Aluminium and steel products grow in-line with the rate projected in the IEA's Energy Technology Perspectives model and other commodities grow in-line with GDP used by the IEA in the ETP. The company's target covers a subset of Scope 1, 2 and 3 (use and/or processing of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.",Not Aligned,,,,,,,,
+,1301,TEPCO,12/08/2020,old,2020-10,2018,,,0.437,0.444,0.428,0.43,0.424,0.417,0.41,0.404,0.397,0.39,0.383,0.377,0.37,0.363,0.357,0.35,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Not Aligned,,,,,,,,
+,1304,Tohoku Elec Power,12/08/2020,old,2020-10,2019,,,,0.497,0.499,0.496,0.484,0.471,0.459,0.446,0.434,0.422,0.409,0.397,0.385,0.372,0.36,0.347,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Not Aligned,,,,,,,,
+,1302,Terna,12/08/2020,old,2020-10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company’s activities lie outside the scope of TPI’s Carbon Performance assessment of this sector, hence the company is not assessed.",Not assessed,,,,,,,,
+,1300,Kansai Elec Power,12/08/2020,old,2020-10,2018,,,,0.347,0.303,0.254,0.255,0.257,0.258,0.259,0.261,0.262,0.263,0.265,0.266,0.267,0.269,0.27,,,,,,,,,,,,,,,,,,,,,The company has not disclosed data on current emissions nor quantitative emissions reduction targets in a way which TPI can use to estimate current or future Carbon Performance.,Paris Pledges,,,,,,,,
+,1310,Electric Power Development,12/08/2020,old,2020-10,2017,,,0.666,0.667,0.672,0.678,0.656,0.635,0.613,0.591,0.569,0.548,0.526,0.504,0.482,0.461,0.439,0.417,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Not Aligned,,,,,,,,
+,1063,Enel,12/08/2020,old,2020-10,2019,0.403,0.407,0.42,0.406,0.421,0.377,0.303,0.275,0.248,0.22,0.208,0.196,0.184,0.173,0.161,0.149,0.137,0.125,0.119,0.113,0.106,0.1,0.094,0.088,0.081,0.075,0.069,0.063,0.056,0.05,0.044,0.038,0.031,0.025,0.019,0.013,0.006,,The company discloses an emissions intensity using an activity measure and/or emissions figure that is inconsistent with TPI's methodology for this sector. The carbon intensity has been recalculated according to TPI methodology.,Below 2 Degrees,,,,,,,,
+,1294,AGL Energy,12/08/2020,old,2020-10,2018,0.964,0.958,0.95,0.98,0.97,0.95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Not Aligned,,,,,,,,
+,1289,Nippon Light Metal,20/12/2019,,2020-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company’s activities don't fit the scope of TPI’s Carbon Performance assessment of this sector, hence the company is not assessed.",Not Assessed,,,,,,,,
+,1202,Taiheiyo Cement,20/12/2019,,2020-02,2018,0.686,0.692,0.692,0.683,0.679,0.671,0.664,0.657,0.65,0.643,0.636,0.629,0.622,,,,,,,,,,,,,,,,,,,,,,,,,,TPI has not made any further assumptions in order to project this companyís Carbon Performance.,Not Aligned,,,,,,,,
+,1183,Nippon Paper Industries,20/12/2019,,2020-02,2018,,,,1.191135734,1.110721179,1.177103894,1.142872654,1.108641415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has set targets to reduce its absolute emissions. To calculate this companyís targeted emissions intensity, TPI has assumed that: The companyís pulp, paper and paperboard production grows according to the global growth rate projected in the IEAís Energy Technology Perspectives model ëReference Technologyí scenario.",Not Aligned,,,,,,,,
+,1024,China Resources Cement Holdings,20/12/2019,,2020-02,2018,,,,0.8615,0.8574,0.8569,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,TPI has not made any further assumptions in order to project this companyís Carbon Performance.,Not Aligned,,,,,,,,
+,1265,Anhui Conch Cement,20/12/2019,,2020-02,2018,,,,,0.855,0.844,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,TPI has not made any further assumptions in order to project this companyís Carbon Performance.,Not Aligned,,,,,,,,
+,1126,Daio Paper,20/12/2019,,2020-02,2018,1.054054054,1.06,0.99,0.94,0.87,0.83,0.825833333,0.821666667,0.8175,0.813333333,0.809166667,0.805,0.800833333,0.796666667,0.7925,0.788333333,0.784166667,0.78,,,,,,,,,,,,,,,,,,,,,TPI has not made any further assumptions in order to project this companyís Carbon Performance.,Not Aligned,,,,,,,,
+,1144,Hokuetsu,20/12/2019,,2020-02,2018,0.511147228,0.476794358,0.473157176,0.488092045,0.513560109,0.479576741,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Hokuetsu has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Paris Pledges,,,,,,,,
+,1187,Oji Holdings,20/12/2019,,2020-02,2018,0.523,0.517,0.493,0.485,0.481,0.476,0.4735,0.471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,TPI has not made any further assumptions in order to project this companyís Carbon Performance.,Paris Pledges,,,,,,,,
+,1022,China National Building Materials,20/12/2019,,2020-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"China National Building Materials has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",No Disclosure,,,,,,,,
+,1115,Boral,20/12/2019,,2020-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate current or future Carbon Performance.",No Disclosure,,,,,,,,
+,1040,Adelaide Brighton,20/12/2019,,2020-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adelaide Brighton has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",No Disclosure,,,,,,,,
+,1134,Nisshin Steel,20/12/2019,,2020-02,2018,2.4,2.37,2.36,2.35,2.43,2.41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,TPI has not made any further assumptions in order to project this companyís Carbon Performance.,Not Aligned,,,,,,,,
+,1286,Alumina,20/12/2019,,2020-02,2018,21.27,20.7,19.9,19.41,17.06,17.22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,TPI has not made any further assumptions in order to project this companyís Carbon Performance.,Not Aligned,,,,,,,,
+,1092,Bluescope Steel,20/12/2019,,2020-02,2018,2.1,2.04,1.82,1.68,1.66,1.64,1.625896667,1.611793333,1.59769,1.583586667,1.569483333,1.55538,1.541276667,1.527173333,1.51307,1.498966667,1.484863333,1.47076,,,,,,,,,,,,,,,,,,,,,TPI has not made any further assumptions in order to project this companyís Carbon Performance.,Paris Pledges,,,,,,,,
+,1497,Mitsui & Co,20/12/2019,,2020-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company’s activities don't fit the scope of TPI’s Carbon Performance assessment of this sector, hence the company is not assessed.",Not Assessed,,,,,,,,
+,1106,JFE Holdings,20/12/2019,,2020-02,2018,2.073247297,2.058368495,2.077850877,2.028083896,2.055867885,2.093120487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"JFE Holdings has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1288,China Zhongwang,20/12/2019,,2020-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company’s activities don't fit the scope of TPI’s Carbon Performance assessment of this sector, hence the company is not assessed.",Not Assessed,,,,,,,,
+,1290,Norsk Hydro,20/12/2019,,2020-02,2018,3.306230218,3.446921084,3.36947713,3.325620713,3.307644373,3.321617094,3.232887954,3.144158813,3.055429673,2.966700533,2.877971392,2.789242252,2.700513112,2.588547633,2.476582155,2.364616676,2.252651198,2.140685719,,,,,,,,,,,,,,,,,,,,,"The company has set targets to reduce its absolute emissions. To calculate this companyís targeted emissions intensity, TPI has assumed that: The companyís aluminium production grows according to the global growth rate projected in the IEAís Energy Technology Perspectives model ëReference Technologyí scenario. Norsk Hydro has a net zero emissions target for 2020. TPI does not consider this target, as it includes avoided emissions.",Below 2 Degrees,,,,,,,,
+,1287,Chalco,20/12/2019,,2020-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.",No Disclosure,,,,,,,,
+,1189,South32 (Aluminium),20/12/2019,,2020-02,2018,,,,,,16.18548885,16.05201921,15.91854956,15.78507992,15.65161028,15.51814064,15.38467099,15.25120135,15.11773171,14.98426207,14.85079242,14.71732278,14.58385314,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPIís methodology for this sector. The carbon intensity has been recalculated according to TPI methodology.,Not Aligned,,,,,,,,
+,1170,Rio Tinto (Aluminium),20/12/2019,,2020-02,2018,,,,,,5.235415237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this companyís Carbon Performance. The company discloses emissions targets, but these refer to the company as a whole and not to aluminium activities specifically.",Not Aligned,,,,,,,,
+,1112,Kobe Steel,20/12/2019,,2020-02,2018,2.328947368,2.36,2.346666667,2.361111111,2.32,2.315484805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Kobe has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1230,Voestalpine,20/12/2019,,2020-02,2018,,,,,1.867321867,1.957940537,1.952181888,1.946423239,1.940664591,1.934905942,1.929147293,1.923388645,1.917629996,1.911871348,1.906112699,1.90035405,1.894595402,1.888836753,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPIís methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this companyís Carbon Performance.,Not Aligned,,,,,,,,
+,1197,Shandong Chenming,20/12/2019,,2020-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate current or future Carbon Performance.",No Disclosure,,,,,,,,
+,1209,Tenaris,20/12/2019,,2020-02,2018,0.9,0.87,0.91,0.85,0.82,0.81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Tenaris has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Below 2 Degrees,,,,,,,,
+,1007,Nippon Steel,20/12/2019,,2020-02,2018,2.24,2.0,2.02,1.99,2.01,2.02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Nippon Steel & Sumitomo Metal has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1198,Sumitomo Osaka Cement,20/12/2019,,2020-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate current or future Carbon Performance.",No Disclosure,,,,,,,,
+,1168,Lee & Man Paper Manufacturing,20/12/2019,,2020-02,2018,,,,,,0.763358779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,TPI has not made any further assumptions in order to project this companyís Carbon Performance.,Not Aligned,,,,,,,,
+,1178,Nine Dragons Paper Industries,20/12/2019,,2020-02,2018,,,,,0.9722,0.9339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Nine Dragons Paper Industries has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1292,UACJ,20/12/2019,,2020-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company’s activities don't fit the scope of TPI’s Carbon Performance assessment of this sector, hence the company is not assessed.",Not Assessed,,,,,,,,
+,1052,Honda,07/11/2019,,2019-12,2018,149.3912,143.5896,140.6888,139.9636,137.2441,134.3433,130.62665,126.91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Honda has set targets to reduce its emissions intensity. TPI has not made any further assumptions in order to project this company’s carbon performance.,Not Aligned,,,,,,,,
+,1318,COSCO Shipping Holdings,07/11/2019,,2019-12,2018,,,,,8.1,8.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"TPI's Carbon Performance assessment is based on emissions data disclosed by COSCO Shipping Lines Co Ltd, a 100% subsidiary of COSCO Shipping Holdings. The assessment excludes Orient Overseas International Limited, which was acquired by COSCO Shipping Holdings in July 2018. COSCO Shipping Lines discloses an emissions intensity using an activity measure and emissions figure that is consistent with TPI’s methodology for this sector. COSCO Shipping Lines does not disclose sufficient data on quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.",International Pledges,,,,,,,,
+,1125,AP Moller – Maersk,07/11/2019,,2019-12,2018,,,,4.5,4.4,4.3,4.2,4.1,4.0,3.8,3.7,3.6,3.5,3.4,3.3,3.1,3.0,2.9,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI assumes that carbon intensity reported in the company's CDP Climate Change Response takes precedence over the fuel efficiency data reported in the company's Annual Report.,Below 2 Degrees,,,,,,,,
+,1314,MOL,07/11/2019,,2019-12,2018,,6.2,6.0,6.1,6.1,6.0,5.9,5.8,5.7,5.6,5.5,5.4,5.2,5.1,5.0,4.9,4.8,4.7,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and emissions figure that is consistent with TPI’s methodology for this sector. Based on the information disclosed, it is assumed that the company's reported intensity for 2018 excludes emissions and activity data for vessels chartered out to the ONE joint venture.",Below 2 Degrees,,,,,,,,
+,1315,NYK Line,07/11/2019,,2019-12,2017,,,6.3,6.6,6.2,5.9,5.7,5.6,5.5,5.4,5.2,5.1,5.0,4.9,4.8,4.6,4.5,4.4,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity and target using an activity measure and emissions figure that is consistent with TPI’s methodology for this sector. Based on the information disclosed, it is assumed that the company's reported intensity for 2018 excludes emissions and activity data for vessels chartered out to the ONE joint venture.",Below 2 Degrees,,,,,,,,
+,1326,COSCO Shipping Energy,07/11/2019,,2019-12,2018,,,,,3.7,3.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity using an activity measure and emissions figure that is consistent with TPI’s methodology for this sector. It is assumed that the reference to 'miles' in the reported carbon intensity is 'nautical miles'. The company does not disclose sufficient data on quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.",Below 2 Degrees,,,,,,,,
+,1319,K Line,07/11/2019,,2019-12,2018,,6.0,5.8,5.7,6.0,5.8,5.8,5.7,5.7,5.6,5.5,5.5,5.4,5.3,5.3,5.2,5.2,5.1,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and emissions figure that is consistent with TPI’s methodology for this sector. The company's reported intensity for 2018 includes emissions and activity data for vessels chartered out to the ONE joint venture. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Below 2 Degrees,,,,,,,,
+,1002,Brilliance,07/11/2019,,2019-12,2018,174.285215422078,170.522784463115,168.113925547762,160.54239169122,152.398841347846,142.748588099422,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Brilliance has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1087,Subaru,07/11/2019,,2019-12,2017,158.762188692437,159.705451304485,156.923055508085,158.464401043084,156.434858705562,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Subaru has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1090,Suzuki,07/11/2019,,2019-12,2018,114.560541114564,111.800271723476,109.751525043452,108.269756256866,107.391098567487,106.579577864776,105.542473302665,104.279784881154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Suzuki has set targets to reduce its emissions intensity. TPI has not made any further assumptions in order to project this company’s carbon performance.,Paris Pledges,,,,,,,,
+,1097,Toyota,07/11/2019,,2019-12,2017,142.057538913104,135.978132565016,134.03067252118,131.644007814661,126.186013511836,122.557666857771,118.929320203706,115.30097354964,113.379290657146,111.457607764652,109.535924872158,107.614241979664,105.69255908717,103.770876194676,101.849193302182,99.9275104096884,98.0058275171944,96.0841446247004,,,,,,,,,,,,,,,,,,,,,Toyota has set targets to reduce its emissions intensity. TPI has not made any further assumptions in order to project this company’s carbon performance.,Paris Pledges,,,,,,,,
+,1006,Ferrari,07/11/2019,,2019-12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Ferrari has not disclosed sufficient current emissions data nor any quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",No Disclosure,,,,,,,,
+,1009,Fiat Chrysler,07/11/2019,,2019-12,2017,174.386820678857,181.812168840364,170.391345191363,175.862438069861,172.943160938316,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Fiat Chrysler has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1029,Geely,07/11/2019,,2019-12,2017,154.578599795615,151.567391458099,146.757500833323,125.316739633162,124.180509319795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Geely has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1076,Mazda,07/11/2019,,2019-12,2017,142.66242674075,137.550620756171,137.252805399574,137.187162201129,142.156925140147,137.54462356609,132.932321992033,128.320020417976,123.707718843918,119.095417269861,114.483115695804,109.870814121747,105.25851254769,100.646210973633,96.0339093995757,91.4216078255186,86.8093062514614,82.1970046774043,,,,,,,,,,,,,,,,,,,,,"Mazda has set targets to reduce its emissions intensity. For this company, TPI has assumed that:
+- Both tank-to-wheel and well-to-tank emissions fall by equal proportions in meeting the company’s well-to-wheel target.",Paris Pledges,,,,,,,,
+,1077,Mitsubishi,07/11/2019,,2019-12,2017,150.500762668168,143.639598463364,138.597143145043,149.31931423008,146.307488914725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Mitsubishi has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1080,Nissan,07/11/2019,,2019-12,2017,143.950158269321,141.446361529729,140.274440331992,141.049858964351,139.98121946895,136.562883905404,133.144548341858,129.726212778313,126.307877214767,125.4,121.981664436454,118.563328872909,115.144993309363,111.726657745818,108.308322182272,104.889986618727,101.471651055181,95.5428571428572,,,,,,,,,,,,,,,,,,,,,Nissan has set targets to reduce its emissions intensity. TPI has not made any further assumptions in order to project this company’s carbon performance.,Paris Pledges,,,,,,,,
+,1175,SAIC motor,07/11/2019,,2019-12,2018,170.091779143999,167.252090978434,162.521644804566,157.252566950509,150.266909460982,148.395923470928,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"SAIC Motors has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1267,Air China,07/11/2019,,2019-12,2018,,592.0,598.0,570.0,568.0,566.0,570.0,574.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Not Aligned,,,,,,,,
+,1269,ANA Group,07/11/2019,,2019-12,2018,,660.0,662.0,638.0,620.0,614.0,629.0,644.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance. TPI’s intensity calculation excludes emissions and passenger traffic data for ANA's low cost carrier operations.,Not Aligned,,,,,,,,
+,1270,China Southern,07/11/2019,,2019-12,2018,,630.0,625.0,620.0,601.0,580.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. The company has no quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.",Not Aligned,,,,,,,,
+,1275,Japan Airlines,07/11/2019,,2019-12,2017,,755.0,725.0,728.0,712.0,697.0,682.0,667.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI assumes that JAL's jet fuel emissions and passenger traffic figures (which include codeshare tickets from FY2015/16 onwards) are reported on a consistent basis for each year. It is also assumed that the company's disclosed freight activity is expressed in metric tonnes.,Not Aligned,,,,,,,,
+,1116,Qantas,07/11/2019,,2019-12,2018,,662.0,651.0,651.0,636.0,622.0,602.0,583.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Not Aligned,,,,,,,,
+,1027,Chubu Electric Power,02/08/2019,,2019-09,2017,0.507,0.489,0.492,0.498,0.477,0.468,0.46,0.452,0.444,0.436,0.428,0.419,0.411,0.403,0.395,0.387,0.379,0.37,,,,,,,,,,,,,,,,,,,,,The company discloses a target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Paris Pledges,,,,,,,,
+,1307,Kyushu Elec Power,02/08/2019,,2019-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions to allow TPI to verify the carbon intensities, or any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.",No Disclosure,,,,,,,,
+,1300,Kansai Elec Power,02/08/2019,,2019-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company has not disclosed data on current emissions nor quantitative emissions reduction targets in a way which TPI can use to estimate current or future Carbon Performance.,No Disclosure,,,,,,,,
+,1023,China Petroleum & Chemical,12/07/2019,,2019-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate current or future Carbon Performance.",No Disclosure,,,,,,,,
+,1063,Enel,12/07/2019,,2019-09,2018,0.396,0.395,0.409,0.395,0.411,0.369,0.36,0.35,0.345,0.332,0.319,0.307,0.294,0.281,0.268,0.256,0.243,0.23,,,,,,,,,,,,,,,,,,,,,TPI has not made any further assumptions in order to project this company’s Carbon Performance.,2 Degrees,,,,,,,,
+,1310,Electric Power Development,02/08/2019,,2019-09,2017,,,0.666,0.667,0.672,0.652,0.632,0.612,0.591,0.571,0.551,0.531,0.511,0.491,0.471,0.45,0.43,0.41,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Not Aligned,,,,,,,,
+,1311,Chugoku,02/08/2019,,2019-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions to allow TPI to verify the carbon intensities, or any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.",No Disclosure,,,,,,,,
+,1239,Woodside Petroleum,12/07/2019,,2019-09,2018,,65.288,65.472,64.705,65.301,64.735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology.,Not Aligned,,,,,,,,
+,1031,CNOOC,12/07/2019,,2019-09,2018,,,,73.538,73.747,73.222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology.,Not Aligned,,,,,,,,
+,1146,Origin Energy,12/07/2019,,2019-09,2017,0.77,0.77,0.81,0.79,0.83,0.797,0.764,0.732,0.699,0.666,0.633,0.6,0.568,0.535,0.502,0.469,0.436,0.404,,,,,,,,,,,,,,,,,,,,,"The company has set targets to reduce its absolute emissions. To calculate this company’s targeted emissions intensity, TPI has assumed that: - The company’s regional electricity generation grows according to the regional electricity generation growth rate projected in the IEA’s Energy Technology Perspectives model ‘Reference Technology’ scenario.",Not Aligned,,,,,,,,
+,1147,Orsted,02/08/2019,,2019-09,2018,,,0.38,0.368,0.234,0.198,0.174,0.151,0.111,0.07,0.03,0.023,0.015,,,,,,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Below 2 Degrees,,,,,,,,
+,1313,PGE,12/07/2019,,2019-09,2018,0.98,0.98,0.96,0.95,0.93,0.88,0.865,0.85,0.836,0.822,0.808,0.794,0.78,,,,,,,,,,,,,,,,,,,,,,,,,,TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Not Aligned,,,,,,,,
+,1301,TEPCO,02/08/2019,,2019-09,2017,,,0.437,0.444,0.428,0.422,0.415,0.408,0.402,0.395,0.389,0.382,0.376,0.369,0.362,0.356,0.349,0.343,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Paris Pledges,,,,,,,,
+,1302,Terna,02/08/2019,,2019-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company’s activities lie outside the scope of TPI’s Carbon Performance assessment of this sector, hence the company is not assessed.",Not Assessed,,,,,,,,
+,1057,Ecopetrol,12/07/2019,,2019-09,2017,,,76.363,77.73,78.998,78.861,78.724,78.587,78.45,78.313,78.176,78.038,77.901,77.764,77.627,77.49,77.353,77.216,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company has set targets to reduce its absolute emissions. To calculate this company’s targeted emissions intensity, TPI has assumed that: The company’s externally sold energy products grow according to the regional or global primary energy supply growth rate projected in the IEA’s Energy Technology Perspectives model ‘Reference Technology’ scenario. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.",Not Aligned,,,,,,,,
+,1065,Eni,12/07/2019,,2019-09,2018,,65.493,64.475,64.549,64.958,64.887,64.607,64.326,64.046,63.766,63.486,63.205,62.925,62.645,62.365,62.084,61.804,61.524,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.",Not Aligned,,,,,,,,
+,1194,Equinor,12/07/2019,,2019-09,2018,,70.293,70.644,70.33,69.992,69.966,69.966,69.966,69.948,69.93,69.913,69.895,69.878,69.86,69.842,69.825,69.807,69.79,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.",Not Aligned,,,,,,,,
+,1108,Eneos (Oil & Gas),12/07/2019,,2019-09,2016,,83.564,83.494,83.083,82.596,82.109,81.622,81.136,80.649,80.162,79.675,79.188,78.701,78.214,77.727,77.24,76.753,76.266,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company has set targets to reduce its absolute emissions. To calculate this company’s targeted emissions intensity, TPI has assumed that: The company’s externally sold energy products grow according to the regional or global primary energy supply growth rate projected in the IEA’s Energy Technology Perspectives model ‘Reference Technology’ scenario. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.",Not Aligned,,,,,,,,
+,1145,OMV,12/07/2019,,2019-09,2018,,,,,75.22,73.415,73.332,73.249,73.166,73.083,73.0,72.917,72.834,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed an emissions intensity that TPI can use to assess current and/or future Carbon Performance. The carbon intensity has been (re-)calculated according to TPI methodology. The company’s target covers a subset of Scope 1, 2 and 3 (use of sold products) emissions. The emissions intensities of all emissions not covered by the target are assumed to remain constant from the level of the latest disclosure.",Not Aligned,,,,,,,,
+,1154,Petrochina,12/07/2019,,2019-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate current or future Carbon Performance.",No Disclosure,,,,,,,,
+,1304,Tohoku Elec Power,02/08/2019,,2019-09,2017,,,,0.497,0.499,0.486,0.474,0.461,0.448,0.436,0.423,0.411,0.398,0.386,0.373,0.36,0.348,0.335,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Paris Pledges,,,,,,,,
+,1294,AGL Energy,12/07/2019,,2019-09,2017,0.964,0.958,0.95,0.966,0.957,0.941,0.925,0.91,0.894,0.878,0.862,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Not Aligned,,,,,,,,
+,1312,China Resources Power,02/08/2019,,2019-09,2017,,,,,0.681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.",Not Aligned,,,,,,,,
+,1287,Chalco,12/12/2018,,2019-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.",No Disclosure,,,,,,,,
+,1270,China Southern,04/01/2019,,2019-02,2017,,114.0,112.0,112.0,108.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. The company has no quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.",Not Aligned,,,,,,,,
+,1269,ANA Group,04/01/2019,,2019-02,2017,,137.0,134.0,132.0,128.0,130.0,132.0,133.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Not Aligned,,,,,,,,
+,1267,Air China,04/01/2019,,2019-02,2017,,111.0,112.0,111.0,107.0,107.0,107.0,108.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,Not Aligned,,,,,,,,
+,1286,Alumina,19/12/2018,,2019-02,2017,21.27,20.7,19.9,19.41,17.06,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this company’s Carbon Performance. The company has not set targets to reduce its emissions intensity.
+Despite Alumina itself not setting targets, AWAC, of which Alumina owns 40%, does have targets in place.",Not Aligned,,,,,,,,
+,1290,Norsk Hydro,17/12/2018,,2019-02,2017,3.31,3.46,3.45,3.35,3.34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"TPI has not made any further assumptions in order to project this company’s Carbon Performance.
+Norsk Hydro has a net zero emissions target for 2020. TPI does not consider this target, as it includes avoided emissions.",Paris Pledges,,,,,,,,
+,1170,Rio Tinto (Aluminium),17/12/2018,,2019-02,2017,,5.71,5.18,4.8,4.59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Emissions from bauxite mining were assumed to be negligibly small compared to alumina refining and aluminium smelting emissions. All of the company's produced alumina is assumed to be smelted into aluminium by the company itself.
+Rio Tinto discloses emissions targets, but these refer to the company as a whole and not to aluminium activities specifically.",Not Aligned,,,,,,,,
+,1189,South32 (Aluminium),17/12/2018,,2019-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company has not disclosed sufficient data on current emissions, or any quantitative targets to reduce its emissions, which TPI can use to estimate future Carbon Performance.
+South32 discloses emissions data as well as targets, but these refer to the company as a whole and not to aluminium activities specifcially.",No Disclosure,,,,,,,,
+,1275,Japan Airlines,04/01/2019,,2019-02,2017,,140.0,132.0,134.0,134.0,131.0,128.0,125.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. It is assumed that JAL's jet fuel emissions and passenger traffic figures (which include codeshare tickets from FY2015/16 onwards) are reported on a consistent basis for each year.,Not Aligned,,,,,,,,
+,1116,Qantas,04/01/2019,,2019-02,2017,,104.0,101.0,101.0,98.0,95.0,92.0,89.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. TPI has not made any further assumptions in order to project this company’s Carbon Performance.,International Pledges,,,,,,,,
+,1009,Fiat Chrysler,12/10/2018,,2018-11,2016,174.0,182.0,170.0,176.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Fiat Chrysler has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1006,Ferrari,12/10/2018,,2018-11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Ferrari has not disclosed sufficient current emissions data nor any quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",No Disclosure,,,,,,,,
+,1002,Brilliance,12/10/2018,,2018-11,2017,174.0,171.0,168.0,161.0,152.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Brilliance has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1168,Lee & Man Paper Manufacturing,09/10/2018,,2018-11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Lee & Man Paper Manufacturing has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",No Disclosure,,,,,,,,
+,1080,Nissan,12/10/2018,,2018-11,2017,144.0,141.0,140.0,141.0,142.0,132.0,122.0,112.0,107.0,102.0,98.0,93.0,89.0,85.0,82.0,78.0,75.0,71.0,,,,,,,,,,,,,,,,,,,,,"Nissan has set targets to reduce its emissions intensity. For this company, TPI has assumed that:
+- Both tank-to-wheel and well-to-tank emissions fall by equal proportions in meeting the company’s well-to-wheel target.",2 Degrees (Shift-Improve),,,,,,,,
+,1178,Nine Dragons Paper Industries,09/10/2018,,2018-11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Nine Dragons Paper Industries has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",No Disclosure,,,,,,,,
+,1183,Nippon Paper Industries,09/10/2018,,2018-11,2017,1.23,1.21,1.21,1.19,1.11,1.1,1.1,1.09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Nippon Paper Industries has emissions reduction targets expressed in total emissions. To calculate an emissions intensity, TPI has assumed that:
- The company’s emissions reduction target applies in equal proportion to its emissions from pulp, paper and paperboard production as to emissions from other parts of the business.
-- The company’s future pulp, paper and paperboard production grows at the same rate as IEA projections.","Not Aligned",,,,,,,,
-,"1187","Oji Holdings","09/10/2018","2018-11","2016","0.523","0.517","0.493","0.485","0.482","0.478","0.475","0.471",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Oji Holdings has set targets to reduce its emissions intensity. TPI has not made any further assumptions in order to project this company’s carbon performance.","Paris Pledges",,,,,,,,
-,"1087","Subaru","12/10/2018","2018-11","2016","159.0","160.0","157.0","158.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Subaru has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1090","Suzuki","12/10/2018","2018-11","2016","115.0","113.0","111.0","109.0","108.0","107.0","106.0","105.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Suzuki has set targets to reduce its emissions intensity. TPI has not made any further assumptions in order to project this company’s carbon performance.","Paris Pledges",,,,,,,,
-,"1097","Toyota","12/10/2018","2018-11","2016","142.0","136.0","134.0","132.0","128.0","124.0","120.0","117.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Toyota has set targets to reduce its emissions intensity. TPI has not made any further assumptions in order to project this company’s carbon performance.","Not Aligned",,,,,,,,
-,"1077","Mitsubishi","12/10/2018","2018-11","2016","153.0","144.0","138.0","150.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Mitsubishi has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1076","Mazda","12/10/2018","2018-11","2016","143.0","138.0","137.0","137.0","133.0","129.0","125.0","121.0","118.0","114.0","110.0","106.0","102.0","98.0","94.0","90.0","86.0","82.0",,,,,,,,,,,,,,,,,,,,,"Mazda has set targets to reduce its emissions intensity. For this company, TPI has assumed that:
-- Both tank-to-wheel and well-to-tank emissions fall by equal proportions in meeting the company’s well-to-wheel target.","Paris Pledges",,,,,,,,
-,"1197","Shandong Chenming","09/10/2018","2018-11",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Shandong Chenming has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","No Disclosure",,,,,,,,
-,"1126","Daio Paper","09/10/2018","2018-11",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Daio Paper has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","No Disclosure",,,,,,,,
-,"1144","Hokuetsu","09/10/2018","2018-11","2017","0.485","0.431","0.426","0.446","0.468",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Hokuetsu has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Paris Pledges",,,,,,,,
-,"1052","Honda","12/10/2018","2018-11","2016","152.0","151.0","145.0","140.0","137.0","133.0","130.0","127.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Honda has set targets to reduce its emissions intensity. TPI has not made any further assumptions in order to project this company’s carbon performance.","Not Aligned",,,,,,,,
-,"1029","Geely","12/10/2018","2018-11","2016","151.0","149.0","146.0","125.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Geely has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1106","JFE Holdings","18/09/2018","2018-09","2016","2.07","2.06","2.08","2.03",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"JFE Holdings has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1092","Bluescope Steel","18/09/2018","2018-09","2017","2.11","2.1","2.02","1.82","1.67",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Bluescope Steel has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1040","Adelaide Brighton","18/09/2018","2018-09","2017","0.948","0.831","0.737","0.781","0.762",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adelaide Brighton has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1202","Taiheiyo Cement","18/09/2018","2018-09","2016","0.686","0.692","0.692","0.683","0.681","0.678","0.676","0.674","0.671","0.669","0.667","0.664","0.662",,,,,,,,,,,,,,,,,,,,,,,,,,"Taiheiyo Cement has set targets to reduce its emissions intensity. For this company, TPI has assumed that:
-● The base value could be calculated from historical reductions in the companies carbon intensity.","Not Aligned",,,,,,,,
-,"1198","Sumitomo Osaka Cement","18/09/2018","2018-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Sumitomo Osaka Cement has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","No Disclosure",,,,,,,,
-,"1024","China Resources Cement Holdings","18/09/2018","2018-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"China Resources Cement Holdings has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","No Disclosure",,,,,,,,
-,"1022","China National Building Materials","18/09/2018","2018-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"China National Building Materials has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","No Disclosure",,,,,,,,
-,"1265","Anhui Conch Cement","18/09/2018","2018-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Anhui Conch Cement has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","No Disclosure",,,,,,,,
-,"1134","Nisshin Steel","18/09/2018","2018-09","2016","2.11","2.17","2.18","2.17",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Nisshin Steel has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1007","Nippon Steel","18/09/2018","2018-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Nippon Steel & Sumitomo Metal has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","No Disclosure",,,,,,,,
-,"1209","Tenaris","18/09/2018","2018-09","2017","0.9","0.87","0.91","0.85","0.82",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Tenaris has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","2 Degrees",,,,,,,,
-,"1230","Voestalpine","18/09/2018","2018-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Voestalpine has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","No Disclosure",,,,,,,,
-,"1115","Boral","18/09/2018","2018-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Boral has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","No Disclosure",,,,,,,,
-,"1112","Kobe Steel","18/09/2018","2018-09","2016","2.351","2.35","2.34","2.342",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Kobe has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1063","Enel","02/07/2018","2018-07","2016","0.378","0.388","0.404","0.388","0.377","0.365","0.354","0.342","0.331","0.319","0.308","0.296","0.285","0.274","0.262","0.251","0.239","0.228",,,,,,,,,,,,,,,,,,,,,"Enel has set a target to reduce its emissions intensity. TPI has not adjusted this target.","Below 2 Degrees",,,,,,,,
-,"1146","Origin Energy","02/07/2018","2018-07","2016","0.779","0.746","0.688","0.698",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Origin Energy has not disclosed a quantitative target to reduce its emissions which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1147","Orsted","02/07/2018","2018-07","2017","0.272","0.227","0.162","0.176","0.111","0.1","0.09","0.079","0.058","0.037","0.016",,,,,,,,,,,,,,,,,,,,,,,,,,,,"Orsted has set a target to reduce its emissions intensity.
-● Emissions from electricity production will reduce in-line with a broader emissions target","Below 2 Degrees",,,,,,,,
-,"1294","AGL Energy","02/07/2018","2018-07","2016","0.958","0.958","0.948","0.968",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"AGL Energy has not disclosed a quantitative target to reduce its emissions which TPI can use to estimate future carbon performance.","Not Aligned",,,,,,,,
-,"1027","Chubu Electric Power","02/07/2018","2018-07","2016","0.507","0.489","0.492","0.498","0.489","0.48","0.471","0.462","0.453","0.444","0.434","0.425","0.416","0.407","0.398","0.389","0.38","0.371",,,,,,,,,,,,,,,,,,,,,"Chubu Electric Power has set a target to reduce its emissions intensity. TPI has adjusted this target by assuming that:
-● The historic ratio of electricity sold to electricity produced applies in the future","Paris Pledges",,,,,,,,
-,"1168","Lee & Man Paper Manufacturing","14/02/2018","2018-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"No Disclosure",,,,,,,,
-,"1144","Hokuetsu","14/02/2018","2018-02","2015","0.441","0.393","0.389",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2 Degrees",,,,,,,,
-,"1126","Daio Paper","14/02/2018","2018-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"No Disclosure",,,,,,,,
-,"1197","Shandong Chenming","14/02/2018","2018-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"No Disclosure",,,,,,,,
-,"1006","Ferrari","14/02/2018","2018-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"No Disclosure",,,,,,,,
-,"1183","Nippon Paper Industries","14/02/2018","2018-02","2016","1.211","1.19","1.191","1.189","1.169","1.148","1.127","1.088",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Not Aligned",,,,,,,,
-,"1002","Brilliance","14/02/2018","2018-02","2015","174.0","171.0","157.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Not Aligned",,,,,,,,
-,"1076","Mazda","14/02/2018","2018-02","2015","141.0","135.0","134.0","131.0","127.0","124.0","120.0","117.0","114.0","110.0","107.0","103.0","100.0","97.0","93.0","90.0","87.0","83.0",,,,,,,,,,,,,,,,,,,,,,"Paris Pledges",,,,,,,,
-,"1080","Nissan","14/02/2018","2018-02","2015","145.0","148.0","140.0","134.0","128.0","122.0","117.0","112.0","107.0","102.0","98.0","93.0","89.0","85.0","82.0","78.0","75.0","71.0",,,,,,,,,,,,,,,,,,,,,,"2 Degrees (Shift-Improve)",,,,,,,,
-,"1087","Subaru","14/02/2018","2018-02","2015","160.0","160.0","157.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Not Aligned",,,,,,,,
-,"1090","Suzuki","14/02/2018","2018-02","2015","114.0","111.0","109.0","108.0","108.0","107.0","106.0","105.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Paris Pledges",,,,,,,,
-,"1097","Toyota","14/02/2018","2018-02","2015","142.0","136.0","134.0","130.0","126.0","122.0","118.0","114.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Not Aligned",,,,,,,,
-,"1052","Honda","14/02/2018","2018-02","2015","153.0","149.0","144.0","141.0","137.0","134.0","130.0","127.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Not Aligned",,,,,,,,
-,"1029","Geely","14/02/2018","2018-02","2015","153.0","156.0","139.0","135.0","130.0","126.0","121.0","117.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Not Aligned",,,,,,,,
-,"1009","Fiat Chrysler","14/02/2018","2018-02","2015","176.0","182.0","170.0",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Not Aligned",,,,,,,,
-,"1187","Oji Holdings","14/02/2018","2018-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"No Disclosure",,,,,,,,
-,"1178","Nine Dragons Paper Industries","14/02/2018","2018-02",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"No Disclosure",,,,,,,,
-,"1230","Voestalpine","14/09/2017","2017-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"No Disclosure",,,,,,,,
-,"1106","JFE Holdings","14/09/2017","2017-09","2015","2.071","2.065","2.075",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Not Aligned",,,,,,,,
-,"1112","Kobe Steel","14/09/2017","2017-09","2015","2.323","2.366","2.353",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Not Aligned",,,,,,,,
-,"1007","Nippon Steel","14/09/2017","2017-09","2015","1.97","1.99","2.01",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Not Aligned",,,,,,,,
-,"1134","Nisshin Steel","14/09/2017","2017-09","2015","2.11","2.17","2.18",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Not Aligned",,,,,,,,
-,"1209","Tenaris","14/09/2017","2017-09","2015","0.9","0.87","0.9",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2 Degrees",,,,,,,,
-,"1040","Adelaide Brighton","14/09/2017","2017-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"No Disclosure",,,,,,,,
-,"1265","Anhui Conch Cement","14/09/2017","2017-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"No Disclosure",,,,,,,,
-,"1115","Boral","14/09/2017","2017-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"No Disclosure",,,,,,,,
-,"1091","Grupo Argos","14/09/2017","2017-09","2015",,"0.589","0.601","0.595","0.59","0.584","0.578","0.573","0.567","0.561","0.555","0.55","0.544",,,,,,,,,,,,,,,,,,,,,,,,,,,"Not Aligned",,,,,,,,
-,"1022","China National Building Materials","14/09/2017","2017-09",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"No Disclosure",,,,,,,,
-,"1092","Bluescope Steel","14/09/2017","2017-09","2015","2.12","2.05","1.82",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Paris Pledges",,,,,,,,
-,"1202","Taiheiyo Cement","14/09/2017","2017-09","2015","0.686","0.692","0.692","0.689","0.686","0.683","0.68","0.677","0.674","0.671","0.668","0.665","0.662",,,,,,,,,,,,,,,,,,,,,,,,,,,"Not Aligned",,,,,,,,
-,"1063","Enel","05/05/2017","2017-06","2015","0.392","0.396","0.41","0.398","0.386","0.373","0.361","0.349","0.337","0.326","0.314","0.302","0.291","0.279","0.267","0.256","0.244","0.233",,,,,,,,,,,,,,,,,,,,,,"2 Degrees",,,,,,,,
+- The company’s future pulp, paper and paperboard production grows at the same rate as IEA projections.",Not Aligned,,,,,,,,
+,1187,Oji Holdings,09/10/2018,,2018-11,2016,0.523,0.517,0.493,0.485,0.482,0.478,0.475,0.471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Oji Holdings has set targets to reduce its emissions intensity. TPI has not made any further assumptions in order to project this company’s carbon performance.,Paris Pledges,,,,,,,,
+,1087,Subaru,12/10/2018,,2018-11,2016,159.0,160.0,157.0,158.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Subaru has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1090,Suzuki,12/10/2018,,2018-11,2016,115.0,113.0,111.0,109.0,108.0,107.0,106.0,105.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Suzuki has set targets to reduce its emissions intensity. TPI has not made any further assumptions in order to project this company’s carbon performance.,Paris Pledges,,,,,,,,
+,1097,Toyota,12/10/2018,,2018-11,2016,142.0,136.0,134.0,132.0,128.0,124.0,120.0,117.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Toyota has set targets to reduce its emissions intensity. TPI has not made any further assumptions in order to project this company’s carbon performance.,Not Aligned,,,,,,,,
+,1077,Mitsubishi,12/10/2018,,2018-11,2016,153.0,144.0,138.0,150.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Mitsubishi has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1076,Mazda,12/10/2018,,2018-11,2016,143.0,138.0,137.0,137.0,133.0,129.0,125.0,121.0,118.0,114.0,110.0,106.0,102.0,98.0,94.0,90.0,86.0,82.0,,,,,,,,,,,,,,,,,,,,,"Mazda has set targets to reduce its emissions intensity. For this company, TPI has assumed that:
+- Both tank-to-wheel and well-to-tank emissions fall by equal proportions in meeting the company’s well-to-wheel target.",Paris Pledges,,,,,,,,
+,1197,Shandong Chenming,09/10/2018,,2018-11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Shandong Chenming has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",No Disclosure,,,,,,,,
+,1126,Daio Paper,09/10/2018,,2018-11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Daio Paper has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",No Disclosure,,,,,,,,
+,1144,Hokuetsu,09/10/2018,,2018-11,2017,0.485,0.431,0.426,0.446,0.468,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Hokuetsu has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Paris Pledges,,,,,,,,
+,1052,Honda,12/10/2018,,2018-11,2016,152.0,151.0,145.0,140.0,137.0,133.0,130.0,127.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Honda has set targets to reduce its emissions intensity. TPI has not made any further assumptions in order to project this company’s carbon performance.,Not Aligned,,,,,,,,
+,1029,Geely,12/10/2018,,2018-11,2016,151.0,149.0,146.0,125.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Geely has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1106,JFE Holdings,18/09/2018,,2018-09,2016,2.07,2.06,2.08,2.03,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"JFE Holdings has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1092,Bluescope Steel,18/09/2018,,2018-09,2017,2.11,2.1,2.02,1.82,1.67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Bluescope Steel has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1040,Adelaide Brighton,18/09/2018,,2018-09,2017,0.948,0.831,0.737,0.781,0.762,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adelaide Brighton has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1202,Taiheiyo Cement,18/09/2018,,2018-09,2016,0.686,0.692,0.692,0.683,0.681,0.678,0.676,0.674,0.671,0.669,0.667,0.664,0.662,,,,,,,,,,,,,,,,,,,,,,,,,,"Taiheiyo Cement has set targets to reduce its emissions intensity. For this company, TPI has assumed that:
+● The base value could be calculated from historical reductions in the companies carbon intensity.",Not Aligned,,,,,,,,
+,1198,Sumitomo Osaka Cement,18/09/2018,,2018-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Sumitomo Osaka Cement has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",No Disclosure,,,,,,,,
+,1024,China Resources Cement Holdings,18/09/2018,,2018-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"China Resources Cement Holdings has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",No Disclosure,,,,,,,,
+,1022,China National Building Materials,18/09/2018,,2018-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"China National Building Materials has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",No Disclosure,,,,,,,,
+,1265,Anhui Conch Cement,18/09/2018,,2018-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Anhui Conch Cement has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",No Disclosure,,,,,,,,
+,1134,Nisshin Steel,18/09/2018,,2018-09,2016,2.11,2.17,2.18,2.17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Nisshin Steel has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1007,Nippon Steel,18/09/2018,,2018-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Nippon Steel & Sumitomo Metal has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",No Disclosure,,,,,,,,
+,1209,Tenaris,18/09/2018,,2018-09,2017,0.9,0.87,0.91,0.85,0.82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Tenaris has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",2 Degrees,,,,,,,,
+,1230,Voestalpine,18/09/2018,,2018-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Voestalpine has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",No Disclosure,,,,,,,,
+,1115,Boral,18/09/2018,,2018-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Boral has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",No Disclosure,,,,,,,,
+,1112,Kobe Steel,18/09/2018,,2018-09,2016,2.351,2.35,2.34,2.342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Kobe has not disclosed quantitative targets to reduce its emissions, which TPI can use to estimate future carbon performance.",Not Aligned,,,,,,,,
+,1063,Enel,02/07/2018,,2018-07,2016,0.378,0.388,0.404,0.388,0.377,0.365,0.354,0.342,0.331,0.319,0.308,0.296,0.285,0.274,0.262,0.251,0.239,0.228,,,,,,,,,,,,,,,,,,,,,Enel has set a target to reduce its emissions intensity. TPI has not adjusted this target.,Below 2 Degrees,,,,,,,,
+,1146,Origin Energy,02/07/2018,,2018-07,2016,0.779,0.746,0.688,0.698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Origin Energy has not disclosed a quantitative target to reduce its emissions which TPI can use to estimate future carbon performance.,Not Aligned,,,,,,,,
+,1147,Orsted,02/07/2018,,2018-07,2017,0.272,0.227,0.162,0.176,0.111,0.1,0.09,0.079,0.058,0.037,0.016,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Orsted has set a target to reduce its emissions intensity.
+● Emissions from electricity production will reduce in-line with a broader emissions target",Below 2 Degrees,,,,,,,,
+,1294,AGL Energy,02/07/2018,,2018-07,2016,0.958,0.958,0.948,0.968,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,AGL Energy has not disclosed a quantitative target to reduce its emissions which TPI can use to estimate future carbon performance.,Not Aligned,,,,,,,,
+,1027,Chubu Electric Power,02/07/2018,,2018-07,2016,0.507,0.489,0.492,0.498,0.489,0.48,0.471,0.462,0.453,0.444,0.434,0.425,0.416,0.407,0.398,0.389,0.38,0.371,,,,,,,,,,,,,,,,,,,,,"Chubu Electric Power has set a target to reduce its emissions intensity. TPI has adjusted this target by assuming that:
+● The historic ratio of electricity sold to electricity produced applies in the future",Paris Pledges,,,,,,,,
+,1168,Lee & Man Paper Manufacturing,14/02/2018,,2018-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,No Disclosure,,,,,,,,
+,1144,Hokuetsu,14/02/2018,,2018-02,2015,0.441,0.393,0.389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2 Degrees,,,,,,,,
+,1126,Daio Paper,14/02/2018,,2018-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,No Disclosure,,,,,,,,
+,1197,Shandong Chenming,14/02/2018,,2018-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,No Disclosure,,,,,,,,
+,1006,Ferrari,14/02/2018,,2018-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,No Disclosure,,,,,,,,
+,1183,Nippon Paper Industries,14/02/2018,,2018-02,2016,1.211,1.19,1.191,1.189,1.169,1.148,1.127,1.088,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not Aligned,,,,,,,,
+,1002,Brilliance,14/02/2018,,2018-02,2015,174.0,171.0,157.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not Aligned,,,,,,,,
+,1076,Mazda,14/02/2018,,2018-02,2015,141.0,135.0,134.0,131.0,127.0,124.0,120.0,117.0,114.0,110.0,107.0,103.0,100.0,97.0,93.0,90.0,87.0,83.0,,,,,,,,,,,,,,,,,,,,,,Paris Pledges,,,,,,,,
+,1080,Nissan,14/02/2018,,2018-02,2015,145.0,148.0,140.0,134.0,128.0,122.0,117.0,112.0,107.0,102.0,98.0,93.0,89.0,85.0,82.0,78.0,75.0,71.0,,,,,,,,,,,,,,,,,,,,,,2 Degrees (Shift-Improve),,,,,,,,
+,1087,Subaru,14/02/2018,,2018-02,2015,160.0,160.0,157.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not Aligned,,,,,,,,
+,1090,Suzuki,14/02/2018,,2018-02,2015,114.0,111.0,109.0,108.0,108.0,107.0,106.0,105.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Paris Pledges,,,,,,,,
+,1097,Toyota,14/02/2018,,2018-02,2015,142.0,136.0,134.0,130.0,126.0,122.0,118.0,114.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not Aligned,,,,,,,,
+,1052,Honda,14/02/2018,,2018-02,2015,153.0,149.0,144.0,141.0,137.0,134.0,130.0,127.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not Aligned,,,,,,,,
+,1029,Geely,14/02/2018,,2018-02,2015,153.0,156.0,139.0,135.0,130.0,126.0,121.0,117.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not Aligned,,,,,,,,
+,1009,Fiat Chrysler,14/02/2018,,2018-02,2015,176.0,182.0,170.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not Aligned,,,,,,,,
+,1187,Oji Holdings,14/02/2018,,2018-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,No Disclosure,,,,,,,,
+,1178,Nine Dragons Paper Industries,14/02/2018,,2018-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,No Disclosure,,,,,,,,
+,1230,Voestalpine,14/09/2017,,2017-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,No Disclosure,,,,,,,,
+,1106,JFE Holdings,14/09/2017,,2017-09,2015,2.071,2.065,2.075,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not Aligned,,,,,,,,
+,1112,Kobe Steel,14/09/2017,,2017-09,2015,2.323,2.366,2.353,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not Aligned,,,,,,,,
+,1007,Nippon Steel,14/09/2017,,2017-09,2015,1.97,1.99,2.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not Aligned,,,,,,,,
+,1134,Nisshin Steel,14/09/2017,,2017-09,2015,2.11,2.17,2.18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not Aligned,,,,,,,,
+,1209,Tenaris,14/09/2017,,2017-09,2015,0.9,0.87,0.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2 Degrees,,,,,,,,
+,1040,Adelaide Brighton,14/09/2017,,2017-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,No Disclosure,,,,,,,,
+,1265,Anhui Conch Cement,14/09/2017,,2017-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,No Disclosure,,,,,,,,
+,1115,Boral,14/09/2017,,2017-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,No Disclosure,,,,,,,,
+,1091,Grupo Argos,14/09/2017,,2017-09,2015,,0.589,0.601,0.595,0.59,0.584,0.578,0.573,0.567,0.561,0.555,0.55,0.544,,,,,,,,,,,,,,,,,,,,,,,,,,,Not Aligned,,,,,,,,
+,1022,China National Building Materials,14/09/2017,,2017-09,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,No Disclosure,,,,,,,,
+,1092,Bluescope Steel,14/09/2017,,2017-09,2015,2.12,2.05,1.82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Paris Pledges,,,,,,,,
+,1202,Taiheiyo Cement,14/09/2017,,2017-09,2015,0.686,0.692,0.692,0.689,0.686,0.683,0.68,0.677,0.674,0.671,0.668,0.665,0.662,,,,,,,,,,,,,,,,,,,,,,,,,,,Not Aligned,,,,,,,,
+,1063,Enel,05/05/2017,,2017-06,2015,0.392,0.396,0.41,0.398,0.386,0.373,0.361,0.349,0.337,0.326,0.314,0.302,0.291,0.279,0.267,0.256,0.244,0.233,,,,,,,,,,,,,,,,,,,,,,2 Degrees,,,,,,,,
+,1267,Air China,23/10/2020,new,2020-12,2019,,845.0,844.0,807.0,814.0,814.0,863.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The company discloses an emissions intensity and target using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology.,Not aligned,2 Degrees (Shift-Improve),International Pledges,Europe,2 Degrees (Shift-Improve),International Pledges,International Pledges,,
+,1269,ANA Group,23/10/2020,new,2020-12,2019,,890.0,908.0,870.0,844.0,842.0,869.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"The company discloses an emissions intensity using an activity measure and/or emissions figure that is inconsistent with TPI’s methodology for this sector. The carbon intensity has been recalculated according to TPI methodology. The company has set targets to reduce its emissions intensity, but they could not be included in this assessment as it was not possible to make them consistent with TPI’s methodology.",Not aligned,,,,,,,2 Degrees (Shift-Improve),2 Degrees (Shift-Improve)
diff --git a/db/seeds/tpi/company-cp-benchmarks.csv b/db/seeds/tpi/company-cp-benchmarks.csv
index 5f1a7d51a..5080203d3 100644
--- a/db/seeds/tpi/company-cp-benchmarks.csv
+++ b/db/seeds/tpi/company-cp-benchmarks.csv
@@ -1,78 +1,78 @@
-"Id","Sector","Release date","Scenario","2013","2014","2015","2016","2017","2018","2019","2020","2021","2022","2023","2024","2025","2026","2027","2028","2029","2030","2031","2032","2033","2034","2035","2036","2037","2038","2039","2040","2041","2042","2043","2044","2045","2046","2047","2048","2049","2050"
-,"Airlines","2020-12","2 Degrees (High Efficiency)",,"1032.0","1001.0","970.0","938.0","907.0","876.0","845.0","814.0","782.0","751.0","720.0","689.0","661.0","632.0","604.0","575.0","547.0","522.0","497.0","472.0","447.0","423.0","403.0","383.0","364.0","344.0","324.0","308.0","292.0","276.0","260.0","244.0","234.0","223.0","213.0","202.0","192.0"
-,"Airlines","2020-12","2 Degrees (Shift-Improve)",,"1032.0","1006.0","980.0","954.0","928.0","903.0","877.0","851.0","825.0","799.0","773.0","747.0","722.0","696.0","671.0","645.0","620.0","595.0","571.0","546.0","522.0","497.0","476.0","455.0","435.0","414.0","393.0","375.0","357.0","339.0","320.0","302.0","290.0","279.0","267.0","255.0","243.0"
-,"Airlines","2020-12","International Pledges",,"1032.0","1012.0","992.0","972.0","952.0","933.0","913.0","893.0","873.0","853.0","833.0","814.0","797.0","780.0","764.0","747.0","730.0","715.0","699.0","683.0","667.0","652.0","635.0","619.0","602.0","586.0","569.0","554.0","539.0","524.0","509.0","494.0","480.0","467.0","453.0","440.0","426.0"
-,"Autos","2020-12","2 Degrees (High Efficiency)","147.0","145.0","143.0","137.0","131.0","125.0","119.0","113.0","104.0","95.0","86.0","77.0","68.0","62.0","57.0","51.0","46.0","40.0","37.0","34.0","31.0","27.0","24.0","22.0","21.0","19.0","17.0","15.0","14.0","13.0","12.0","11.0","10.0","9.0","8.0","8.0","7.0","6.0"
-,"Autos","2020-12","2 Degrees (Shift-Improve)","147.0","145.0","143.0","137.0","131.0","125.0","119.0","113.0","109.0","105.0","102.0","98.0","94.0","91.0","88.0","84.0","81.0","77.0","74.0","72.0","69.0","67.0","64.0","63.0","61.0","59.0","58.0","56.0","55.0","54.0","52.0","51.0","50.0","49.0","47.0","46.0","45.0","43.0"
-,"Autos","2020-12","Paris Pledges","147.0","145.0","143.0","138.0","133.0","128.0","123.0","117.0","116.0","114.0","112.0","111.0","109.0","108.0","107.0","106.0","105.0","104.0","103.0","102.0","101.0","100.0","100.0","99.0","98.0","97.0","96.0","95.0","94.0","93.0","92.0","91.0","91.0","90.0","89.0","88.0","87.0","86.0"
-,"Shipping","2020-12","Below 2 Degrees",,,"10.57","10.34","10.12","9.89","9.67","9.44","9.22","8.99","8.77","8.54","8.32","8.09","7.87","7.64","7.42","7.19","6.91","6.63","6.35","6.06","5.78","5.5","5.22","4.94","4.65","4.37","4.09","3.81","3.53","3.24","2.96","2.68","2.4","2.12","1.84","1.55"
-,"Shipping","2020-12","2 Degrees",,,"10.57","10.38","10.19","10.01","9.82","9.63","9.45","9.26","9.07","8.89","8.7","8.51","8.33","8.14","7.95","7.77","7.49","7.2","6.92","6.64","6.36","6.08","5.8","5.52","5.24","4.96","4.67","4.39","4.11","3.83","3.55","3.27","2.99","2.71","2.42","2.14"
-,"Shipping","2020-12","International Pledges",,,"10.57","10.5","10.44","10.37","10.31","10.24","10.18","10.12","10.05","9.99","9.92","9.86","9.79","9.73","9.66","9.6","9.52","9.44","9.37","9.29","9.21","9.14","9.06","8.98","8.91","8.83","8.75","8.68","8.6","8.52","8.45","8.37","8.29","8.22","8.14","8.06"
-,"Electricity Utilities","2020-10","Paris Pledges","0.586","0.572","0.56","0.548","0.536","0.524","0.512","0.499","0.487","0.475","0.463","0.451","0.439","0.432","0.424","0.417","0.409","0.402","0.396","0.391","0.386","0.38","0.375","0.37","0.366","0.361","0.357","0.352","0.348","0.343","0.339","0.335","0.33","0.326","0.322","0.317","0.313","0.309"
-,"Electricity Utilities","2020-10","2 Degrees","0.586","0.572","0.553","0.534","0.514","0.495","0.476","0.457","0.438","0.418","0.399","0.38","0.361","0.338","0.315","0.291","0.268","0.245","0.226","0.207","0.189","0.17","0.151","0.14","0.129","0.119","0.108","0.097","0.089","0.081","0.072","0.064","0.056","0.052","0.048","0.044","0.04","0.036"
-,"Electricity Utilities","2020-10","Below 2 Degrees","0.586","0.572","0.55","0.528","0.506","0.484","0.462","0.44","0.418","0.396","0.374","0.352","0.33","0.31","0.29","0.269","0.249","0.229","0.211","0.194","0.176","0.158","0.141","0.127","0.113","0.099","0.086","0.072","0.062","0.051","0.041","0.031","0.02","0.015","0.009","0.003","-0.002","-0.008"
-,"Diversified Mining","2020-10","Paris Pledges",,"61.99","61.72","61.4","61.47","61.08","60.76","60.45","59.99","59.53","59.07","58.61","58.15","57.69","57.23","56.77","56.31","55.85","55.5","55.16","54.82","54.47","54.13","53.85","53.58","53.31","53.03","52.76","52.5","52.24","51.99","51.73","51.48","51.15","50.83","50.51","50.19","49.86"
-,"Diversified Mining","2020-10","2 Degrees",,"61.99","61.49","60.92","60.78","60.31","59.76","59.19","58.41","57.62","56.84","56.05","55.27","53.93","52.6","51.26","49.92","48.59","47.22","45.86","44.49","43.13","41.76","40.58","39.4","38.23","37.05","35.87","34.79","33.72","32.64","31.57","30.49","29.7","28.9","28.1","27.31","26.51"
-,"Diversified Mining","2020-10","Below 2 Degrees",,"61.99","61.38","60.69","60.44","59.76","59.1","58.42","57.41","56.41","55.4","54.4","53.4","51.94","50.48","49.03","47.57","46.12","44.62","43.12","41.63","40.13","38.63","36.95","35.26","33.58","31.89","30.2","28.46","26.71","24.96","23.21","21.46","20.06","18.65","17.25","15.85","14.44"
-,"Oil & Gas","2020-10","Paris Pledges",,"65.57","65.09","64.61","64.13","63.66","63.18","62.7","62.23","61.75","61.27","60.79","60.32","59.9","59.48","59.06","58.64","58.22","57.91","57.61","57.3","57.0","56.69","56.38","56.06","55.74","55.43","55.11","54.82","54.53","54.23","53.94","53.65","53.39","53.14","52.89","52.63","52.38"
-,"Oil & Gas","2020-10","2 Degrees",,"65.57","64.69","63.81","62.93","62.05","61.17","60.29","59.41","58.53","57.65","56.77","55.9","54.36","52.82","51.28","49.74","48.21","46.58","44.95","43.33","41.7","40.08","38.75","37.42","36.09","34.76","33.43","32.2","30.97","29.74","28.51","27.27","26.16","25.05","23.93","22.82","21.7"
-,"Oil & Gas","2020-10","Below 2 Degrees",,"65.57","64.43","63.29","62.15","61.01","59.87","58.74","57.6","56.46","55.32","54.18","53.04","51.13","49.21","47.29","45.37","43.45","41.55","39.65","37.75","35.85","33.95","32.04","30.14","28.23","26.32","24.41","22.73","21.04","19.36","17.67","15.98","14.78","13.58","12.38","11.18","9.98"
-,"Paper","2020-02","Paris Pledges",,"0.71","0.705","0.699","0.694","0.69","0.685","0.681","0.676","0.673","0.669","0.665","0.662","0.658","0.655","0.652","0.649","0.646",,,,,,,,,,,,,,,,,,,,
-,"Cement","2020-02","2 Degrees",,"0.534","0.535","0.535","0.535","0.536","0.536","0.537","0.537","0.538","0.538","0.538","0.539","0.53","0.522","0.514","0.506","0.497",,,,,,,,,,,,,,,,,,,,
-,"Cement","2020-02","Paris Pledges",,"0.534","0.537","0.539","0.542","0.544","0.546","0.549","0.551","0.553","0.556","0.558","0.56","0.556","0.552","0.548","0.544","0.54",,,,,,,,,,,,,,,,,,,,
-,"Aluminium","2020-02","Below 2 Degrees",,"6.342","6.13","5.917","5.705","5.492","5.279","5.067","4.854","4.641","4.429","4.216","4.004","3.817","3.63","3.443","3.256","3.069",,,,,,,,,,,,,,,,,,,,
-,"Aluminium","2020-02","2 Degrees",,"6.342","6.161","5.98","5.799","5.618","5.437","5.255","5.074","4.893","4.712","4.531","4.349","4.108","3.866","3.625","3.383","3.142",,,,,,,,,,,,,,,,,,,,
-,"Aluminium","2020-02","Paris Pledges",,"6.342","6.221","6.1","5.978","5.857","5.736","5.614","5.493","5.371","5.25","5.129","5.007","4.877","4.746","4.615","4.484","4.354",,,,,,,,,,,,,,,,,,,,
-,"Steel","2020-02","Below 2 Degrees",,"1.669","1.612","1.556","1.499","1.442","1.386","1.329","1.273","1.216","1.16","1.103","1.047","1.001","0.954","0.908","0.861","0.815",,,,,,,,,,,,,,,,,,,,
-,"Steel","2020-02","2 Degrees",,"1.669","1.64","1.612","1.583","1.555","1.528","1.5","1.473","1.446","1.42","1.394","1.368","1.318","1.27","1.222","1.175","1.129",,,,,,,,,,,,,,,,,,,,
-,"Steel","2020-02","Paris Pledges",,"1.669","1.668","1.666","1.664","1.663","1.662","1.66","1.659","1.657","1.656","1.654","1.653","1.651","1.648","1.646","1.644","1.642",,,,,,,,,,,,,,,,,,,,
-,"Paper","2020-02","Below 2 Degrees",,"0.71","0.681","0.653","0.626","0.599","0.573","0.548","0.523","0.499","0.475","0.452","0.429","0.413","0.398","0.383","0.369","0.354",,,,,,,,,,,,,,,,,,,,
-,"Paper","2020-02","2 Degrees",,"0.71","0.689","0.668","0.648","0.628","0.609","0.591","0.573","0.555","0.538","0.521","0.505","0.485","0.465","0.446","0.428","0.41",,,,,,,,,,,,,,,,,,,,
-,"Cement","2020-02","Below 2 Degrees",,"0.534","0.528","0.522","0.516","0.51","0.504","0.498","0.493","0.487","0.482","0.476","0.471","0.458","0.446","0.433","0.421","0.408",,,,,,,,,,,,,,,,,,,,
-,"Autos","2019-12","2 Degrees (High Efficiency)","147.0","145.0","143.0","139.0","134.0","129.0","124.0","119.0","109.0","100.0","90.0","81.0","71.0","65.0","59.0","53.0","47.0","41.0",,,,,,,,,,,,,,,,,,,,
-,"Autos","2019-12","2 Degrees (Shift-Improve)","147.0","145.0","143.0","139.0","134.0","129.0","124.0","119.0","115.0","111.0","107.0","103.0","99.0","95.0","91.0","87.0","83.0","80.0",,,,,,,,,,,,,,,,,,,,
-,"Autos","2019-12","Paris Pledges","147.0","145.0","143.0","140.0","136.0","132.0","128.0","123.0","122.0","120.0","118.0","116.0","115.0","114.0","113.0","111.0","110.0","109.0",,,,,,,,,,,,,,,,,,,,
-,"Airlines","2019-12","2 Degrees (High Efficiency)",,"709.0","688.0","667.0","646.0","625.0","604.0","582.0","561.0","540.0","519.0","498.0","477.0","457.0","436.0","416.0","396.0","375.0",,,,,,,,,,,,,,,,,,,,
-,"Airlines","2019-12","2 Degrees (Shift-Improve)",,"709.0","692.0","675.0","658.0","641.0","624.0","607.0","590.0","573.0","556.0","539.0","522.0","503.0","485.0","467.0","448.0","430.0",,,,,,,,,,,,,,,,,,,,
-,"Airlines","2019-12","International Pledges",,"709.0","696.0","682.0","669.0","656.0","643.0","629.0","616.0","603.0","590.0","576.0","563.0","551.0","538.0","526.0","514.0","501.0",,,,,,,,,,,,,,,,,,,,
-,"Shipping","2019-12","Below 2 Degrees",,,"10.6","10.3","10.1","9.9","9.7","9.4","9.2","9.0","8.8","8.5","8.3","8.1","7.9","7.6","7.4","7.2",,,,,,,,,,,,,,,,,,,,
-,"Shipping","2019-12","2 Degrees",,,"10.6","10.4","10.2","10.0","9.8","9.6","9.4","9.3","9.1","8.9","8.7","8.5","8.3","8.1","8.0","7.8",,,,,,,,,,,,,,,,,,,,
-,"Shipping","2019-12","International Pledges",,,"10.6","10.5","10.4","10.4","10.3","10.2","10.2","10.1","10.1","10.0","9.9","9.9","9.8","9.7","9.7","9.6",,,,,,,,,,,,,,,,,,,,
-,"Electricity Utilities","2019-09","Paris Pledges","0.586","0.572","0.557","0.543","0.529","0.516","0.503","0.492","0.48","0.469","0.459","0.449","0.439","0.431","0.423","0.416","0.409","0.402",,,,,,,,,,,,,,,,,,,,
-,"Electricity Utilities","2019-09","2 Degrees","0.586","0.572","0.549","0.527","0.506","0.486","0.466","0.447","0.428","0.411","0.394","0.377","0.361","0.336","0.312","0.289","0.267","0.245",,,,,,,,,,,,,,,,,,,,
-,"Electricity Utilities","2019-09","Below 2 Degrees","0.586","0.572","0.546","0.521","0.497","0.474","0.452","0.43","0.409","0.388","0.368","0.349","0.33","0.308","0.287","0.267","0.248","0.229",,,,,,,,,,,,,,,,,,,,
-,"Oil & Gas","2019-09","Paris Pledges",,"61.6","61.1","60.6","60.2","59.7","59.3","58.8","58.3","57.9","57.4","56.9","56.5","56.1","55.7","55.3","54.8","54.4","54.2","53.9","53.6","53.3","53.0","52.7","52.4","52.1","51.8","51.6","51.3","51.0","50.7","50.5","50.2","49.9","49.7","49.4","49.1","48.9"
-,"Oil & Gas","2019-09","2 Degrees",,"61.6","60.7","59.8","59.0","58.1","57.2","56.3","55.5","54.6","53.7","52.8","52.0","50.4","48.9","47.4","45.9","44.3","42.8","41.3","39.7","38.2","36.6","35.4","34.1","32.8","31.5","30.2","29.1","27.9","26.7","25.5","24.4","23.6","22.8","21.9","21.1","20.3"
-,"Oil & Gas","2019-09","Below 2 Degrees",,"61.6","60.4","59.2","58.1","56.9","55.7","54.6","53.4","52.3","51.1","49.9","48.8","46.9","45.0","43.2","41.3","39.5","37.6","35.8","34.0","32.1","30.3","28.5","26.7","24.9","23.1","21.3","19.8","18.2","16.7","15.1","13.6","12.4","11.3","10.2","9.0","7.9"
-,"Aluminium","2019-02","Below 2 Degrees",,"6.342","6.13","5.917","5.705","5.492","5.279","5.067","4.854","4.641","4.429","4.216","4.004","3.817","3.63","3.443","3.256","3.069",,,,,,,,,,,,,,,,,,,,
-,"Airlines","2019-02","International Pledges",,"129.0","126.0","124.0","122.0","120.0","117.0","115.0","113.0","110.0","108.0","106.0","104.0","101.0","99.0","97.0","95.0","92.0",,,,,,,,,,,,,,,,,,,,
-,"Airlines","2019-02","2 Degrees (Shift-Improve)",,"129.0","126.0","123.0","120.0","117.0","114.0","111.0","108.0","105.0","102.0","99.0","96.0","93.0","89.0","86.0","83.0","79.0",,,,,,,,,,,,,,,,,,,,
-,"Airlines","2019-02","2 Degrees (High Efficiency)",,"129.0","125.0","121.0","118.0","114.0","110.0","106.0","103.0","99.0","95.0","91.0","88.0","84.0","80.0","77.0","73.0","69.0",,,,,,,,,,,,,,,,,,,,
-,"Aluminium","2019-02","Paris Pledges",,"6.342","6.221","6.1","5.978","5.857","5.736","5.614","5.493","5.371","5.25","5.129","5.007","4.877","4.746","4.615","4.484","4.354",,,,,,,,,,,,,,,,,,,,
-,"Aluminium","2019-02","2 Degrees",,"6.342","6.161","5.98","5.799","5.618","5.437","5.255","5.074","4.893","4.712","4.531","4.349","4.108","3.866","3.625","3.383","3.142",,,,,,,,,,,,,,,,,,,,
-,"Paper","2018-11","2 Degrees",,"0.766","0.743","0.721","0.699","0.678","0.658","0.638","0.618","0.599","0.58","0.562","0.544","0.523","0.502","0.482","0.462","0.442",,,,,,,,,,,,,,,,,,,,
-,"Autos","2018-11","Paris Pledges","147.0","145.0","143.0","140.0","136.0","132.0","128.0","123.0","122.0","120.0","118.0","116.0","115.0","114.0","113.0","111.0","110.0","109.0",,,,,,,,,,,,,,,,,,,,
-,"Autos","2018-11","2 Degrees (Shift-Improve)","147.0","145.0","143.0","139.0","134.0","129.0","124.0","119.0","115.0","111.0","107.0","103.0","99.0","95.0","91.0","87.0","83.0","80.0",,,,,,,,,,,,,,,,,,,,
-,"Autos","2018-11","2 Degrees (High Efficiency)","147.0","145.0","143.0","139.0","134.0","129.0","124.0","119.0","109.0","100.0","90.0","81.0","71.0","65.0","59.0","53.0","47.0","41.0",,,,,,,,,,,,,,,,,,,,
-,"Paper","2018-11","Paris Pledges",,"0.766","0.76","0.755","0.749","0.744","0.739","0.734","0.73","0.726","0.722","0.718","0.714","0.71","0.707","0.703","0.7","0.697",,,,,,,,,,,,,,,,,,,,
-,"Paper","2018-11","Below 2 Degrees",,"0.766","0.735","0.705","0.676","0.647","0.619","0.591","0.564","0.538","0.513","0.488","0.463","0.446","0.429","0.413","0.398","0.382",,,,,,,,,,,,,,,,,,,,
-,"Cement","2018-09","Paris Pledges",,"0.534","0.537","0.539","0.542","0.544","0.546","0.549","0.551","0.553","0.556","0.558","0.56","0.556","0.552","0.548","0.544","0.54",,,,,,,,,,,,,,,,,,,,
-,"Cement","2018-09","Below 2 Degrees",,"0.534","0.528","0.522","0.516","0.51","0.504","0.498","0.493","0.487","0.482","0.476","0.471","0.458","0.446","0.433","0.421","0.408",,,,,,,,,,,,,,,,,,,,
-,"Cement","2018-09","2 Degrees",,"0.534","0.535","0.535","0.535","0.536","0.536","0.537","0.537","0.538","0.538","0.538","0.539","0.53","0.522","0.514","0.506","0.497",,,,,,,,,,,,,,,,,,,,
-,"Steel","2018-09","Below 2 Degrees",,"1.669","1.612","1.556","1.499","1.442","1.386","1.329","1.273","1.216","1.16","1.103","1.047","1.001","0.954","0.908","0.861","0.815",,,,,,,,,,,,,,,,,,,,
-,"Steel","2018-09","2 Degrees",,"1.669","1.64","1.612","1.583","1.555","1.528","1.5","1.473","1.446","1.42","1.394","1.368","1.318","1.27","1.222","1.175","1.129",,,,,,,,,,,,,,,,,,,,
-,"Steel","2018-09","Paris Pledges",,"1.669","1.668","1.666","1.664","1.663","1.662","1.66","1.659","1.657","1.656","1.654","1.653","1.651","1.648","1.646","1.644","1.642",,,,,,,,,,,,,,,,,,,,
-,"Electricity Utilities","2018-07","2 Degrees","0.586","0.572","0.549","0.527","0.506","0.486","0.466","0.447","0.428","0.411","0.394","0.377","0.361","0.336","0.312","0.289","0.267","0.245",,,,,,,,,,,,,,,,,,,,
-,"Electricity Utilities","2018-07","Paris Pledges","0.586","0.572","0.557","0.543","0.529","0.516","0.503","0.492","0.48","0.469","0.459","0.449","0.439","0.431","0.423","0.416","0.409","0.402",,,,,,,,,,,,,,,,,,,,
-,"Electricity Utilities","2018-07","Below 2 Degrees","0.586","0.572","0.546","0.521","0.497","0.474","0.452","0.43","0.409","0.388","0.368","0.349","0.33","0.308","0.287","0.267","0.248","0.229",,,,,,,,,,,,,,,,,,,,
-,"Autos","2018-02","Paris Pledges","147.0","145.0","143.0","140.0","136.0","132.0","128.0","123.0","122.0","120.0","118.0","116.0","115.0","114.0","113.0","111.0","110.0","109.0",,,,,,,,,,,,,,,,,,,,
-,"Autos","2018-02","2 Degrees (Shift-Improve)","147.0","145.0","143.0","139.0","134.0","129.0","124.0","119.0","115.0","111.0","107.0","103.0","99.0","95.0","91.0","87.0","83.0","80.0",,,,,,,,,,,,,,,,,,,,
-,"Autos","2018-02","2 Degrees (High Efficiency)","147.0","145.0","143.0","139.0","134.0","129.0","124.0","119.0","109.0","100.0","90.0","81.0","71.0","65.0","59.0","53.0","47.0","41.0",,,,,,,,,,,,,,,,,,,,
-,"Paper","2018-02","Paris Pledges",,"0.697","0.691","0.686","0.681","0.676","0.671","0.667","0.663","0.659","0.655","0.652","0.648","0.645","0.642","0.639","0.636","0.634",,,,,,,,,,,,,,,,,,,,
-,"Paper","2018-02","2 Degrees",,"0.697","0.676","0.656","0.636","0.617","0.598","0.58","0.562","0.544","0.528","0.511","0.495","0.475","0.457","0.438","0.42","0.403",,,,,,,,,,,,,,,,,,,,
-,"Cement","2017-11","Paris Pledges","0.599","0.6","0.6","0.601","0.602","0.602","0.603","0.603","0.598","0.594","0.589","0.584","0.58","0.577","0.574","0.571","0.568","0.565",,,,,,,,,,,,,,,,,,,,
-,"Steel","2017-11","Paris Pledges","2.125","2.131","2.136","2.142","2.147","2.153","2.159","2.164","2.14","2.115","2.091","2.067","2.042","2.019","1.995","1.971","1.947","1.923",,,,,,,,,,,,,,,,,,,,
-,"Steel","2017-11","2 Degrees","2.125","2.104","2.083","2.063","2.042","2.021","2.0","1.98","1.918","1.856","1.795","1.733","1.672","1.592","1.513","1.434","1.355","1.275",,,,,,,,,,,,,,,,,,,,
-,"Cement","2017-11","2 Degrees","0.599","0.598","0.596","0.595","0.593","0.592","0.59","0.589","0.581","0.574","0.567","0.56","0.553","0.547","0.542","0.536","0.53","0.524",,,,,,,,,,,,,,,,,,,,
-,"Electricity Utilities","2017-07","2 Degrees","0.586","0.572","0.557","0.543","0.528","0.514","0.499","0.484","0.465","0.445","0.426","0.407","0.387","0.366","0.345","0.323","0.302","0.281",,,,,,,,,,,,,,,,,,,,
-,"Electricity Utilities","2017-07","Paris Pledges","0.586","0.574","0.561","0.549","0.536","0.524","0.511","0.498","0.491","0.484","0.476","0.469","0.462","0.453","0.445","0.437","0.428","0.42",,,,,,,,,,,,,,,,,,,,
+Id,Sector,Release date,Scenario,Region,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050
+,Airlines,2020-12,2 Degrees (High Efficiency),Global,,1032.0,1001.0,970.0,938.0,907.0,876.0,845.0,814.0,782.0,751.0,720.0,689.0,661.0,632.0,604.0,575.0,547.0,522.0,497.0,472.0,447.0,423.0,403.0,383.0,364.0,344.0,324.0,308.0,292.0,276.0,260.0,244.0,234.0,223.0,213.0,202.0,192.0
+,Airlines,2020-12,2 Degrees (Shift-Improve),Global,,1032.0,1006.0,980.0,954.0,928.0,903.0,877.0,851.0,825.0,799.0,773.0,747.0,722.0,696.0,671.0,645.0,620.0,595.0,571.0,546.0,522.0,497.0,476.0,455.0,435.0,414.0,393.0,375.0,357.0,339.0,320.0,302.0,290.0,279.0,267.0,255.0,243.0
+,Airlines,2020-12,International Pledges,Global,,1032.0,1012.0,992.0,972.0,952.0,933.0,913.0,893.0,873.0,853.0,833.0,814.0,797.0,780.0,764.0,747.0,730.0,715.0,699.0,683.0,667.0,652.0,635.0,619.0,602.0,586.0,569.0,554.0,539.0,524.0,509.0,494.0,480.0,467.0,453.0,440.0,426.0
+,Autos,2020-12,2 Degrees (High Efficiency),Global,147.0,145.0,143.0,137.0,131.0,125.0,119.0,113.0,104.0,95.0,86.0,77.0,68.0,62.0,57.0,51.0,46.0,40.0,37.0,34.0,31.0,27.0,24.0,22.0,21.0,19.0,17.0,15.0,14.0,13.0,12.0,11.0,10.0,9.0,8.0,8.0,7.0,6.0
+,Autos,2020-12,2 Degrees (Shift-Improve),Global,147.0,145.0,143.0,137.0,131.0,125.0,119.0,113.0,109.0,105.0,102.0,98.0,94.0,91.0,88.0,84.0,81.0,77.0,74.0,72.0,69.0,67.0,64.0,63.0,61.0,59.0,58.0,56.0,55.0,54.0,52.0,51.0,50.0,49.0,47.0,46.0,45.0,43.0
+,Autos,2020-12,Paris Pledges,Global,147.0,145.0,143.0,138.0,133.0,128.0,123.0,117.0,116.0,114.0,112.0,111.0,109.0,108.0,107.0,106.0,105.0,104.0,103.0,102.0,101.0,100.0,100.0,99.0,98.0,97.0,96.0,95.0,94.0,93.0,92.0,91.0,91.0,90.0,89.0,88.0,87.0,86.0
+,Shipping,2020-12,Below 2 Degrees,Global,,,10.57,10.34,10.12,9.89,9.67,9.44,9.22,8.99,8.77,8.54,8.32,8.09,7.87,7.64,7.42,7.19,6.91,6.63,6.35,6.06,5.78,5.5,5.22,4.94,4.65,4.37,4.09,3.81,3.53,3.24,2.96,2.68,2.4,2.12,1.84,1.55
+,Shipping,2020-12,2 Degrees,Global,,,10.57,10.38,10.19,10.01,9.82,9.63,9.45,9.26,9.07,8.89,8.7,8.51,8.33,8.14,7.95,7.77,7.49,7.2,6.92,6.64,6.36,6.08,5.8,5.52,5.24,4.96,4.67,4.39,4.11,3.83,3.55,3.27,2.99,2.71,2.42,2.14
+,Shipping,2020-12,International Pledges,Global,,,10.57,10.5,10.44,10.37,10.31,10.24,10.18,10.12,10.05,9.99,9.92,9.86,9.79,9.73,9.66,9.6,9.52,9.44,9.37,9.29,9.21,9.14,9.06,8.98,8.91,8.83,8.75,8.68,8.6,8.52,8.45,8.37,8.29,8.22,8.14,8.06
+,Electricity Utilities,2020-10,Paris Pledges,Global,0.586,0.572,0.56,0.548,0.536,0.524,0.512,0.499,0.487,0.475,0.463,0.451,0.439,0.432,0.424,0.417,0.409,0.402,0.396,0.391,0.386,0.38,0.375,0.37,0.366,0.361,0.357,0.352,0.348,0.343,0.339,0.335,0.33,0.326,0.322,0.317,0.313,0.309
+,Electricity Utilities,2020-10,2 Degrees,Global,0.586,0.572,0.553,0.534,0.514,0.495,0.476,0.457,0.438,0.418,0.399,0.38,0.361,0.338,0.315,0.291,0.268,0.245,0.226,0.207,0.189,0.17,0.151,0.14,0.129,0.119,0.108,0.097,0.089,0.081,0.072,0.064,0.056,0.052,0.048,0.044,0.04,0.036
+,Electricity Utilities,2020-10,Below 2 Degrees,Global,0.586,0.572,0.55,0.528,0.506,0.484,0.462,0.44,0.418,0.396,0.374,0.352,0.33,0.31,0.29,0.269,0.249,0.229,0.211,0.194,0.176,0.158,0.141,0.127,0.113,0.099,0.086,0.072,0.062,0.051,0.041,0.031,0.02,0.015,0.009,0.003,-0.002,-0.008
+,Diversified Mining,2020-10,Paris Pledges,Global,,61.99,61.72,61.4,61.47,61.08,60.76,60.45,59.99,59.53,59.07,58.61,58.15,57.69,57.23,56.77,56.31,55.85,55.5,55.16,54.82,54.47,54.13,53.85,53.58,53.31,53.03,52.76,52.5,52.24,51.99,51.73,51.48,51.15,50.83,50.51,50.19,49.86
+,Diversified Mining,2020-10,2 Degrees,Global,,61.99,61.49,60.92,60.78,60.31,59.76,59.19,58.41,57.62,56.84,56.05,55.27,53.93,52.6,51.26,49.92,48.59,47.22,45.86,44.49,43.13,41.76,40.58,39.4,38.23,37.05,35.87,34.79,33.72,32.64,31.57,30.49,29.7,28.9,28.1,27.31,26.51
+,Diversified Mining,2020-10,Below 2 Degrees,Global,,61.99,61.38,60.69,60.44,59.76,59.1,58.42,57.41,56.41,55.4,54.4,53.4,51.94,50.48,49.03,47.57,46.12,44.62,43.12,41.63,40.13,38.63,36.95,35.26,33.58,31.89,30.2,28.46,26.71,24.96,23.21,21.46,20.06,18.65,17.25,15.85,14.44
+,Oil & Gas,2020-10,Paris Pledges,Global,,65.57,65.09,64.61,64.13,63.66,63.18,62.7,62.23,61.75,61.27,60.79,60.32,59.9,59.48,59.06,58.64,58.22,57.91,57.61,57.3,57.0,56.69,56.38,56.06,55.74,55.43,55.11,54.82,54.53,54.23,53.94,53.65,53.39,53.14,52.89,52.63,52.38
+,Oil & Gas,2020-10,2 Degrees,Global,,65.57,64.69,63.81,62.93,62.05,61.17,60.29,59.41,58.53,57.65,56.77,55.9,54.36,52.82,51.28,49.74,48.21,46.58,44.95,43.33,41.7,40.08,38.75,37.42,36.09,34.76,33.43,32.2,30.97,29.74,28.51,27.27,26.16,25.05,23.93,22.82,21.7
+,Oil & Gas,2020-10,Below 2 Degrees,Global,,65.57,64.43,63.29,62.15,61.01,59.87,58.74,57.6,56.46,55.32,54.18,53.04,51.13,49.21,47.29,45.37,43.45,41.55,39.65,37.75,35.85,33.95,32.04,30.14,28.23,26.32,24.41,22.73,21.04,19.36,17.67,15.98,14.78,13.58,12.38,11.18,9.98
+,Paper,2020-02,Paris Pledges,Global,,0.71,0.705,0.699,0.694,0.69,0.685,0.681,0.676,0.673,0.669,0.665,0.662,0.658,0.655,0.652,0.649,0.646,,,,,,,,,,,,,,,,,,,,
+,Cement,2020-02,2 Degrees,Global,,0.534,0.535,0.535,0.535,0.536,0.536,0.537,0.537,0.538,0.538,0.538,0.539,0.53,0.522,0.514,0.506,0.497,,,,,,,,,,,,,,,,,,,,
+,Cement,2020-02,Paris Pledges,Global,,0.534,0.537,0.539,0.542,0.544,0.546,0.549,0.551,0.553,0.556,0.558,0.56,0.556,0.552,0.548,0.544,0.54,,,,,,,,,,,,,,,,,,,,
+,Aluminium,2020-02,Below 2 Degrees,Global,,6.342,6.13,5.917,5.705,5.492,5.279,5.067,4.854,4.641,4.429,4.216,4.004,3.817,3.63,3.443,3.256,3.069,,,,,,,,,,,,,,,,,,,,
+,Aluminium,2020-02,2 Degrees,Global,,6.342,6.161,5.98,5.799,5.618,5.437,5.255,5.074,4.893,4.712,4.531,4.349,4.108,3.866,3.625,3.383,3.142,,,,,,,,,,,,,,,,,,,,
+,Aluminium,2020-02,Paris Pledges,Global,,6.342,6.221,6.1,5.978,5.857,5.736,5.614,5.493,5.371,5.25,5.129,5.007,4.877,4.746,4.615,4.484,4.354,,,,,,,,,,,,,,,,,,,,
+,Steel,2020-02,Below 2 Degrees,Global,,1.669,1.612,1.556,1.499,1.442,1.386,1.329,1.273,1.216,1.16,1.103,1.047,1.001,0.954,0.908,0.861,0.815,,,,,,,,,,,,,,,,,,,,
+,Steel,2020-02,2 Degrees,Global,,1.669,1.64,1.612,1.583,1.555,1.528,1.5,1.473,1.446,1.42,1.394,1.368,1.318,1.27,1.222,1.175,1.129,,,,,,,,,,,,,,,,,,,,
+,Steel,2020-02,Paris Pledges,Global,,1.669,1.668,1.666,1.664,1.663,1.662,1.66,1.659,1.657,1.656,1.654,1.653,1.651,1.648,1.646,1.644,1.642,,,,,,,,,,,,,,,,,,,,
+,Paper,2020-02,Below 2 Degrees,Global,,0.71,0.681,0.653,0.626,0.599,0.573,0.548,0.523,0.499,0.475,0.452,0.429,0.413,0.398,0.383,0.369,0.354,,,,,,,,,,,,,,,,,,,,
+,Paper,2020-02,2 Degrees,Global,,0.71,0.689,0.668,0.648,0.628,0.609,0.591,0.573,0.555,0.538,0.521,0.505,0.485,0.465,0.446,0.428,0.41,,,,,,,,,,,,,,,,,,,,
+,Cement,2020-02,Below 2 Degrees,Global,,0.534,0.528,0.522,0.516,0.51,0.504,0.498,0.493,0.487,0.482,0.476,0.471,0.458,0.446,0.433,0.421,0.408,,,,,,,,,,,,,,,,,,,,
+,Autos,2019-12,2 Degrees (High Efficiency),Global,147.0,145.0,143.0,139.0,134.0,129.0,124.0,119.0,109.0,100.0,90.0,81.0,71.0,65.0,59.0,53.0,47.0,41.0,,,,,,,,,,,,,,,,,,,,
+,Autos,2019-12,2 Degrees (Shift-Improve),Global,147.0,145.0,143.0,139.0,134.0,129.0,124.0,119.0,115.0,111.0,107.0,103.0,99.0,95.0,91.0,87.0,83.0,80.0,,,,,,,,,,,,,,,,,,,,
+,Autos,2019-12,Paris Pledges,Global,147.0,145.0,143.0,140.0,136.0,132.0,128.0,123.0,122.0,120.0,118.0,116.0,115.0,114.0,113.0,111.0,110.0,109.0,,,,,,,,,,,,,,,,,,,,
+,Airlines,2019-12,2 Degrees (High Efficiency),Global,,709.0,688.0,667.0,646.0,625.0,604.0,582.0,561.0,540.0,519.0,498.0,477.0,457.0,436.0,416.0,396.0,375.0,,,,,,,,,,,,,,,,,,,,
+,Airlines,2019-12,2 Degrees (Shift-Improve),Global,,709.0,692.0,675.0,658.0,641.0,624.0,607.0,590.0,573.0,556.0,539.0,522.0,503.0,485.0,467.0,448.0,430.0,,,,,,,,,,,,,,,,,,,,
+,Airlines,2019-12,International Pledges,Global,,709.0,696.0,682.0,669.0,656.0,643.0,629.0,616.0,603.0,590.0,576.0,563.0,551.0,538.0,526.0,514.0,501.0,,,,,,,,,,,,,,,,,,,,
+,Shipping,2019-12,Below 2 Degrees,Global,,,10.6,10.3,10.1,9.9,9.7,9.4,9.2,9.0,8.8,8.5,8.3,8.1,7.9,7.6,7.4,7.2,,,,,,,,,,,,,,,,,,,,
+,Shipping,2019-12,2 Degrees,Global,,,10.6,10.4,10.2,10.0,9.8,9.6,9.4,9.3,9.1,8.9,8.7,8.5,8.3,8.1,8.0,7.8,,,,,,,,,,,,,,,,,,,,
+,Shipping,2019-12,International Pledges,Global,,,10.6,10.5,10.4,10.4,10.3,10.2,10.2,10.1,10.1,10.0,9.9,9.9,9.8,9.7,9.7,9.6,,,,,,,,,,,,,,,,,,,,
+,Electricity Utilities,2019-09,Paris Pledges,Global,0.586,0.572,0.557,0.543,0.529,0.516,0.503,0.492,0.48,0.469,0.459,0.449,0.439,0.431,0.423,0.416,0.409,0.402,,,,,,,,,,,,,,,,,,,,
+,Electricity Utilities,2019-09,2 Degrees,Global,0.586,0.572,0.549,0.527,0.506,0.486,0.466,0.447,0.428,0.411,0.394,0.377,0.361,0.336,0.312,0.289,0.267,0.245,,,,,,,,,,,,,,,,,,,,
+,Electricity Utilities,2019-09,Below 2 Degrees,Global,0.586,0.572,0.546,0.521,0.497,0.474,0.452,0.43,0.409,0.388,0.368,0.349,0.33,0.308,0.287,0.267,0.248,0.229,,,,,,,,,,,,,,,,,,,,
+,Oil & Gas,2019-09,Paris Pledges,Global,,61.6,61.1,60.6,60.2,59.7,59.3,58.8,58.3,57.9,57.4,56.9,56.5,56.1,55.7,55.3,54.8,54.4,54.2,53.9,53.6,53.3,53.0,52.7,52.4,52.1,51.8,51.6,51.3,51.0,50.7,50.5,50.2,49.9,49.7,49.4,49.1,48.9
+,Oil & Gas,2019-09,2 Degrees,Global,,61.6,60.7,59.8,59.0,58.1,57.2,56.3,55.5,54.6,53.7,52.8,52.0,50.4,48.9,47.4,45.9,44.3,42.8,41.3,39.7,38.2,36.6,35.4,34.1,32.8,31.5,30.2,29.1,27.9,26.7,25.5,24.4,23.6,22.8,21.9,21.1,20.3
+,Oil & Gas,2019-09,Below 2 Degrees,Global,,61.6,60.4,59.2,58.1,56.9,55.7,54.6,53.4,52.3,51.1,49.9,48.8,46.9,45.0,43.2,41.3,39.5,37.6,35.8,34.0,32.1,30.3,28.5,26.7,24.9,23.1,21.3,19.8,18.2,16.7,15.1,13.6,12.4,11.3,10.2,9.0,7.9
+,Aluminium,2019-02,Below 2 Degrees,Global,,6.342,6.13,5.917,5.705,5.492,5.279,5.067,4.854,4.641,4.429,4.216,4.004,3.817,3.63,3.443,3.256,3.069,,,,,,,,,,,,,,,,,,,,
+,Airlines,2019-02,International Pledges,Global,,129.0,126.0,124.0,122.0,120.0,117.0,115.0,113.0,110.0,108.0,106.0,104.0,101.0,99.0,97.0,95.0,92.0,,,,,,,,,,,,,,,,,,,,
+,Airlines,2019-02,2 Degrees (Shift-Improve),Global,,129.0,126.0,123.0,120.0,117.0,114.0,111.0,108.0,105.0,102.0,99.0,96.0,93.0,89.0,86.0,83.0,79.0,,,,,,,,,,,,,,,,,,,,
+,Airlines,2019-02,2 Degrees (High Efficiency),Global,,129.0,125.0,121.0,118.0,114.0,110.0,106.0,103.0,99.0,95.0,91.0,88.0,84.0,80.0,77.0,73.0,69.0,,,,,,,,,,,,,,,,,,,,
+,Aluminium,2019-02,Paris Pledges,Global,,6.342,6.221,6.1,5.978,5.857,5.736,5.614,5.493,5.371,5.25,5.129,5.007,4.877,4.746,4.615,4.484,4.354,,,,,,,,,,,,,,,,,,,,
+,Aluminium,2019-02,2 Degrees,Global,,6.342,6.161,5.98,5.799,5.618,5.437,5.255,5.074,4.893,4.712,4.531,4.349,4.108,3.866,3.625,3.383,3.142,,,,,,,,,,,,,,,,,,,,
+,Paper,2018-11,2 Degrees,Global,,0.766,0.743,0.721,0.699,0.678,0.658,0.638,0.618,0.599,0.58,0.562,0.544,0.523,0.502,0.482,0.462,0.442,,,,,,,,,,,,,,,,,,,,
+,Autos,2018-11,Paris Pledges,Global,147.0,145.0,143.0,140.0,136.0,132.0,128.0,123.0,122.0,120.0,118.0,116.0,115.0,114.0,113.0,111.0,110.0,109.0,,,,,,,,,,,,,,,,,,,,
+,Autos,2018-11,2 Degrees (Shift-Improve),Global,147.0,145.0,143.0,139.0,134.0,129.0,124.0,119.0,115.0,111.0,107.0,103.0,99.0,95.0,91.0,87.0,83.0,80.0,,,,,,,,,,,,,,,,,,,,
+,Autos,2018-11,2 Degrees (High Efficiency),Global,147.0,145.0,143.0,139.0,134.0,129.0,124.0,119.0,109.0,100.0,90.0,81.0,71.0,65.0,59.0,53.0,47.0,41.0,,,,,,,,,,,,,,,,,,,,
+,Paper,2018-11,Paris Pledges,Global,,0.766,0.76,0.755,0.749,0.744,0.739,0.734,0.73,0.726,0.722,0.718,0.714,0.71,0.707,0.703,0.7,0.697,,,,,,,,,,,,,,,,,,,,
+,Paper,2018-11,Below 2 Degrees,Global,,0.766,0.735,0.705,0.676,0.647,0.619,0.591,0.564,0.538,0.513,0.488,0.463,0.446,0.429,0.413,0.398,0.382,,,,,,,,,,,,,,,,,,,,
+,Cement,2018-09,Paris Pledges,Global,,0.534,0.537,0.539,0.542,0.544,0.546,0.549,0.551,0.553,0.556,0.558,0.56,0.556,0.552,0.548,0.544,0.54,,,,,,,,,,,,,,,,,,,,
+,Cement,2018-09,Below 2 Degrees,Global,,0.534,0.528,0.522,0.516,0.51,0.504,0.498,0.493,0.487,0.482,0.476,0.471,0.458,0.446,0.433,0.421,0.408,,,,,,,,,,,,,,,,,,,,
+,Cement,2018-09,2 Degrees,Global,,0.534,0.535,0.535,0.535,0.536,0.536,0.537,0.537,0.538,0.538,0.538,0.539,0.53,0.522,0.514,0.506,0.497,,,,,,,,,,,,,,,,,,,,
+,Steel,2018-09,Below 2 Degrees,Global,,1.669,1.612,1.556,1.499,1.442,1.386,1.329,1.273,1.216,1.16,1.103,1.047,1.001,0.954,0.908,0.861,0.815,,,,,,,,,,,,,,,,,,,,
+,Steel,2018-09,2 Degrees,Global,,1.669,1.64,1.612,1.583,1.555,1.528,1.5,1.473,1.446,1.42,1.394,1.368,1.318,1.27,1.222,1.175,1.129,,,,,,,,,,,,,,,,,,,,
+,Steel,2018-09,Paris Pledges,Global,,1.669,1.668,1.666,1.664,1.663,1.662,1.66,1.659,1.657,1.656,1.654,1.653,1.651,1.648,1.646,1.644,1.642,,,,,,,,,,,,,,,,,,,,
+,Electricity Utilities,2018-07,2 Degrees,Global,0.586,0.572,0.549,0.527,0.506,0.486,0.466,0.447,0.428,0.411,0.394,0.377,0.361,0.336,0.312,0.289,0.267,0.245,,,,,,,,,,,,,,,,,,,,
+,Electricity Utilities,2018-07,Paris Pledges,Global,0.586,0.572,0.557,0.543,0.529,0.516,0.503,0.492,0.48,0.469,0.459,0.449,0.439,0.431,0.423,0.416,0.409,0.402,,,,,,,,,,,,,,,,,,,,
+,Electricity Utilities,2018-07,Below 2 Degrees,Global,0.586,0.572,0.546,0.521,0.497,0.474,0.452,0.43,0.409,0.388,0.368,0.349,0.33,0.308,0.287,0.267,0.248,0.229,,,,,,,,,,,,,,,,,,,,
+,Autos,2018-02,Paris Pledges,Global,147.0,145.0,143.0,140.0,136.0,132.0,128.0,123.0,122.0,120.0,118.0,116.0,115.0,114.0,113.0,111.0,110.0,109.0,,,,,,,,,,,,,,,,,,,,
+,Autos,2018-02,2 Degrees (Shift-Improve),Global,147.0,145.0,143.0,139.0,134.0,129.0,124.0,119.0,115.0,111.0,107.0,103.0,99.0,95.0,91.0,87.0,83.0,80.0,,,,,,,,,,,,,,,,,,,,
+,Autos,2018-02,2 Degrees (High Efficiency),Global,147.0,145.0,143.0,139.0,134.0,129.0,124.0,119.0,109.0,100.0,90.0,81.0,71.0,65.0,59.0,53.0,47.0,41.0,,,,,,,,,,,,,,,,,,,,
+,Paper,2018-02,Paris Pledges,Global,,0.697,0.691,0.686,0.681,0.676,0.671,0.667,0.663,0.659,0.655,0.652,0.648,0.645,0.642,0.639,0.636,0.634,,,,,,,,,,,,,,,,,,,,
+,Paper,2018-02,2 Degrees,Global,,0.697,0.676,0.656,0.636,0.617,0.598,0.58,0.562,0.544,0.528,0.511,0.495,0.475,0.457,0.438,0.42,0.403,,,,,,,,,,,,,,,,,,,,
+,Cement,2017-11,Paris Pledges,Global,0.599,0.6,0.6,0.601,0.602,0.602,0.603,0.603,0.598,0.594,0.589,0.584,0.58,0.577,0.574,0.571,0.568,0.565,,,,,,,,,,,,,,,,,,,,
+,Steel,2017-11,Paris Pledges,Global,2.125,2.131,2.136,2.142,2.147,2.153,2.159,2.164,2.14,2.115,2.091,2.067,2.042,2.019,1.995,1.971,1.947,1.923,,,,,,,,,,,,,,,,,,,,
+,Steel,2017-11,2 Degrees,Global,2.125,2.104,2.083,2.063,2.042,2.021,2.0,1.98,1.918,1.856,1.795,1.733,1.672,1.592,1.513,1.434,1.355,1.275,,,,,,,,,,,,,,,,,,,,
+,Cement,2017-11,2 Degrees,Global,0.599,0.598,0.596,0.595,0.593,0.592,0.59,0.589,0.581,0.574,0.567,0.56,0.553,0.547,0.542,0.536,0.53,0.524,,,,,,,,,,,,,,,,,,,,
+,Electricity Utilities,2017-07,2 Degrees,Global,0.586,0.572,0.557,0.543,0.528,0.514,0.499,0.484,0.465,0.445,0.426,0.407,0.387,0.366,0.345,0.323,0.302,0.281,,,,,,,,,,,,,,,,,,,,
+,Electricity Utilities,2017-07,Paris Pledges,Global,0.586,0.574,0.561,0.549,0.536,0.524,0.511,0.498,0.491,0.484,0.476,0.469,0.462,0.453,0.445,0.437,0.428,0.42,,,,,,,,,,,,,,,,,,,,
diff --git a/db/structure.sql b/db/structure.sql
index 5aebd1bb1..6596e8e26 100644
--- a/db/structure.sql
+++ b/db/structure.sql
@@ -818,7 +818,8 @@ CREATE TABLE public.cp_assessments (
sector_id bigint,
final_disclosure_year integer,
cp_alignment_2027 character varying,
- cp_regional_alignment_2027 character varying
+ cp_regional_alignment_2027 character varying,
+ assessment_date_flag character varying
);
@@ -4178,6 +4179,5 @@ INSERT INTO "schema_migrations" (version) VALUES
('20240119084250'),
('20240202090401'),
('20240206094238'),
-('20240527100352');
-
-
+('20240527100352'),
+('20241115133904');
diff --git a/db/test-dump.psql b/db/test-dump.psql
index fce6478ce..571e8c0b3 100644
Binary files a/db/test-dump.psql and b/db/test-dump.psql differ
diff --git a/package.json b/package.json
index 017209c59..d038fd648 100644
--- a/package.json
+++ b/package.json
@@ -23,6 +23,7 @@
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.10.4",
+ "@floating-ui/react": "^0.26.25",
"@hotwired/stimulus": "^3.1.0",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@rails/actioncable": "^6.0.3-3",
@@ -37,6 +38,7 @@
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bulma": "^0.8.0",
"classnames": "^2.2.6",
+ "country-list": "^2.3.0",
"d3-array": "^2.5.0",
"d3-force": "^2.0.1",
"d3-format": "^1.4.3",
diff --git a/public/static_files/Methodology and Indicator Report v4.0_final draft.pdf b/public/static_files/Methodology and Indicator Report v4.0_final draft.pdf
new file mode 100644
index 000000000..6d2fb5909
Binary files /dev/null and b/public/static_files/Methodology and Indicator Report v4.0_final draft.pdf differ
diff --git "a/public/static_files/TPI\342\200\231s methodology report. Management Quality and Carbon Performance.pdf" "b/public/static_files/TPI\342\200\231s methodology report. Management Quality and Carbon Performance.pdf"
new file mode 100644
index 000000000..cb06304b0
Binary files /dev/null and "b/public/static_files/TPI\342\200\231s methodology report. Management Quality and Carbon Performance.pdf" differ
diff --git a/spec/commands/csv_data_upload_spec.rb b/spec/commands/csv_data_upload_spec.rb
index 425e1731f..a7b4a82ef 100644
--- a/spec/commands/csv_data_upload_spec.rb
+++ b/spec/commands/csv_data_upload_spec.rb
@@ -1278,7 +1278,9 @@
expect(assessment.cp_regional_alignment_2027).to eq('1.5 Degrees')
expect(assessment.cp_regional_alignment_2035).to eq('2 Degrees')
expect(assessment.cp_regional_alignment_2050).to eq('International Pledges')
+ expect(assessment.assessment_date_flag).to eq('old')
expect(assessment2.cp_alignment_2050).to eq('Not Aligned')
+ expect(assessment2.assessment_date_flag).to eq('new')
end
it 'imports CSV files with Bank CP Assessments data' do
diff --git a/spec/controllers/tpi/sectors_controller_spec.rb b/spec/controllers/tpi/sectors_controller_spec.rb
index ea660ed38..30cd43098 100644
--- a/spec/controllers/tpi/sectors_controller_spec.rb
+++ b/spec/controllers/tpi/sectors_controller_spec.rb
@@ -155,9 +155,9 @@
expect(entries_names).to include("CP_Assessments_#{timestamp}.csv")
expect(entries_names).to include("CP_Assessments_Regional_#{timestamp}.csv")
expect(entries_names).to include('Company_Latest_Assessments.csv')
- expect(entries_names).to include('Company_Latest_Assessments_BETA_5.0.csv')
+ expect(entries_names).to include('Company_Latest_Assessments_5.0.csv')
expect(entries_names).to include("MQ_Assessments_Methodology_1_#{timestamp}.csv")
- expect(entries_names).to include("MQ_Assessments_Methodology_5_BETA_#{timestamp}.csv")
+ expect(entries_names).to include("MQ_Assessments_Methodology_5_#{timestamp}.csv")
expect(entries_names).to include('User guide TPI files.xlsx')
expect(entries_csv_json["Sector_Benchmarks_#{timestamp}.csv"])
@@ -168,11 +168,11 @@
.to match_snapshot('tpi_single_sector_user_download_cp_assessments_regional_csv')
expect(entries_csv_json['Company_Latest_Assessments.csv'])
.to match_snapshot('tpi_single_sector_user_company_latest_assessments_csv')
- expect(entries_csv_json['Company_Latest_Assessments_BETA_5.0.csv'])
+ expect(entries_csv_json['Company_Latest_Assessments_5.0.csv'])
.to match_snapshot('tpi_single_sector_user_company_latest_assessments_beta_5.0_csv')
expect(entries_csv_json["MQ_Assessments_Methodology_1_#{timestamp}.csv"])
.to match_snapshot('tpi_single_sector_user_mq_assessments_methodology_1_csv')
- expect(entries_csv_json["MQ_Assessments_Methodology_5_BETA_#{timestamp}.csv"])
+ expect(entries_csv_json["MQ_Assessments_Methodology_5_#{timestamp}.csv"])
.to match_snapshot('tpi_single_sector_user_mq_assessments_methodology_5_beta_csv')
end
end
@@ -207,9 +207,9 @@
expect(entries_names).to include("Sector_Benchmarks_#{timestamp}.csv")
expect(entries_names).to include("CP_Assessments_#{timestamp}.csv")
expect(entries_names).to include('Company_Latest_Assessments.csv')
- expect(entries_names).to include('Company_Latest_Assessments_BETA_5.0.csv')
+ expect(entries_names).to include('Company_Latest_Assessments_5.0.csv')
expect(entries_names).to include("MQ_Assessments_Methodology_1_#{timestamp}.csv")
- expect(entries_names).to include("MQ_Assessments_Methodology_5_BETA_#{timestamp}.csv")
+ expect(entries_names).to include("MQ_Assessments_Methodology_5_#{timestamp}.csv")
expect(entries_names).to include('User guide TPI files.xlsx')
expect(entries_csv_json["Sector_Benchmarks_#{timestamp}.csv"])
@@ -218,13 +218,48 @@
.to match_snapshot('tpi_all_sectors_user_download_cp_assessments_csv')
expect(entries_csv_json['Company_Latest_Assessments.csv'])
.to match_snapshot('tpi_all_sectors_user_company_latest_assessments_csv')
- expect(entries_csv_json['Company_Latest_Assessments_BETA_5.0.csv'])
+ expect(entries_csv_json['Company_Latest_Assessments_5.0.csv'])
.to match_snapshot('tpi_all_sectors_user_company_latest_assessments_beta_5.0_csv')
expect(entries_csv_json["MQ_Assessments_Methodology_1_#{timestamp}.csv"])
.to match_snapshot('tpi_all_sectors_user_mq_assessments_methodology_1_csv')
- expect(entries_csv_json["MQ_Assessments_Methodology_5_BETA_#{timestamp}.csv"])
+ expect(entries_csv_json["MQ_Assessments_Methodology_5_#{timestamp}.csv"])
.to match_snapshot('tpi_all_sectors_user_mq_assessments_methodology_5_beta_csv')
end
end
end
+
+ describe 'GET user download methodology' do
+ subject { get :user_download_methodology }
+
+ it { is_expected.to be_successful }
+
+ it 'returns zip file' do
+ subject
+ expect(response.content_type).to eq('application/pdf')
+ end
+ end
+
+ describe 'POST send_download_file_info_email' do
+ subject { post :send_download_file_info_email, params: data }
+ let(:data) do
+ {
+ email: 'test@test.test',
+ job_title: 'job_title',
+ forename: 'forename',
+ surname: 'surname',
+ location: 'location',
+ organisation: 'organisation',
+ purposes: %w[purposes1 purposes2]
+ }
+ end
+
+ it 'returns ok status' do
+ subject
+ expect(response).to have_http_status(:ok)
+ end
+
+ it 'sends email' do
+ expect { subject }.to change { ActionMailer::Base.deliveries.count }.by(1)
+ end
+ end
end
diff --git a/spec/factories/cp_assessment.rb b/spec/factories/cp_assessment.rb
index 3f9cf42a9..53695634d 100644
--- a/spec/factories/cp_assessment.rb
+++ b/spec/factories/cp_assessment.rb
@@ -4,6 +4,7 @@
association :sector, factory: :tpi_sector
assessment_date { 1.year.ago }
+ assessment_date_flag { 'current' }
publication_date { 11.months.ago }
last_reported_year { 2020 }
diff --git a/spec/mailers/data_download_mailer_spec.rb b/spec/mailers/data_download_mailer_spec.rb
new file mode 100644
index 000000000..11334c3b5
--- /dev/null
+++ b/spec/mailers/data_download_mailer_spec.rb
@@ -0,0 +1,35 @@
+require 'rails_helper'
+
+RSpec.describe DataDownloadMailer, type: :mailer do
+ describe 'send_download_file_info_email' do
+ let(:data) {
+ {
+ email: 'test@test.test',
+ job_title: 'job_title',
+ forename: 'forename',
+ surname: 'surname',
+ location: 'location',
+ organisation: 'organisation',
+ purposes: %w[purpose1 purpose2 other_purpose_checkbox],
+ other_purpose: 'other_purpose'
+ }
+ }
+ let(:mail) { DataDownloadMailer.send_download_file_info_email data }
+
+ it 'renders the headers' do
+ expect(mail.subject).to eq('TPI data has been downloaded')
+ expect(mail.to).to eq(['tpi@lse.ac.uk'])
+ expect(mail.from).to eq([ENV.fetch('SMTP_DEFAULT_FROM', 'from@example.com')])
+
+ expect(mail.body.encoded).to include('test@test.test')
+ expect(mail.body.encoded).to include('job_title')
+ expect(mail.body.encoded).to include('forename')
+ expect(mail.body.encoded).to include('surname')
+ expect(mail.body.encoded).to include('location')
+ expect(mail.body.encoded).to include('organisation')
+ expect(mail.body.encoded).to include('purpose1')
+ expect(mail.body.encoded).to include('purpose2')
+ expect(mail.body.encoded).to include('other_purpose')
+ end
+ end
+end
diff --git a/spec/support/capybara_helpers.rb b/spec/support/capybara_helpers.rb
index 35f43f16b..97d7e6a30 100644
--- a/spec/support/capybara_helpers.rb
+++ b/spec/support/capybara_helpers.rb
@@ -30,16 +30,13 @@ def within_ascor_pillar(header_text)
end
end
- def with_mq_beta_scores
+ def with_older_mq_scores
within '.mq-beta-scores' do
- click_on 'BETA'
- end
- within '.modal-content' do
- click_on 'Proceed'
+ click_on 'V4.0'
end
yield
within '.mq-beta-scores' do
- click_on 'Current'
+ click_on 'Current V5.0'
end
end
diff --git a/spec/support/fixtures/files/company_cp_assessments.csv b/spec/support/fixtures/files/company_cp_assessments.csv
index 9f816341a..308abf389 100644
--- a/spec/support/fixtures/files/company_cp_assessments.csv
+++ b/spec/support/fixtures/files/company_cp_assessments.csv
@@ -1,3 +1,3 @@
-"Id","company_id","Company","Assessment date","Publication date","Last Reported Year",2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,"Assumptions","CP alignment 2025","CP alignment 2035","CP Alignment 2050","Region","CP regional alignment 2025","CP regional alignment 2035","CP regional alignment 2050",CP alignment 2027,CP regional alignment 2027
-,1000,"ACME","2019-01-04","2019-02",2018,,101,101,100,101,100,99,98,,,,,,,,,,,"Assumptions for ACME","Paris Pledges","National Pledges","No Disclosure","OECD","1.5 degrees","2 degrees","International Pledges",Paris Pledges,1.5 degrees
-,2000,"ACME Materials","2019-01-04","2019-02",2019,,,,,,,,,,,,,,,,,,,"Assumptions for ACME Materials",,,"Not aligned",,,,,,
+"Id","company_id","Company","Assessment date","Assessment date flag","Publication date","Last Reported Year",2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,"Assumptions","CP alignment 2025","CP alignment 2035","CP Alignment 2050","Region","CP regional alignment 2025","CP regional alignment 2035","CP regional alignment 2050",CP alignment 2027,CP regional alignment 2027
+,1000,"ACME","2019-01-04","old","2019-02",2018,,101,101,100,101,100,99,98,,,,,,,,,,,"Assumptions for ACME","Paris Pledges","National Pledges","No Disclosure","OECD","1.5 degrees","2 degrees","International Pledges",Paris Pledges,1.5 degrees
+,2000,"ACME Materials","2019-01-04","new","2019-02",2019,,,,,,,,,,,,,,,,,,,"Assumptions for ACME Materials",,,"Not aligned",,,,,,
diff --git a/spec/system/public/cclow/climate_targets_spec.rb b/spec/system/public/cclow/climate_targets_spec.rb
index 2f36bca74..23b808b7d 100644
--- a/spec/system/public/cclow/climate_targets_spec.rb
+++ b/spec/system/public/cclow/climate_targets_spec.rb
@@ -5,7 +5,7 @@
visit '/climate_targets'
end
- it 'loads the page' do
+ xit 'loads the page' do
expect(page).to have_text('Climate Targets')
expect(page).to have_text('Showing 240 results')
end
diff --git a/spec/system/public/tpi/company_selector_spec.rb b/spec/system/public/tpi/company_selector_spec.rb
index fd7c3fe99..76801da76 100644
--- a/spec/system/public/tpi/company_selector_spec.rb
+++ b/spec/system/public/tpi/company_selector_spec.rb
@@ -2,7 +2,7 @@
describe 'Company Selector', type: 'system', site: 'tpi' do
before(:each) do
- visit '/sectors'
+ visit '/corporates'
end
it 'filters by company' do
@@ -18,6 +18,6 @@
find('.dropdown-selector__header').click
find('input.dropdown-selector__input').set('Cement')
find('input.dropdown-selector__input').native.send_keys(:return)
- expect(page).to have_current_path('/sectors/cement')
+ expect(page).to have_current_path('/corporates/cement')
end
end
diff --git a/spec/system/public/tpi/company_spec.rb b/spec/system/public/tpi/company_spec.rb
index e48446f7f..ec8b53575 100644
--- a/spec/system/public/tpi/company_spec.rb
+++ b/spec/system/public/tpi/company_spec.rb
@@ -9,13 +9,13 @@
expect(page).to have_text('Japan Airlines')
end
- it 'does not show BETA scores by default' do
- expect(page).not_to have_text('Level 5 [BETA]')
+ it 'show BETA scores by default' do
+ expect(page).to have_text('Level 5')
end
- it 'allows to show BETA scores' do
- with_mq_beta_scores do
- expect(page).to have_text('Level 5 [BETA]')
+ it 'allow to see older methodology' do
+ with_older_mq_scores do
+ expect(page).not_to have_text('Level 5')
end
end
diff --git a/spec/system/public/tpi/sectors_spec.rb b/spec/system/public/tpi/sectors_spec.rb
index 107550af5..d74d7264d 100644
--- a/spec/system/public/tpi/sectors_spec.rb
+++ b/spec/system/public/tpi/sectors_spec.rb
@@ -7,38 +7,30 @@
end
it 'loads all elements' do
- expect(page).to have_text('Management Quality: All sectors')
+ expect(page).to have_text('All sectors')
# pie chart
within '.chart--mq-sector-pie-chart' do
- expect(page).not_to have_text('Level 5')
+ expect(page).to have_text('Level 5')
expect(page).to have_selector('.companies-size', text: '111')
end
# bubble chart loads
within '.bubble-chart__container' do
- expect(page).not_to have_text('Level 5')
- expect(page).to have_text('Market cap')
+ expect(page).to have_text('Level 5')
expect(page).to have_text('Autos')
expect(page).to have_text('Airlines')
end
-
- # all sectors chart TODO: read this
- # within '#cp-performance-all-sectors-chart' do
- # expect(page).to have_text('Below 2 Degrees')
- # expect(page).to have_text('Aluminium')
- # expect(page).to have_text('Cement')
- # end
end
- it 'loads also beta scores' do
- with_mq_beta_scores do
+ it 'load old mq scores' do
+ with_older_mq_scores do
within '.chart--mq-sector-pie-chart' do
- expect(page).to have_text('Level 5')
+ expect(page).not_to have_text('Level 5')
end
within '.bubble-chart__container' do
- expect(page).to have_text('Level 5')
+ expect(page).not_to have_text('Level 5')
end
end
end
@@ -52,20 +44,20 @@
it 'loads all elements' do
# bubble chart loads
within '.chart--mq-sector-pie-chart' do
- expect(page).to have_text('Level 00 companies') # Level 0 0 companies
- expect(page).to have_text('Level 12 companies') # Level 1 2 companies
- expect(page).to have_text('Level 20 companies') # Level 2 0 companies
- expect(page).to have_text('Level 32 companies') # Level 3 2 companies
- expect(page).to have_text('Level 41 companies') # Level 4 1 companies
- expect(page).not_to have_text('Level 5') # BETA level that is disabled by default
+ expect(page).to have_text('Level 0 i 0 companies', normalize_ws: true) # Level 0 0 companies
+ expect(page).to have_text('Level 1 i 2 companies', normalize_ws: true) # Level 1 2 companies
+ expect(page).to have_text('Level 2 i 0 companies', normalize_ws: true) # Level 2 0 companies
+ expect(page).to have_text('Level 3 i 2 companies', normalize_ws: true) # Level 3 2 companies
+ expect(page).to have_text('Level 4 i 1 company', normalize_ws: true) # Level 4 1 company
+ expect(page).to have_text('Level 5')
expect(page).to have_selector('.companies-size', text: '5')
end
end
- it 'loads also beta scores' do
- with_mq_beta_scores do
+ it 'switch to older level scores' do
+ with_older_mq_scores do
within '.chart--mq-sector-pie-chart' do
- expect(page).to have_text('Level 5')
+ expect(page).not_to have_text('Level 5')
end
end
end
diff --git a/yarn.lock b/yarn.lock
index f44d0df65..4b674802e 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1089,6 +1089,42 @@
minimatch "^3.0.4"
strip-json-comments "^3.1.1"
+"@floating-ui/core@^1.6.0":
+ version "1.6.8"
+ resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.6.8.tgz#aa43561be075815879305965020f492cdb43da12"
+ integrity sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==
+ dependencies:
+ "@floating-ui/utils" "^0.2.8"
+
+"@floating-ui/dom@^1.0.0":
+ version "1.6.11"
+ resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.6.11.tgz#8631857838d34ee5712339eb7cbdfb8ad34da723"
+ integrity sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==
+ dependencies:
+ "@floating-ui/core" "^1.6.0"
+ "@floating-ui/utils" "^0.2.8"
+
+"@floating-ui/react-dom@^2.1.2":
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-2.1.2.tgz#a1349bbf6a0e5cb5ded55d023766f20a4d439a31"
+ integrity sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==
+ dependencies:
+ "@floating-ui/dom" "^1.0.0"
+
+"@floating-ui/react@^0.26.25":
+ version "0.26.25"
+ resolved "https://registry.yarnpkg.com/@floating-ui/react/-/react-0.26.25.tgz#cf4c8a2b89fab1a71712d15e6551df3bfbd2ea1d"
+ integrity sha512-hZOmgN0NTOzOuZxI1oIrDu3Gcl8WViIkvPMpB4xdd4QD6xAMtwgwr3VPoiyH/bLtRcS1cDnhxLSD1NsMJmwh/A==
+ dependencies:
+ "@floating-ui/react-dom" "^2.1.2"
+ "@floating-ui/utils" "^0.2.8"
+ tabbable "^6.0.0"
+
+"@floating-ui/utils@^0.2.8":
+ version "0.2.8"
+ resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.8.tgz#21a907684723bbbaa5f0974cf7730bd797eb8e62"
+ integrity sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==
+
"@formatjs/ecma402-abstract@1.17.0":
version "1.17.0"
resolved "https://registry.yarnpkg.com/@formatjs/ecma402-abstract/-/ecma402-abstract-1.17.0.tgz#2ce191a3bde4c65c6684e03fa247062a4a294b9e"
@@ -2839,6 +2875,11 @@ cosmiconfig@^7.0.0:
path-type "^4.0.0"
yaml "^1.10.0"
+country-list@^2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/country-list/-/country-list-2.3.0.tgz#1e7ceaf9834c1d1210054301eabf4dc445ab978c"
+ integrity sha512-qZk66RlmQm7fQjMYWku1AyjlKPogjPEorAZJG88owPExoPV8EsyCcuFLvO2afTXHEhi9liVOoyd+5A6ZS5QwaA==
+
create-ecdh@^4.0.0:
version "4.0.4"
resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e"
@@ -8568,6 +8609,11 @@ svgo@^1.0.0:
unquote "~1.1.1"
util.promisify "~1.0.0"
+tabbable@^6.0.0:
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-6.2.0.tgz#732fb62bc0175cfcec257330be187dcfba1f3b97"
+ integrity sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==
+
table@^5.2.3:
version "5.4.6"
resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e"