Skip to content
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

fdETCCDI HadGEM data has incorrect emissions scenarios #111

Open
corviday opened this issue Apr 30, 2020 · 1 comment
Open

fdETCCDI HadGEM data has incorrect emissions scenarios #111

corviday opened this issue Apr 30, 2020 · 1 comment

Comments

@corviday
Copy link
Contributor

SELECT 
  COUNT(emissions.emission_short_name),
  emissions.emission_short_name,
  models.model_short_name
FROM 
  ce_meta.data_file_variables, 
  ce_meta.data_files, 
  ce_meta.models, 
  ce_meta.runs, 
  ce_meta.emissions
WHERE 
  data_files.run_id = runs.run_id AND
  data_files.data_file_id = data_file_variables.data_file_id AND
  runs.model_id = models.model_id AND
  emissions.emission_id = runs.emission_id AND
  data_file_variables.netcdf_variable_name = 'fdETCCDI' AND 
  models.model_short_name LIKE 'HadGEM%'
GROUP BY model_short_name, emission_short_name;
count emission_short_name model_short_name
15 historical, rcp45 HadGEM2-ES
17 historical, rcp85 HadGEM2-ES
3 historical,rcp85 HadGEM2-CC
18 historical, rcp45 HadGEM2-CC
16 historical, rcp85 HadGEM2-CC
3 historical,rcp85 HadGEM2-ES

Likely an artifact of having to process the 2070-2099 climatology seperately. Needs to be updated, or PCEX, which has built-in assumptions about how emissions scenarios are phrased, will be confused.

@corviday
Copy link
Contributor Author

I've updated the files, but not yet the entries in the database.

@corviday corviday added the bug label Jul 31, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant