-
Notifications
You must be signed in to change notification settings - Fork 0
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
generate multi year means for annual-only climdex indices #73
Comments
The following variables are currently displayed as nominal annual data in PCEX, and could be straightforwardly replaced with annual-resolution climatologies:
These variables have more complicated situations and are already present in the database in both climatological and nonclimatological forms, so they'd require special handling:
Those need more investigation, but I think I recall:
|
272 non-MYM datasets, corresponding to 16 variables, remain in the 11 of those are affected by pacificclimate/climate-explorer-frontend#224 - the data was generated separately in monthly and annual forms that cannot be trivially reconciled and will take some discussion with the scientists to resolve.
|
I've finished generating and adding the datasets affected by the change in climatology naming conventions. 176 non-MYM datasets representing 11 variables remain in the In order to generate climatologies for these data sets, we need to update the generate_climos script to take the maximum/minimum within a year and the mean between years (#50), and probably edit the variable long name on the resulting data sets. |
Looks like
|
Remaining variables: tn10p, tn90p, tx10p, tx90p Two questions:
I've emailed Trevor to set up an appointment and ask. |
After meeting with Trevor:
|
|
SELECT COUNT(*)
FROM
ce_meta.data_file_variables,
ce_meta.data_files,
ce_meta.ensemble_data_file_variables,
ce_meta.ensembles,
ce_meta.time_sets
WHERE
data_file_variables.data_file_id = data_files.data_file_id AND
data_files.time_set_id = time_sets.time_set_id AND
ensemble_data_file_variables.data_file_variable_id = data_file_variables.data_file_variable_id AND
ensembles.ensemble_id = ensemble_data_file_variables.ensemble_id AND
time_sets.multi_year_mean = False AND
ensembles.ensemble_name = 'ce_files';
=> 0 |
There are 480 climdex datasets that are annual-only non-climatology datasets in active use by Climate Explorer.
Historically, we did not support annual-only climatologies, but we do now, and our analysis tools are much nicer for climatologies than non-climatologies, so it makes sense to generate climatologies and replace the non-MYM datasets with them in the database.
The text was updated successfully, but these errors were encountered: