-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SSP data with zero carbon prices #18
Comments
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. |
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.
- Masa
…On Fri, Jul 19, 2019 at 5:44 PM Daniel Huppmann ***@***.***> 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
<#18?email_source=notifications&email_token=AH5M2YIPXGIVEI7SUVKG6M3QAF5IFA5CNFSM4H2DRHLKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2LAFMI#issuecomment-513147569>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AH5M2YJSFNBPNDTZNNHDVR3QAF5IFANCNFSM4H2DRHLA>
.
|
please see related issue #19 - we attempted to just recompute correct regional prices and this proved far more effort than currently possible |
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 ***@***.***> 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
|
We are working on more and better features for documentation in the 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). |
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].*?$", col_names)]
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
The text was updated successfully, but these errors were encountered: