diff --git a/Gemfile.lock b/Gemfile.lock
index 738747b4a..b73a13780 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -312,7 +312,7 @@ GEM
net-protocol
net-ssh (7.0.1)
nio4r (2.7.0)
- nokogiri (1.16.0)
+ nokogiri (1.16.2)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
optimist (3.0.1)
diff --git a/app/admin/ascor/countries.rb b/app/admin/ascor/countries.rb
index cf329134c..716030736 100644
--- a/app/admin/ascor/countries.rb
+++ b/app/admin/ascor/countries.rb
@@ -4,7 +4,7 @@
menu label: 'Countries', parent: 'ASCOR', priority: 1
- permit_params :name, :iso, :region, :wb_lending_group, :fiscal_monitor_category, :type_of_party
+ permit_params :name, :iso, :region, :wb_lending_group, :fiscal_monitor_category, :type_of_party, :visibility_status
filter :iso_contains, label: 'ISO'
filter :name_contains, label: 'Name'
@@ -18,6 +18,7 @@
column :name
column 'Country ISO code', :iso
column :region
+ tag_column :visibility_status
actions
end
@@ -31,6 +32,7 @@
row 'World Bank lending group', &:wb_lending_group
row 'International Monetary Fund fiscal monitor category', &:fiscal_monitor_category
row 'Type of Party to the United Nations Framework Convention on Climate Change', &:type_of_party
+ row :visibility_status
end
active_admin_comments
@@ -42,12 +44,13 @@
f.inputs do
f.input :name
f.input :iso, label: 'Country ISO code'
- f.input :region, as: :select, collection: ASCOR::Country::REGIONS
+ f.input :region
f.input :wb_lending_group, as: :select, collection: ASCOR::Country::LENDING_GROUPS, label: 'World Bank lending group'
f.input :fiscal_monitor_category, as: :select, collection: ASCOR::Country::MONITOR_CATEGORIES,
label: 'International Monetary Fund fiscal monitor category'
f.input :type_of_party, as: :select, collection: ASCOR::Country::TYPE_OF_PARTY,
label: 'Type of Party to the United Nations Framework Convention on Climate Change'
+ f.input :visibility_status, as: :select, collection: ASCOR::Country::VISIBILITY
end
f.actions
@@ -61,5 +64,6 @@
column 'World Bank lending group', humanize_name: false, &:wb_lending_group
column 'International Monetary Fund fiscal monitor category', humanize_name: false, &:fiscal_monitor_category
column 'Type of Party to the United Nations Framework Convention on Climate Change', humanize_name: false, &:type_of_party
+ column :visibility_status
end
end
diff --git a/app/admin/companies.rb b/app/admin/companies.rb
index 1a5a3fc0a..5cf9a4472 100644
--- a/app/admin/companies.rb
+++ b/app/admin/companies.rb
@@ -101,11 +101,13 @@
row :publication_date
row :assessment_date
row :cp_alignment_2025
+ row :cp_alignment_2027
row :cp_alignment_2035
row :cp_alignment_2050
if a.region.present?
row :region
row :cp_regional_alignment_2025
+ row :cp_regional_alignment_2027
row :cp_regional_alignment_2035
row :cp_regional_alignment_2050
end
diff --git a/app/admin/cp_assessments.rb b/app/admin/cp_assessments.rb
index 2e2f184f2..13ff93da3 100644
--- a/app/admin/cp_assessments.rb
+++ b/app/admin/cp_assessments.rb
@@ -6,8 +6,8 @@
decorate_with CP::AssessmentDecorator
permit_params :sector_id, :assessment_date, :publication_date, :cp_assessmentable_id, :last_reported_year,
- :assumptions, :cp_alignment_2025, :cp_alignment_2035, :cp_alignment_2050,
- :region, :cp_regional_alignment_2025, :cp_regional_alignment_2035,
+ :assumptions, :cp_alignment_2025, :cp_alignment_2027, :cp_alignment_2035, :cp_alignment_2050,
+ :region, :cp_regional_alignment_2025, :cp_regional_alignment_2027, :cp_regional_alignment_2035,
:cp_regional_alignment_2050, :years_with_targets_string, :emissions,
cp_matrices_attributes: [:id, :portfolio, :cp_alignment_2025, :cp_alignment_2035, :cp_alignment_2050, :_destroy]
@@ -64,9 +64,11 @@
row :last_reported_year
row :cp_alignment_2050
row :cp_alignment_2025
+ row :cp_alignment_2027
row :cp_alignment_2035
row :region
row :cp_regional_alignment_2025
+ row :cp_regional_alignment_2027
row :cp_regional_alignment_2035
row :cp_regional_alignment_2050
row :years_with_targets
@@ -101,6 +103,7 @@
column :sector
column :cp_alignment_2050
column :cp_alignment_2025
+ column :cp_alignment_2027
column :cp_alignment_2035
column :assessment_date
column :publication_date
@@ -132,6 +135,7 @@
if params[:cp_assessmentable_type] == 'Company'
column :cp_alignment_2025
+ column :cp_alignment_2027
column :cp_alignment_2035
column :cp_alignment_2050
column :cp_regional_alignment_2025
diff --git a/app/controllers/tpi/ascor_controller.rb b/app/controllers/tpi/ascor_controller.rb
index 91a9e4ca2..de86d7294 100644
--- a/app/controllers/tpi/ascor_controller.rb
+++ b/app/controllers/tpi/ascor_controller.rb
@@ -56,7 +56,7 @@ def user_download
private
def fetch_ascor_countries
- @countries = ASCOR::Country.all.order(:name)
+ @countries = ASCOR::Country.published.all.order(:name)
@countries_json = [
{name: 'All countries', path: tpi_ascor_index_path},
*@countries.as_json(only: [:name], methods: [:path])
@@ -64,7 +64,9 @@ def fetch_ascor_countries
end
def fetch_ascor_country
- @country = ASCOR::Country.friendly.find(params[:id])
+ @country = ASCOR::Country.published.friendly.find(params[:id])
+ rescue ActiveRecord::RecordNotFound
+ redirect_to tpi_ascor_index_path
end
def fetch_assessment_date
diff --git a/app/models/ascor/assessment_result.rb b/app/models/ascor/assessment_result.rb
index 3275d559f..3c386490e 100644
--- a/app/models/ascor/assessment_result.rb
+++ b/app/models/ascor/assessment_result.rb
@@ -19,4 +19,5 @@ class ASCOR::AssessmentResult < ApplicationRecord
scope :of_type, ->(type) { includes(:indicator).where(ascor_assessment_indicators: {indicator_type: type}) }
scope :by_date, ->(date) { includes(:assessment).where(ascor_assessments: {assessment_date: date}) }
+ scope :published, -> { includes(assessment: :country).where(ascor_countries: {visibility_status: 'published'}) }
end
diff --git a/app/models/ascor/country.rb b/app/models/ascor/country.rb
index a4261566e..c10c17aa1 100644
--- a/app/models/ascor/country.rb
+++ b/app/models/ascor/country.rb
@@ -12,18 +12,12 @@
# created_at :datetime not null
# updated_at :datetime not null
# type_of_party :string
+# visibility_status :string default("draft")
#
class ASCOR::Country < ApplicationRecord
+ include VisibilityStatus
extend FriendlyId
- REGIONS = [
- 'Africa',
- 'Asia',
- 'Europe',
- 'Latin America and Caribbean',
- 'North America',
- 'Oceania'
- ].freeze
LENDING_GROUPS = %w[High-income Upper-middle-income Lower-middle-income Low-income].freeze
MONITOR_CATEGORIES = [
'Advanced economies',
@@ -47,7 +41,6 @@ class ASCOR::Country < ApplicationRecord
validates_presence_of :name, :slug, :iso, :region, :wb_lending_group, :fiscal_monitor_category
validates_uniqueness_of :name, :slug, :iso
- validates :region, inclusion: {in: REGIONS}, allow_nil: true
validates :wb_lending_group, inclusion: {in: LENDING_GROUPS}, allow_nil: true
validates :fiscal_monitor_category, inclusion: {in: MONITOR_CATEGORIES}, allow_nil: true
validates :type_of_party, inclusion: {in: TYPE_OF_PARTY}, allow_nil: true
diff --git a/app/models/company.rb b/app/models/company.rb
index 7c710fcc4..afd313e75 100644
--- a/app/models/company.rb
+++ b/app/models/company.rb
@@ -59,8 +59,8 @@ class Company < ApplicationRecord
delegate :level, :status, :status_description_short,
to: :latest_mq_assessment, prefix: :mq, allow_nil: true
- delegate :cp_alignment_2050, :cp_alignment_2025, :cp_alignment_2035,
- :cp_regional_alignment_2050, :cp_regional_alignment_2025, :cp_regional_alignment_2035,
+ delegate :cp_alignment_2050, :cp_alignment_2025, :cp_alignment_2027, :cp_alignment_2035,
+ :cp_regional_alignment_2050, :cp_regional_alignment_2025, :cp_regional_alignment_2027, :cp_regional_alignment_2035,
to: :latest_cp_assessment, allow_nil: true
validates :ca100, inclusion: {in: [true, false]}
diff --git a/app/models/cp/assessment.rb b/app/models/cp/assessment.rb
index 88b59f76e..af90028fb 100644
--- a/app/models/cp/assessment.rb
+++ b/app/models/cp/assessment.rb
@@ -23,6 +23,8 @@
# cp_assessmentable_id :bigint
# sector_id :bigint
# final_disclosure_year :integer
+# cp_alignment_2027 :string
+# cp_regional_alignment_2027 :string
#
module CP
@@ -59,9 +61,11 @@ class Assessment < ApplicationRecord
with_options allow_nil: true, allow_blank: true, inclusion: {in: CP::Alignment::ALLOWED_NAMES} do
validates :cp_alignment_2025
+ validates :cp_alignment_2027
validates :cp_alignment_2035
validates :cp_alignment_2050
validates :cp_regional_alignment_2025
+ validates :cp_regional_alignment_2027
validates :cp_regional_alignment_2035
validates :cp_regional_alignment_2050
end
diff --git a/app/models/news_article.rb b/app/models/news_article.rb
index 78a517259..7dceb0d91 100644
--- a/app/models/news_article.rb
+++ b/app/models/news_article.rb
@@ -2,15 +2,16 @@
#
# Table name: news_articles
#
-# id :bigint not null, primary key
-# title :string
-# content :text
-# publication_date :datetime
-# created_by_id :bigint
-# updated_by_id :bigint
-# created_at :datetime not null
-# updated_at :datetime not null
-# is_insight :boolean default(FALSE)
+# id :bigint not null, primary key
+# title :string
+# content :text
+# publication_date :datetime
+# created_by_id :bigint
+# updated_by_id :bigint
+# created_at :datetime not null
+# updated_at :datetime not null
+# is_insight :boolean default(FALSE)
+# short_description :text
#
class NewsArticle < ApplicationRecord
diff --git a/app/services/api/ascor/bubble_chart.rb b/app/services/api/ascor/bubble_chart.rb
index 1ac13ff9b..be6f96f6a 100644
--- a/app/services/api/ascor/bubble_chart.rb
+++ b/app/services/api/ascor/bubble_chart.rb
@@ -17,7 +17,7 @@ def call
::ASCOR::AssessmentResult
.by_date(@assessment_date)
.of_type(:area)
- .includes(assessment: :country)
+ .published
.order(:indicator_id)
.map do |result|
{
diff --git a/app/services/api/ascor/emissions_chart.rb b/app/services/api/ascor/emissions_chart.rb
index f502ab86e..dc33d3753 100644
--- a/app/services/api/ascor/emissions_chart.rb
+++ b/app/services/api/ascor/emissions_chart.rb
@@ -32,9 +32,9 @@ def collect_metadata
def countries
@countries ||= if country_ids.blank?
- ::ASCOR::Country.where(iso: ::ASCOR::Country::DEFAULT_COUNTRIES)
+ ::ASCOR::Country.published.where(iso: ::ASCOR::Country::DEFAULT_COUNTRIES)
else
- ::ASCOR::Country.where(id: country_ids)
+ ::ASCOR::Country.published.where(id: country_ids)
end
end
diff --git a/app/services/api/presenters/company.rb b/app/services/api/presenters/company.rb
index 39ac09e5c..2e2e92f02 100644
--- a/app/services/api/presenters/company.rb
+++ b/app/services/api/presenters/company.rb
@@ -36,6 +36,12 @@ def cp_alignment_2025
CP::Alignment.new(name: @company.cp_alignment_2025, sector: @company.sector.name)
end
+ def cp_alignment_2027
+ return unless @company.cp_alignment_2027.present?
+
+ CP::Alignment.new(name: @company.cp_alignment_2027, sector: @company.sector.name)
+ end
+
def cp_alignment_2035
return unless @company.cp_alignment_2035.present?
@@ -58,6 +64,12 @@ def cp_regional_alignment_2025
CP::Alignment.new(name: @company.cp_regional_alignment_2025, sector: @company.sector.name)
end
+ def cp_regional_alignment_2027
+ return unless @company.cp_regional_alignment_2027.present?
+
+ CP::Alignment.new(name: @company.cp_regional_alignment_2027, sector: @company.sector.name)
+ end
+
def cp_regional_alignment_2035
return unless @company.cp_regional_alignment_2035.present?
diff --git a/app/services/csv_export/ascor/assessments.rb b/app/services/csv_export/ascor/assessments.rb
index 460ddabd6..7af113133 100644
--- a/app/services/csv_export/ascor/assessments.rb
+++ b/app/services/csv_export/ascor/assessments.rb
@@ -57,7 +57,8 @@ def year_values_for(assessment)
end
def assessments
- @assessments ||= ::ASCOR::Assessment.joins(:country).includes(:country).order(:assessment_date, 'ascor_countries.name')
+ @assessments ||= ::ASCOR::Assessment.joins(:country).includes(:country)
+ .where(ascor_countries: {visibility_status: 'published'}).order(:assessment_date, 'ascor_countries.name')
end
def assessment_results
diff --git a/app/services/csv_export/ascor/benchmarks.rb b/app/services/csv_export/ascor/benchmarks.rb
index 2ce163a71..1c3e440fc 100644
--- a/app/services/csv_export/ascor/benchmarks.rb
+++ b/app/services/csv_export/ascor/benchmarks.rb
@@ -39,7 +39,8 @@ def year_columns
end
def benchmarks
- @benchmarks ||= ::ASCOR::Benchmark.joins(:country).includes(:country).order('ascor_countries.name')
+ @benchmarks ||= ::ASCOR::Benchmark.joins(:country).includes(:country)
+ .where(ascor_countries: {visibility_status: 'published'}).order('ascor_countries.name')
end
end
end
diff --git a/app/services/csv_export/ascor/countries.rb b/app/services/csv_export/ascor/countries.rb
index 8c5b6ae61..5790c55b9 100644
--- a/app/services/csv_export/ascor/countries.rb
+++ b/app/services/csv_export/ascor/countries.rb
@@ -32,7 +32,7 @@ def call
private
def countries
- @countries ||= ::ASCOR::Country.order(:name)
+ @countries ||= ::ASCOR::Country.published.order(:name)
end
end
end
diff --git a/app/services/csv_export/ascor/pathways.rb b/app/services/csv_export/ascor/pathways.rb
index d54a4e253..895243d68 100644
--- a/app/services/csv_export/ascor/pathways.rb
+++ b/app/services/csv_export/ascor/pathways.rb
@@ -58,6 +58,7 @@ def year_columns
def pathways
@pathways ||= ::ASCOR::Pathway.joins(:country).includes(:country)
+ .where(ascor_countries: {visibility_status: 'published'})
.order(:assessment_date, 'ascor_countries.name')
end
end
diff --git a/app/services/csv_export/user/company_cp_assessments.rb b/app/services/csv_export/user/company_cp_assessments.rb
index 5f7e140e1..a28eb691e 100644
--- a/app/services/csv_export/user/company_cp_assessments.rb
+++ b/app/services/csv_export/user/company_cp_assessments.rb
@@ -20,6 +20,7 @@ def call
'Publication Date',
'Assessment Date',
'Carbon Performance Alignment 2025',
+ 'Carbon Performance Alignment 2027',
'Carbon Performance Alignment 2035',
'Carbon Performance Alignment 2050',
'Benchmark ID',
@@ -48,6 +49,7 @@ def call
assessment.publication_date,
assessment.assessment_date,
assessment.cp_alignment_2025,
+ assessment.cp_alignment_2027,
assessment.cp_alignment_2035,
assessment.cp_alignment_2050,
assessment.cp_benchmark_id,
diff --git a/app/services/csv_export/user/company_cp_assessments_regional.rb b/app/services/csv_export/user/company_cp_assessments_regional.rb
index 9e9b82da3..9cbaedaf0 100644
--- a/app/services/csv_export/user/company_cp_assessments_regional.rb
+++ b/app/services/csv_export/user/company_cp_assessments_regional.rb
@@ -23,6 +23,7 @@ def call
'Assessment Date',
'Region',
'Carbon Performance Regional Alignment 2025',
+ 'Carbon Performance Regional Alignment 2027',
'Carbon Performance Regional Alignment 2035',
'Carbon Performance Regional Alignment 2050',
'Regional Benchmark ID',
@@ -52,6 +53,7 @@ def call
assessment.assessment_date,
assessment.region,
assessment.cp_regional_alignment_2025,
+ assessment.cp_regional_alignment_2027,
assessment.cp_regional_alignment_2035,
assessment.cp_regional_alignment_2050,
assessment.cp_regional_benchmark_id,
diff --git a/app/services/csv_export/user/company_latest_assessments.rb b/app/services/csv_export/user/company_latest_assessments.rb
index 6129712aa..8de3d320e 100644
--- a/app/services/csv_export/user/company_latest_assessments.rb
+++ b/app/services/csv_export/user/company_latest_assessments.rb
@@ -32,10 +32,12 @@ def call
'CP Assessment Date',
'Benchmark ID',
'Carbon Performance Alignment 2025',
+ 'Carbon Performance Alignment 2027',
'Carbon Performance Alignment 2035',
'Carbon Performance Alignment 2050',
'Years with targets',
'Previous Carbon Performance Alignment 2025',
+ 'Previous Carbon Performance Alignment 2027',
'Previous Carbon Performance Alignment 2035',
'Previous Carbon Performance Alignment 2050',
'Previous Years with targets',
@@ -74,10 +76,12 @@ def call
cp_assessment&.assessment_date,
cp_assessment&.cp_benchmark_id,
cp_assessment&.cp_alignment_2025,
+ cp_assessment&.cp_alignment_2027,
cp_assessment&.cp_alignment_2035,
cp_assessment&.cp_alignment_2050,
cp_assessment&.years_with_targets&.join(';'),
prev_cp_assessment&.cp_alignment_2025,
+ prev_cp_assessment&.cp_alignment_2027,
prev_cp_assessment&.cp_alignment_2035,
prev_cp_assessment&.cp_alignment_2050,
prev_cp_assessment&.years_with_targets&.join(';'),
diff --git a/app/services/csv_import/ascor_countries.rb b/app/services/csv_import/ascor_countries.rb
index 24cf8f6fd..b94def069 100644
--- a/app/services/csv_import/ascor_countries.rb
+++ b/app/services/csv_import/ascor_countries.rb
@@ -16,6 +16,7 @@ def import
if row.header?(:type_of_party_to_the_united_nations_framework_convention_on_climate_change)
country.type_of_party = row[:type_of_party_to_the_united_nations_framework_convention_on_climate_change]
end
+ country.visibility_status = row[:visibility_status]&.downcase if row.header?(:visibility_status)
was_new_record = country.new_record?
any_changes = country.changed?
diff --git a/app/services/csv_import/company_cp_assessments.rb b/app/services/csv_import/company_cp_assessments.rb
index 0f82c6279..e924a8d58 100644
--- a/app/services/csv_import/company_cp_assessments.rb
+++ b/app/services/csv_import/company_cp_assessments.rb
@@ -12,12 +12,16 @@ def import
assessment.emissions = parse_emissions(row) if emission_headers?(row)
assessment.last_reported_year = row[:last_reported_year] if row.header?(:last_reported_year)
assessment.cp_alignment_2025 = CP::Alignment.format_name(row[:cp_alignment_2025]) if row.header?(:cp_alignment_2025)
+ assessment.cp_alignment_2027 = CP::Alignment.format_name(row[:cp_alignment_2027]) if row.header?(:cp_alignment_2027)
assessment.cp_alignment_2035 = CP::Alignment.format_name(row[:cp_alignment_2035]) if row.header?(:cp_alignment_2035)
assessment.cp_alignment_2050 = CP::Alignment.format_name(row[:cp_alignment_2050]) if row.header?(:cp_alignment_2050)
assessment.region = parse_cp_benchmark_region(row[:region]) if row.header?(:region)
if row.header?(:cp_regional_alignment_2025)
assessment.cp_regional_alignment_2025 = CP::Alignment.format_name(row[:cp_regional_alignment_2025])
end
+ if row.header?(:cp_regional_alignment_2027)
+ assessment.cp_regional_alignment_2027 = CP::Alignment.format_name(row[:cp_regional_alignment_2027])
+ end
if row.header?(:cp_regional_alignment_2035)
assessment.cp_regional_alignment_2035 = CP::Alignment.format_name(row[:cp_regional_alignment_2035])
end
diff --git a/app/views/admin/cp_assessments/_form.html.erb b/app/views/admin/cp_assessments/_form.html.erb
index 611fa2932..84543635e 100644
--- a/app/views/admin/cp_assessments/_form.html.erb
+++ b/app/views/admin/cp_assessments/_form.html.erb
@@ -13,10 +13,12 @@
<%= f.input :last_reported_year %>
<%= f.input :assumptions %>
<%= f.input :cp_alignment_2025 %>
+ <%= f.input :cp_alignment_2027 %>
<%= f.input :cp_alignment_2035 %>
<%= f.input :cp_alignment_2050 %>
<%= f.input :region, as: :select, collection: CP::Assessment::REGIONS, required: false %>
<%= f.input :cp_regional_alignment_2025 %>
+ <%= f.input :cp_regional_alignment_2027 %>
<%= f.input :cp_regional_alignment_2035 %>
<%= f.input :cp_regional_alignment_2050 %>
<%= f.input :years_with_targets_string, label: 'Years with targets', as: :tags, hint: 'Type a year and press ENTER. Non integers will be rejected.' %>
diff --git a/app/views/tpi/ascor/_emissions_chart.html.erb b/app/views/tpi/ascor/_emissions_chart.html.erb
index e4e69777a..4413e35eb 100644
--- a/app/views/tpi/ascor/_emissions_chart.html.erb
+++ b/app/views/tpi/ascor/_emissions_chart.html.erb
@@ -3,8 +3,8 @@
default_emissions_metric_filter: 'Absolute',
emissions_boundary_filter: ASCOR::EmissionsBoundary::VALUES,
default_emissions_boundary_filter: 'Production - excluding LULUCF',
- countries: ASCOR::Country.all.sort_by(&:name).map { |c| { id: c.id, iso: c.iso, name: c.name } },
- default_countries: ASCOR::Country.where(iso: ASCOR::Country::DEFAULT_COUNTRIES).map(&:id),
+ countries: ASCOR::Country.published.all.sort_by(&:name).map { |c| { id: c.id, iso: c.iso, name: c.name } },
+ default_countries: ASCOR::Country.published.where(iso: ASCOR::Country::DEFAULT_COUNTRIES).map(&:id),
emissions_data_url: emissions_chart_data_tpi_ascor_index_path
}) %>
<%= react_component('InfoModal', {
diff --git a/app/views/tpi/companies/show.html.erb b/app/views/tpi/companies/show.html.erb
index 1ec8bd51f..88b4e7a9b 100644
--- a/app/views/tpi/companies/show.html.erb
+++ b/app/views/tpi/companies/show.html.erb
@@ -97,7 +97,11 @@
<% long_term_header = "Long-term
alignment in #{@company.sector.name.downcase == 'electricity utilities' ? '2040-50' : '2050'}" %>
- <%= render 'cp_alignment', header: 'Short-term
alignment in 2025', alignment: @company_presenter.cp_alignment_2025 %>
+ <% if @company_presenter.cp_alignment_2027.present? %>
+ <%= render 'cp_alignment', header: 'Short-term
alignment in 2027', alignment: @company_presenter.cp_alignment_2027 %>
+ <% else %>
+ <%= render 'cp_alignment', header: 'Short-term
alignment in 2025', alignment: @company_presenter.cp_alignment_2025 %>
+ <% end %>
<%= render 'cp_alignment', header: 'Medium-term
alignment in 2035', alignment: @company_presenter.cp_alignment_2035 %>
<%= render 'cp_alignment', header: long_term_header, alignment: @company_presenter.cp_alignment_2050 %>
@@ -105,7 +109,11 @@
<% long_term_header = "Long-term
alignment in #{@company.sector.name.downcase == 'electricity utilities' ? '2040-50' : '2050'}" %>
- <%= render 'cp_alignment', header: 'Short-term
alignment in 2025', alignment: @company_presenter.cp_regional_alignment_2025 %>
+ <% if @company_presenter.cp_regional_alignment_2027.present? %>
+ <%= render 'cp_alignment', header: 'Short-term
alignment in 2027', alignment: @company_presenter.cp_regional_alignment_2027 %>
+ <% else %>
+ <%= render 'cp_alignment', header: 'Short-term
alignment in 2025', alignment: @company_presenter.cp_regional_alignment_2025 %>
+ <% end %>
<%= render 'cp_alignment', header: 'Medium-term
alignment in 2035', alignment: @company_presenter.cp_regional_alignment_2035 %>
<%= render 'cp_alignment', header: long_term_header, alignment: @company_presenter.cp_regional_alignment_2050 %>
diff --git a/db/migrate/20240202090401_add_cp_alignment2027_to_cp_assessments.rb b/db/migrate/20240202090401_add_cp_alignment2027_to_cp_assessments.rb
new file mode 100644
index 000000000..57e4b2db6
--- /dev/null
+++ b/db/migrate/20240202090401_add_cp_alignment2027_to_cp_assessments.rb
@@ -0,0 +1,6 @@
+class AddCPAlignment2027ToCPAssessments < ActiveRecord::Migration[6.1]
+ def change
+ add_column :cp_assessments, :cp_alignment_2027, :string
+ add_column :cp_assessments, :cp_regional_alignment_2027, :string
+ end
+end
diff --git a/db/migrate/20240206094238_add_visibility_status_to_ascor_countries.rb b/db/migrate/20240206094238_add_visibility_status_to_ascor_countries.rb
new file mode 100644
index 000000000..5f5c82b4c
--- /dev/null
+++ b/db/migrate/20240206094238_add_visibility_status_to_ascor_countries.rb
@@ -0,0 +1,6 @@
+class AddVisibilityStatusToASCORCountries < ActiveRecord::Migration[6.1]
+ def change
+ add_column :ascor_countries, :visibility_status, :string, index: true, default: 'draft'
+ ASCOR::Country.update_all visibility_status: 'published'
+ end
+end
diff --git a/db/seeds/tpi/ascor_countries.csv b/db/seeds/tpi/ascor_countries.csv
index 4b5fcb2ac..15d9f3a90 100644
--- a/db/seeds/tpi/ascor_countries.csv
+++ b/db/seeds/tpi/ascor_countries.csv
@@ -1,26 +1,26 @@
-Id,Name,Country ISO code,Region,World Bank lending group,International Monetary Fund fiscal monitor category,Type of Party to the United Nations Framework Convention on Climate Change
-1,United States,USA,North America,High-income,Advanced economies,Annex I
-2,Japan,JPN,Asia,High-income,Advanced economies,Annex I
-3,France,FRA,Europe,High-income,Advanced economies,Annex I
-4,Italy,ITA,Europe,High-income,Advanced economies,Annex I
-5,Egypt,EGY,Africa,Lower-middle-income,Emerging market economies,Non-Annex I
-6,Uruguay,URY,Latin America and Caribbean,High-income,Emerging market economies,Non-Annex I
-7,Saudi Arabia,SAU,Asia,High-income,Emerging market economies,Non-Annex I
-8,Australia,AUS,Oceania,High-income,Advanced economies,Annex I
-9,Mexico,MEX,Latin America and Caribbean,Upper-middle-income,Emerging market economies,Non-Annex I
-10,China,CHN,Asia,Upper-middle-income,Emerging market economies,Non-Annex I
-11,Poland,POL,Europe,High-income,Emerging market economies,Annex I
-12,Indonesia,IDN,Asia,Upper-middle-income,Emerging market economies,Non-Annex I
-13,Kazakhstan,KAZ,Asia,Upper-middle-income,Emerging market economies,Non-Annex I
-14,Canada,CAN,North America,High-income,Advanced economies,Annex I
-15,Thailand,THA,Asia,Upper-middle-income,Emerging market economies,Non-Annex I
-16,Chile,CHL,Latin America and Caribbean,High-income,Emerging market economies,Non-Annex I
-17,South Africa,ZAF,Africa,Upper-middle-income,Emerging market economies,Non-Annex I
-18,Brazil,BRA,Latin America and Caribbean,Upper-middle-income,Emerging market economies,Non-Annex I
-19,Kenya,KEN,Africa,Lower-middle-income,Low-income developing countries,Non-Annex I
-20,Morocco,MAR,Africa,Lower-middle-income,Emerging market economies,Non-Annex I
-21,Germany,DEU,Europe,High-income,Advanced economies,Annex I
-22,United Kingdom,GBR,Europe,High-income,Advanced economies,Annex I
-23,India,IND,Asia,Lower-middle-income,Emerging market economies,Non-Annex I
-24,Barbados,BRB,Latin America and Caribbean,High-income,Emerging market economies,Non-Annex I
-25,Bangladesh,BGD,Asia,Lower-middle-income,Low-income developing countries,Non-Annex I
+Id,Name,Country ISO code,Region,World Bank lending group,International Monetary Fund fiscal monitor category,Type of Party to the United Nations Framework Convention on Climate Change,Visibility status
+1,United States,USA,North America,High-income,Advanced economies,Annex I,published
+2,Japan,JPN,Asia,High-income,Advanced economies,Annex I,published
+3,France,FRA,Europe,High-income,Advanced economies,Annex I,published
+4,Italy,ITA,Europe,High-income,Advanced economies,Annex I,published
+5,Egypt,EGY,Africa,Lower-middle-income,Emerging market economies,Non-Annex I,published
+6,Uruguay,URY,Latin America and Caribbean,High-income,Emerging market economies,Non-Annex I,published
+7,Saudi Arabia,SAU,Asia,High-income,Emerging market economies,Non-Annex I,published
+8,Australia,AUS,Oceania,High-income,Advanced economies,Annex I,published
+9,Mexico,MEX,Latin America and Caribbean,Upper-middle-income,Emerging market economies,Non-Annex I,published
+10,China,CHN,Asia,Upper-middle-income,Emerging market economies,Non-Annex I,published
+11,Poland,POL,Europe,High-income,Emerging market economies,Annex I,published
+12,Indonesia,IDN,Asia,Upper-middle-income,Emerging market economies,Non-Annex I,published
+13,Kazakhstan,KAZ,Asia,Upper-middle-income,Emerging market economies,Non-Annex I,published
+14,Canada,CAN,North America,High-income,Advanced economies,Annex I,published
+15,Thailand,THA,Asia,Upper-middle-income,Emerging market economies,Non-Annex I,published
+16,Chile,CHL,Latin America and Caribbean,High-income,Emerging market economies,Non-Annex I,published
+17,South Africa,ZAF,Africa,Upper-middle-income,Emerging market economies,Non-Annex I,published
+18,Brazil,BRA,Latin America and Caribbean,Upper-middle-income,Emerging market economies,Non-Annex I,published
+19,Kenya,KEN,Africa,Lower-middle-income,Low-income developing countries,Non-Annex I,published
+20,Morocco,MAR,Africa,Lower-middle-income,Emerging market economies,Non-Annex I,published
+21,Germany,DEU,Europe,High-income,Advanced economies,Annex I,published
+22,United Kingdom,GBR,Europe,High-income,Advanced economies,Annex I,published
+23,India,IND,Asia,Lower-middle-income,Emerging market economies,Non-Annex I,published
+24,Barbados,BRB,Latin America and Caribbean,High-income,Emerging market economies,Non-Annex I,published
+25,Bangladesh,BGD,Asia,Lower-middle-income,Low-income developing countries,Non-Annex I,published
diff --git a/db/seeds/tpi/company-cp-assessments.csv b/db/seeds/tpi/company-cp-assessments.csv
index b6d2e6979..9f32e335d 100644
--- a/db/seeds/tpi/company-cp-assessments.csv
+++ b/db/seeds/tpi/company-cp-assessments.csv
@@ -1,224 +1,224 @@
-"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"
-,"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",,,,,,
-,"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",,,,,,
+"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",,,,,,
+- 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",,,,,,
+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",,,,,,
+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",,,,,,
+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",,,,,,
+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",,,,,,
+- 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",,,,,,
+- 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",,,,,,
+- 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",,,,,,
+● 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",,,,,,
+● 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 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",,,,,,,,
diff --git a/db/structure.sql b/db/structure.sql
index d001381a5..4402487d8 100644
--- a/db/structure.sql
+++ b/db/structure.sql
@@ -469,7 +469,8 @@ CREATE TABLE public.ascor_countries (
fiscal_monitor_category character varying,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
- type_of_party character varying
+ type_of_party character varying,
+ visibility_status character varying DEFAULT 'draft'::character varying
);
@@ -815,7 +816,9 @@ CREATE TABLE public.cp_assessments (
cp_assessmentable_type character varying,
cp_assessmentable_id bigint,
sector_id bigint,
- final_disclosure_year integer
+ final_disclosure_year integer,
+ cp_alignment_2027 character varying,
+ cp_regional_alignment_2027 character varying
);
@@ -4171,6 +4174,8 @@ INSERT INTO "schema_migrations" (version) VALUES
('20231023120255'),
('20231108125346'),
('20231207082211'),
-('20240119084250');
+('20240119084250'),
+('20240202090401'),
+('20240206094238');
diff --git a/db/test-dump.psql b/db/test-dump.psql
index 32f95c519..ba7329d74 100644
Binary files a/db/test-dump.psql and b/db/test-dump.psql differ
diff --git a/public/tpi/export_support/User guide TPI files.xlsx b/public/tpi/export_support/User guide TPI files.xlsx
index 95fd71655..72bf50e23 100644
Binary files a/public/tpi/export_support/User guide TPI files.xlsx and b/public/tpi/export_support/User guide TPI files.xlsx differ
diff --git a/spec/commands/csv_data_upload_spec.rb b/spec/commands/csv_data_upload_spec.rb
index d9acfb2ea..425e1731f 100644
--- a/spec/commands/csv_data_upload_spec.rb
+++ b/spec/commands/csv_data_upload_spec.rb
@@ -1272,8 +1272,10 @@
)
expect(assessment.cp_alignment_2050).to eq('No or unsuitable disclosure')
expect(assessment.cp_alignment_2025).to eq('Paris Pledges')
+ expect(assessment.cp_alignment_2027).to eq('Paris Pledges')
expect(assessment.cp_alignment_2035).to eq('National Pledges')
expect(assessment.cp_regional_alignment_2025).to eq('1.5 Degrees')
+ 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(assessment2.cp_alignment_2050).to eq('Not Aligned')
@@ -1458,14 +1460,14 @@
expect_data_upload_results(
ASCOR::Country,
ascor_countries_csv,
- {new_records: 1, not_changed_records: 1, rows: 2, updated_records: 0},
+ {new_records: 2, not_changed_records: 1, rows: 3, updated_records: 0},
custom_uploader: 'ASCORCountries'
)
# subsequent import should not create or update any record
expect_data_upload_results(
ASCOR::Country,
ascor_countries_csv,
- {new_records: 0, not_changed_records: 2, rows: 2, updated_records: 0},
+ {new_records: 0, not_changed_records: 3, rows: 3, updated_records: 0},
custom_uploader: 'ASCORCountries'
)
diff --git a/spec/controllers/tpi/ascor_controller_spec.rb b/spec/controllers/tpi/ascor_controller_spec.rb
index 6b64d0c9b..c3ba4eb27 100644
--- a/spec/controllers/tpi/ascor_controller_spec.rb
+++ b/spec/controllers/tpi/ascor_controller_spec.rb
@@ -10,6 +10,16 @@
let_it_be(:ascor_benchmark) { create :ascor_benchmark, country: ascor_country }
let_it_be(:ascor_pathway) { create :ascor_pathway, country: ascor_country }
+ let_it_be(:ascor_country_draft) do
+ create :ascor_country, name: 'Poland', iso: 'PLN', visibility_status: 'draft'
+ end
+ let_it_be(:ascor_assessment_draft) { create :ascor_assessment, country: ascor_country_draft }
+ let_it_be(:ascor_assessment_result_draft) do
+ create :ascor_assessment_result, assessment: ascor_assessment_draft, indicator: ascor_assessment_indicator
+ end
+ let_it_be(:ascor_benchmark_draft) { create :ascor_benchmark, country: ascor_country_draft }
+ let_it_be(:ascor_pathway_draft) { create :ascor_pathway, country: ascor_country_draft }
+
describe 'GET index' do
subject { get :index }
@@ -20,6 +30,12 @@
subject { get :show, params: {id: ascor_country.slug} }
it { is_expected.to be_successful }
+
+ context 'when country is draft' do
+ subject { get :show, params: {id: ascor_country_draft.slug} }
+
+ it { is_expected.to redirect_to(tpi_ascor_index_path) }
+ end
end
describe 'GET user download' do
diff --git a/spec/factories/ascor_countries.rb b/spec/factories/ascor_countries.rb
index 23784e8ea..2bed1179a 100644
--- a/spec/factories/ascor_countries.rb
+++ b/spec/factories/ascor_countries.rb
@@ -12,6 +12,7 @@
# created_at :datetime not null
# updated_at :datetime not null
# type_of_party :string
+# visibility_status :string default("draft")
#
FactoryBot.define do
factory :ascor_country, class: 'ASCOR::Country' do
@@ -21,5 +22,6 @@
wb_lending_group { 'High-income' }
fiscal_monitor_category { 'Advanced economies' }
type_of_party { 'Annex I' }
+ visibility_status { 'published' }
end
end
diff --git a/spec/factories/cp_assessment.rb b/spec/factories/cp_assessment.rb
index c783a3a9b..3f9cf42a9 100644
--- a/spec/factories/cp_assessment.rb
+++ b/spec/factories/cp_assessment.rb
@@ -10,10 +10,12 @@
assumptions { 'Assumptions about the assessment' }
cp_alignment_2050 { 'Paris Pledges' }
cp_alignment_2025 { 'Paris Pledges' }
+ cp_alignment_2027 { 'Paris Pledges' }
cp_alignment_2035 { 'Paris Pledges' }
region { 'Europe' }
cp_regional_alignment_2025 { 'Paris Pledges' }
+ cp_regional_alignment_2027 { 'Paris Pledges' }
cp_regional_alignment_2035 { 'Paris Pledges' }
cp_regional_alignment_2050 { 'Paris Pledges' }
diff --git a/spec/factories/news_articles.rb b/spec/factories/news_articles.rb
index dc915fa85..c9e577149 100644
--- a/spec/factories/news_articles.rb
+++ b/spec/factories/news_articles.rb
@@ -2,15 +2,16 @@
#
# Table name: news_articles
#
-# id :bigint not null, primary key
-# title :string
-# content :text
-# publication_date :datetime
-# created_by_id :bigint
-# updated_by_id :bigint
-# created_at :datetime not null
-# updated_at :datetime not null
-# is_insight :boolean default(FALSE)
+# id :bigint not null, primary key
+# title :string
+# content :text
+# publication_date :datetime
+# created_by_id :bigint
+# updated_by_id :bigint
+# created_at :datetime not null
+# updated_at :datetime not null
+# is_insight :boolean default(FALSE)
+# short_description :text
#
FactoryBot.define do
diff --git a/spec/fixtures/snapshots/tpi_all_sectors_user_company_latest_assessments_beta_5.0_csv.json b/spec/fixtures/snapshots/tpi_all_sectors_user_company_latest_assessments_beta_5.0_csv.json
index 457741926..e1a6a9dcc 100644
--- a/spec/fixtures/snapshots/tpi_all_sectors_user_company_latest_assessments_beta_5.0_csv.json
+++ b/spec/fixtures/snapshots/tpi_all_sectors_user_company_latest_assessments_beta_5.0_csv.json
@@ -30,10 +30,12 @@
"CP Assessment Date": "01/06/2020",
"Benchmark ID": "Energy_01/05/2013",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Paris Pledges",
"Years with targets": "2025;2030;2040",
"Previous Carbon Performance Alignment 2025": "Paris Pledges",
+ "Previous Carbon Performance Alignment 2027": "Paris Pledges",
"Previous Carbon Performance Alignment 2035": "Paris Pledges",
"Previous Carbon Performance Alignment 2050": "Paris Pledges",
"Previous Years with targets": "2025;2030;2040",
@@ -78,10 +80,12 @@
"CP Assessment Date": "01/05/2019",
"Benchmark ID": "Technology_01/05/2011",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Paris Pledges",
"Years with targets": "2025;2030;2040",
"Previous Carbon Performance Alignment 2025": "Paris Pledges",
+ "Previous Carbon Performance Alignment 2027": "Paris Pledges",
"Previous Carbon Performance Alignment 2035": "Paris Pledges",
"Previous Carbon Performance Alignment 2050": "Below 2 Degrees",
"Previous Years with targets": "2025;2030;2040",
@@ -126,10 +130,12 @@
"CP Assessment Date": "01/05/2020",
"Benchmark ID": "Technology_01/05/2011",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Paris Pledges",
"Years with targets": "2025;2030;2040",
"Previous Carbon Performance Alignment 2025": "Paris Pledges",
+ "Previous Carbon Performance Alignment 2027": "Paris Pledges",
"Previous Carbon Performance Alignment 2035": "Paris Pledges",
"Previous Carbon Performance Alignment 2050": "Below 2 Degrees",
"Previous Years with targets": "2025;2030;2040",
diff --git a/spec/fixtures/snapshots/tpi_all_sectors_user_company_latest_assessments_csv.json b/spec/fixtures/snapshots/tpi_all_sectors_user_company_latest_assessments_csv.json
index f1a13e240..67e83a1c0 100644
--- a/spec/fixtures/snapshots/tpi_all_sectors_user_company_latest_assessments_csv.json
+++ b/spec/fixtures/snapshots/tpi_all_sectors_user_company_latest_assessments_csv.json
@@ -30,10 +30,12 @@
"CP Assessment Date": "01/06/2020",
"Benchmark ID": "Energy_01/05/2013",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Paris Pledges",
"Years with targets": "2025;2030;2040",
"Previous Carbon Performance Alignment 2025": "Paris Pledges",
+ "Previous Carbon Performance Alignment 2027": "Paris Pledges",
"Previous Carbon Performance Alignment 2035": "Paris Pledges",
"Previous Carbon Performance Alignment 2050": "Paris Pledges",
"Previous Years with targets": "2025;2030;2040",
@@ -78,10 +80,12 @@
"CP Assessment Date": "01/05/2019",
"Benchmark ID": "Technology_01/05/2011",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Paris Pledges",
"Years with targets": "2025;2030;2040",
"Previous Carbon Performance Alignment 2025": "Paris Pledges",
+ "Previous Carbon Performance Alignment 2027": "Paris Pledges",
"Previous Carbon Performance Alignment 2035": "Paris Pledges",
"Previous Carbon Performance Alignment 2050": "Below 2 Degrees",
"Previous Years with targets": "2025;2030;2040",
@@ -126,10 +130,12 @@
"CP Assessment Date": "01/05/2020",
"Benchmark ID": "Technology_01/05/2011",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Paris Pledges",
"Years with targets": "2025;2030;2040",
"Previous Carbon Performance Alignment 2025": "Paris Pledges",
+ "Previous Carbon Performance Alignment 2027": "Paris Pledges",
"Previous Carbon Performance Alignment 2035": "Paris Pledges",
"Previous Carbon Performance Alignment 2050": "Below 2 Degrees",
"Previous Years with targets": "2025;2030;2040",
diff --git a/spec/fixtures/snapshots/tpi_all_sectors_user_download_cp_assessments_csv.json b/spec/fixtures/snapshots/tpi_all_sectors_user_download_cp_assessments_csv.json
index edd31e84e..74a42a38f 100644
--- a/spec/fixtures/snapshots/tpi_all_sectors_user_download_cp_assessments_csv.json
+++ b/spec/fixtures/snapshots/tpi_all_sectors_user_download_cp_assessments_csv.json
@@ -11,10 +11,11 @@
"Publication Date": "01/06/2020",
"Assessment Date": "01/06/2020",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Paris Pledges",
- "Years with targets": "2025;2030;2040",
"Benchmark ID": "Energy_01/05/2013",
+ "Years with targets": "2025;2030;2040",
"History to Projection cutoff year": "2020",
"CP Unit": null,
"Assumptions": "Assumptions about the assessment",
@@ -37,10 +38,11 @@
"Publication Date": "01/05/2014",
"Assessment Date": "01/05/2014",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Paris Pledges",
- "Years with targets": "2025;2030;2040",
"Benchmark ID": "Energy_01/05/2013",
+ "Years with targets": "2025;2030;2040",
"History to Projection cutoff year": "2020",
"CP Unit": null,
"Assumptions": "Assumptions about the assessment",
@@ -63,10 +65,11 @@
"Publication Date": "01/05/2019",
"Assessment Date": "01/05/2019",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Paris Pledges",
- "Years with targets": "2025;2030;2040",
"Benchmark ID": "Technology_01/05/2011",
+ "Years with targets": "2025;2030;2040",
"History to Projection cutoff year": "2020",
"CP Unit": null,
"Assumptions": "Assumptions about the assessment",
@@ -89,10 +92,11 @@
"Publication Date": "01/05/2012",
"Assessment Date": "01/05/2012",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Below 2 Degrees",
- "Years with targets": "2025;2030;2040",
"Benchmark ID": "Technology_01/05/2011",
+ "Years with targets": "2025;2030;2040",
"History to Projection cutoff year": "2020",
"CP Unit": null,
"Assumptions": "Assumptions about the assessment",
@@ -115,10 +119,11 @@
"Publication Date": "01/05/2020",
"Assessment Date": "01/05/2020",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Paris Pledges",
- "Years with targets": "2025;2030;2040",
"Benchmark ID": "Technology_01/05/2011",
+ "Years with targets": "2025;2030;2040",
"History to Projection cutoff year": "2020",
"CP Unit": null,
"Assumptions": "Assumptions about the assessment",
@@ -141,10 +146,11 @@
"Publication Date": "01/05/2014",
"Assessment Date": "01/05/2014",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Below 2 Degrees",
- "Years with targets": "2025;2030;2040",
"Benchmark ID": "Technology_01/05/2011",
+ "Years with targets": "2025;2030;2040",
"History to Projection cutoff year": "2020",
"CP Unit": null,
"Assumptions": "Assumptions about the assessment",
diff --git a/spec/fixtures/snapshots/tpi_single_sector_user_company_latest_assessments_beta_5.0_csv.json b/spec/fixtures/snapshots/tpi_single_sector_user_company_latest_assessments_beta_5.0_csv.json
index ffd11b771..38d926052 100644
--- a/spec/fixtures/snapshots/tpi_single_sector_user_company_latest_assessments_beta_5.0_csv.json
+++ b/spec/fixtures/snapshots/tpi_single_sector_user_company_latest_assessments_beta_5.0_csv.json
@@ -30,10 +30,12 @@
"CP Assessment Date": "01/05/2019",
"Benchmark ID": "Technology_01/05/2011",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Paris Pledges",
"Years with targets": "2025;2030;2040",
"Previous Carbon Performance Alignment 2025": "Paris Pledges",
+ "Previous Carbon Performance Alignment 2027": "Paris Pledges",
"Previous Carbon Performance Alignment 2035": "Paris Pledges",
"Previous Carbon Performance Alignment 2050": "Below 2 Degrees",
"Previous Years with targets": "2025;2030;2040",
@@ -78,10 +80,12 @@
"CP Assessment Date": "01/05/2020",
"Benchmark ID": "Technology_01/05/2011",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Paris Pledges",
"Years with targets": "2025;2030;2040",
"Previous Carbon Performance Alignment 2025": "Paris Pledges",
+ "Previous Carbon Performance Alignment 2027": "Paris Pledges",
"Previous Carbon Performance Alignment 2035": "Paris Pledges",
"Previous Carbon Performance Alignment 2050": "Below 2 Degrees",
"Previous Years with targets": "2025;2030;2040",
diff --git a/spec/fixtures/snapshots/tpi_single_sector_user_company_latest_assessments_csv.json b/spec/fixtures/snapshots/tpi_single_sector_user_company_latest_assessments_csv.json
index feaf4cd48..4556ab15b 100644
--- a/spec/fixtures/snapshots/tpi_single_sector_user_company_latest_assessments_csv.json
+++ b/spec/fixtures/snapshots/tpi_single_sector_user_company_latest_assessments_csv.json
@@ -30,10 +30,12 @@
"CP Assessment Date": "01/05/2019",
"Benchmark ID": "Technology_01/05/2011",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Paris Pledges",
"Years with targets": "2025;2030;2040",
"Previous Carbon Performance Alignment 2025": "Paris Pledges",
+ "Previous Carbon Performance Alignment 2027": "Paris Pledges",
"Previous Carbon Performance Alignment 2035": "Paris Pledges",
"Previous Carbon Performance Alignment 2050": "Below 2 Degrees",
"Previous Years with targets": "2025;2030;2040",
@@ -78,10 +80,12 @@
"CP Assessment Date": "01/05/2020",
"Benchmark ID": "Technology_01/05/2011",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Paris Pledges",
"Years with targets": "2025;2030;2040",
"Previous Carbon Performance Alignment 2025": "Paris Pledges",
+ "Previous Carbon Performance Alignment 2027": "Paris Pledges",
"Previous Carbon Performance Alignment 2035": "Paris Pledges",
"Previous Carbon Performance Alignment 2050": "Below 2 Degrees",
"Previous Years with targets": "2025;2030;2040",
diff --git a/spec/fixtures/snapshots/tpi_single_sector_user_download_cp_assessments_csv.json b/spec/fixtures/snapshots/tpi_single_sector_user_download_cp_assessments_csv.json
index cf7bb1712..ddc3cee03 100644
--- a/spec/fixtures/snapshots/tpi_single_sector_user_download_cp_assessments_csv.json
+++ b/spec/fixtures/snapshots/tpi_single_sector_user_download_cp_assessments_csv.json
@@ -11,10 +11,11 @@
"Publication Date": "01/05/2019",
"Assessment Date": "01/05/2019",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Paris Pledges",
- "Years with targets": "2025;2030;2040",
"Benchmark ID": "Technology_01/05/2011",
+ "Years with targets": "2025;2030;2040",
"History to Projection cutoff year": "2020",
"CP Unit": null,
"Assumptions": "Assumptions about the assessment",
@@ -37,10 +38,11 @@
"Publication Date": "01/05/2012",
"Assessment Date": "01/05/2012",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Below 2 Degrees",
- "Years with targets": "2025;2030;2040",
"Benchmark ID": "Technology_01/05/2011",
+ "Years with targets": "2025;2030;2040",
"History to Projection cutoff year": "2020",
"CP Unit": null,
"Assumptions": "Assumptions about the assessment",
@@ -63,10 +65,11 @@
"Publication Date": "01/05/2020",
"Assessment Date": "01/05/2020",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Paris Pledges",
- "Years with targets": "2025;2030;2040",
"Benchmark ID": "Technology_01/05/2011",
+ "Years with targets": "2025;2030;2040",
"History to Projection cutoff year": "2020",
"CP Unit": null,
"Assumptions": "Assumptions about the assessment",
@@ -89,10 +92,11 @@
"Publication Date": "01/05/2014",
"Assessment Date": "01/05/2014",
"Carbon Performance Alignment 2025": "Paris Pledges",
+ "Carbon Performance Alignment 2027": "Paris Pledges",
"Carbon Performance Alignment 2035": "Paris Pledges",
"Carbon Performance Alignment 2050": "Below 2 Degrees",
- "Years with targets": "2025;2030;2040",
"Benchmark ID": "Technology_01/05/2011",
+ "Years with targets": "2025;2030;2040",
"History to Projection cutoff year": "2020",
"CP Unit": null,
"Assumptions": "Assumptions about the assessment",
diff --git a/spec/fixtures/snapshots/tpi_single_sector_user_download_cp_assessments_regional_csv.json b/spec/fixtures/snapshots/tpi_single_sector_user_download_cp_assessments_regional_csv.json
index 14134b3ef..b5c8d9462 100644
--- a/spec/fixtures/snapshots/tpi_single_sector_user_download_cp_assessments_regional_csv.json
+++ b/spec/fixtures/snapshots/tpi_single_sector_user_download_cp_assessments_regional_csv.json
@@ -12,6 +12,7 @@
"Assessment Date": "01/05/2019",
"Region": "OECD",
"Carbon Performance Regional Alignment 2025": "Paris Pledges",
+ "Carbon Performance Regional Alignment 2027": "Paris Pledges",
"Carbon Performance Regional Alignment 2035": "Paris Pledges",
"Carbon Performance Regional Alignment 2050": "Paris Pledges",
"Regional Benchmark ID": "OECD_Technology_01/05/2011",
@@ -39,6 +40,7 @@
"Assessment Date": "01/05/2012",
"Region": "OECD",
"Carbon Performance Regional Alignment 2025": "Paris Pledges",
+ "Carbon Performance Regional Alignment 2027": "Paris Pledges",
"Carbon Performance Regional Alignment 2035": "Paris Pledges",
"Carbon Performance Regional Alignment 2050": "Paris Pledges",
"Regional Benchmark ID": "OECD_Technology_01/05/2011",
@@ -66,6 +68,7 @@
"Assessment Date": "01/05/2020",
"Region": "OECD",
"Carbon Performance Regional Alignment 2025": "Paris Pledges",
+ "Carbon Performance Regional Alignment 2027": "Paris Pledges",
"Carbon Performance Regional Alignment 2035": "Paris Pledges",
"Carbon Performance Regional Alignment 2050": "Paris Pledges",
"Regional Benchmark ID": "OECD_Technology_01/05/2011",
@@ -93,6 +96,7 @@
"Assessment Date": "01/05/2014",
"Region": "OECD",
"Carbon Performance Regional Alignment 2025": "Paris Pledges",
+ "Carbon Performance Regional Alignment 2027": "Paris Pledges",
"Carbon Performance Regional Alignment 2035": "Paris Pledges",
"Carbon Performance Regional Alignment 2050": "Paris Pledges",
"Regional Benchmark ID": "OECD_Technology_01/05/2011",
diff --git a/spec/models/ascor/countries_spec.rb b/spec/models/ascor/countries_spec.rb
index 74ef9f1fb..aaf1391d8 100644
--- a/spec/models/ascor/countries_spec.rb
+++ b/spec/models/ascor/countries_spec.rb
@@ -42,11 +42,6 @@
expect(subject).to have(1).errors_on(:iso)
end
- it 'should be invalid if region is not in REGIONS' do
- subject.region = 'TEST'
- expect(subject).to have(1).errors_on(:region)
- end
-
it 'should be invalid if wb_lending_group is not in LENDING_GROUPS' do
subject.wb_lending_group = 'TEST'
expect(subject).to have(1).errors_on(:wb_lending_group)
diff --git a/spec/models/cp/assessment_spec.rb b/spec/models/cp/assessment_spec.rb
index 26d3fbbc5..13e654577 100644
--- a/spec/models/cp/assessment_spec.rb
+++ b/spec/models/cp/assessment_spec.rb
@@ -23,6 +23,8 @@
# cp_assessmentable_id :bigint
# sector_id :bigint
# final_disclosure_year :integer
+# cp_alignment_2027 :string
+# cp_regional_alignment_2027 :string
#
require 'rails_helper'
@@ -73,9 +75,11 @@
%w[
cp_alignment_2025
+ cp_alignment_2027
cp_alignment_2035
cp_alignment_2050
cp_regional_alignment_2025
+ cp_regional_alignment_2027
cp_regional_alignment_2035
cp_regional_alignment_2050
].each do |cp_alignment|
@@ -85,12 +89,12 @@
expect(subject).to have(1).errors_on(cp_alignment.to_sym)
end
- it 'should be valid if cp alignment 2050 is nil' do
+ it "should be valid if #{cp_alignment} is nil" do
subject.send("#{cp_alignment}=", nil)
expect(subject).to be_valid
end
- it 'should be valid if cp alignment 2050 is on the list' do
+ it "should be valid if #{cp_alignment} is on the list" do
subject.send("#{cp_alignment}=", 'Below 2 Degrees')
expect(subject).to be_valid
end
diff --git a/spec/models/news_article_spec.rb b/spec/models/news_article_spec.rb
index 074ab6c30..d72d2eb8d 100644
--- a/spec/models/news_article_spec.rb
+++ b/spec/models/news_article_spec.rb
@@ -2,15 +2,16 @@
#
# Table name: news_articles
#
-# id :bigint not null, primary key
-# title :string
-# content :text
-# publication_date :datetime
-# created_by_id :bigint
-# updated_by_id :bigint
-# created_at :datetime not null
-# updated_at :datetime not null
-# is_insight :boolean default(FALSE)
+# id :bigint not null, primary key
+# title :string
+# content :text
+# publication_date :datetime
+# created_by_id :bigint
+# updated_by_id :bigint
+# created_at :datetime not null
+# updated_at :datetime not null
+# is_insight :boolean default(FALSE)
+# short_description :text
#
require 'rails_helper'
diff --git a/spec/services/api/ascor/benchmarks_chart_spec.rb b/spec/services/api/ascor/benchmarks_chart_spec.rb
index 5b59f6b51..870074239 100644
--- a/spec/services/api/ascor/benchmarks_chart_spec.rb
+++ b/spec/services/api/ascor/benchmarks_chart_spec.rb
@@ -5,6 +5,7 @@
before_all do
@country = create :ascor_country
+ _draft_country = create(:ascor_country, id: 30, name: 'Draft Country', iso: 'DFT')
create :ascor_pathway,
country: @country,
diff --git a/spec/services/api/ascor/bubble_chart_spec.rb b/spec/services/api/ascor/bubble_chart_spec.rb
index ef437f3ec..0c02da7f3 100644
--- a/spec/services/api/ascor/bubble_chart_spec.rb
+++ b/spec/services/api/ascor/bubble_chart_spec.rb
@@ -6,6 +6,7 @@
before_all do
usa = create(:ascor_country, id: 1, name: 'USA', iso: 'USA')
japan = create(:ascor_country, id: 2, name: 'Japan', iso: 'JPN')
+ _draft_country = create(:ascor_country, id: 30, name: 'Draft Country', iso: 'DFT')
_indicator_pillar_1 = create(:ascor_assessment_indicator, id: 1, code: 'EP', indicator_type: :pillar,
text: 'Emissions Performance')
diff --git a/spec/services/api/ascor/emissions_chart_spec.rb b/spec/services/api/ascor/emissions_chart_spec.rb
index 252cd01cd..d00e181cd 100644
--- a/spec/services/api/ascor/emissions_chart_spec.rb
+++ b/spec/services/api/ascor/emissions_chart_spec.rb
@@ -6,6 +6,7 @@
before_all do
@usa = create(:ascor_country, id: 1, name: 'USA', iso: 'USA')
@czechia = create(:ascor_country, id: 2, name: 'Czechia', iso: 'CZE')
+ _draft_country = create(:ascor_country, id: 30, name: 'Draft Country', iso: 'DFT')
create :ascor_pathway,
country: @usa,
diff --git a/spec/services/api/ascor/recent_emissions_spec.rb b/spec/services/api/ascor/recent_emissions_spec.rb
index 544cca89d..f3f797707 100644
--- a/spec/services/api/ascor/recent_emissions_spec.rb
+++ b/spec/services/api/ascor/recent_emissions_spec.rb
@@ -5,6 +5,7 @@
before_all do
@country = create(:ascor_country, id: 1, name: 'USA', iso: 'USA')
+ _draft_country = create(:ascor_country, id: 30, name: 'Draft Country', iso: 'DFT')
@assessment_date = Date.new(2019, 1, 1)
create :ascor_pathway,
diff --git a/spec/support/fixtures/files/ascor_countries.csv b/spec/support/fixtures/files/ascor_countries.csv
index 0deb4c88c..6385c9919 100644
--- a/spec/support/fixtures/files/ascor_countries.csv
+++ b/spec/support/fixtures/files/ascor_countries.csv
@@ -1,3 +1,4 @@
-Id,Name,Country ISO code,Region,World Bank lending group,International Monetary Fund fiscal monitor category,Type of Party to the United Nations Framework Convention on Climate Change
-,United States,USA,North America,High-income,Advanced economies,Annex I
-,Japan,JPN,Asia,High-income,Advanced economies,Annex I
\ No newline at end of file
+Id,Name,Country ISO code,Region,World Bank lending group,International Monetary Fund fiscal monitor category,Type of Party to the United Nations Framework Convention on Climate Change,Visibility stauts
+,United States,USA,North America,High-income,Advanced economies,Annex I,published
+,Japan,JPN,Asia,High-income,Advanced economies,Annex I,published
+,Poland,PLN,Asia,High-income,Advanced economies,Annex I,draft
\ No newline at end of file
diff --git a/spec/support/fixtures/files/company_cp_assessments.csv b/spec/support/fixtures/files/company_cp_assessments.csv
index b1000d813..9f816341a 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"
-,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"
-,2000,"ACME Materials","2019-01-04","2019-02",2019,,,,,,,,,,,,,,,,,,,"Assumptions for ACME Materials",,,"Not aligned",,,,
+"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",,,,,,