iiasa / ipcc_sr15_scenario_analysis

Scenario analysis notebooks for the IPCC Special Report on Global Warming of 1.5°C
https://data.ene.iiasa.ac.at/sr15_scenario_analysis
Apache License 2.0
64 stars 30 forks source link

SSP data with zero carbon prices #18

Open masahirosugiyama opened 5 years ago

masahirosugiyama commented 5 years ago

I found zero carbon price for SSP from the IMAGE model (for periods such as 2030). The following is an R code. I heard that it is a reporting error. The world average was not properly produced. I don't know how this should be resolved and I'm writing this issue here. (I contacted some people from the IMAGE team.)

===== R code ======= library(tidyverse)

df_org <- readxl::read_xlsx("iamc15_scenario_data_world_r1.1.xlsx",sheet=2) df <- df_org

names(df) <- tolower(names(df)) col_names <- names(df) year_col_names <- col_names[grep("^[0-9].*?$", colnames)] df <- gather(df, "period", "value", year_col_names)

df %>% filter(variable=="Price|Carbon") %>% filter( str_detect(scenario,"SSP") & (! str_detect(scenario,"baseline")) & str_detect(model,"IMAGE") & variable == "Price|Carbon"& !is.na(value) & period == 2030) -> df_IMAGE_temp df_IMAGE_temp

danielhuppmann commented 5 years ago

Thanks @masahirosugiyama for raising this issue.

As you can see from the rendered notebook (cell [15]) or the source code on GitHub, these scenarios were excluded from the analysis in the SR15, Section 2.5.2. Therefore, there is no error in the assessment.

Unfortunately, there was not sufficient time to contact all teams for corrections when we identified the issue during the writing of the report due to the very stringent timeline.

If the IMAGE team (or any other team affected here) can generate correct carbon prices, we can include the data in the next release of the IAMC 1.5°C Scenario Ensemble.

masahirosugiyama commented 5 years ago

Thanks a lot. I totally understand the integrity of the IPCC SR15 analysis. On the other hand, the dataset tends to be used by many people who don't necessarily read all the pages of the IPCC report, it'd be ideal to update the data, or at least provide some comments within the data.

Meanwhile, the IMAGE team suggested taking an average of prices in the different regions. I'll try it when I get a chance.

On Fri, Jul 19, 2019 at 5:44 PM Daniel Huppmann notifications@github.com wrote:

Thanks @masahirosugiyama https://github.com/masahirosugiyama for raising this issue.

As you can see from the rendered notebook (cell [15]) https://data.ene.iiasa.ac.at/sr15_scenario_analysis/assessment/sr15_2.5_carbon_price_analysis.html or the source code on GitHub https://github.com/iiasa/ipcc_sr15_scenario_analysis/blob/master/assessment/sr15_2.5_carbon_price_analysis.ipynb, these scenarios were excluded from the analysis in the SR15, Section 2.5.2. Therefore, there is no error in the assessment.

Unfortunately, there was not sufficient time to contact all teams for corrections when we identified the issue during the writing of the report due to the very stringent timeline.

If the IMAGE team (or any other team affected here) can generate correct carbon prices, we can include the data in the next release of the IAMC 1.5°C Scenario Ensemble.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/iiasa/ipcc_sr15_scenario_analysis/issues/18?email_source=notifications&email_token=AH5M2YIPXGIVEI7SUVKG6M3QAF5IFA5CNFSM4H2DRHLKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LAFMI#issuecomment-513147569, or mute the thread https://github.com/notifications/unsubscribe-auth/AH5M2YJSFNBPNDTZNNHDVR3QAF5IFANCNFSM4H2DRHLA .

danielhuppmann commented 5 years ago

please see related issue #19 - we attempted to just recompute correct regional prices and this proved far more effort than currently possible

masahirosugiyama commented 5 years ago

Thanks a lot. I see it. But this motivates more thorough documentation the issue. In the IIASA IAMC database, it's possible to add a comment to each variable. Can you do something like that for the IPCC SR15 database? Just my two cents...

On Mon, Jul 22, 2019 at 6:15 PM Daniel Huppmann notifications@github.com wrote:

please see related issue #19 - we attempted to just recompute correct regional prices and this proved far more effort than currently possible

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.

-- Masahiro Sugiyama, Ph.D.

Associate Professor Institute for Future Initiatives The University of Tokyo

7-3-1 Hongo, Bunkyo-ku, Tokyo 113-0033, JAPAN masahiro@ifi.u-tokyo.ac.jp masahiro_sugiyama@alum.mit.edu TEL +81-3-5841-0942

MY AFFILIATION CHANGED IN APRIL, 2019 PLEASE UPDATE YOUR CONTACT LIST

danielhuppmann commented 5 years ago

We are working on more and better features for documentation in the ixmp Scenario Explorer.

The key question for us is usability - where to display additional information in a way that it is noted by users without being too annoying or making the user interface too convoluted? Another concern is that comments might relate to the entire timeseries data for a specific variable or only to specific years - and the interface should distinguish those.

We are grateful for any practical suggestions (but please start a new issue on this).