-
Notifications
You must be signed in to change notification settings - Fork 1
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
Some variables have annual and monthly/seasonal values presented separately #224
Labels
Comments
Related issue: #216 |
SELECT DISTINCT
variable_aliases.variable_standard_name,
time_sets.multi_year_mean
FROM
ce_meta.data_files,
ce_meta.time_sets,
ce_meta.data_file_variables,
ce_meta.variable_aliases,
ce_meta.ensembles,
ce_meta.ensemble_data_file_variables
WHERE
data_files.time_set_id = time_sets.time_set_id AND
data_file_variables.variable_alias_id = variable_aliases.variable_alias_id AND
data_file_variables.data_file_id = data_files.data_file_id AND
ensemble_data_file_variables.data_file_variable_id = data_file_variables.data_file_variable_id AND
ensemble_data_file_variables.ensemble_id = ensembles.ensemble_id AND
ensembles.ensemble_name LIKE 'ce_files'
ORDER BY
variable_standard_name;
So it looks like variables that could conceivably have this problem are:
|
The above are the variables which would need the distinction shown between long-term time series and climatologies. |
See also #216 for one of the suggested fixes (different way of selecting variable). |
This issue has been resolved at the source; the data irregularities are resolved. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following variables
rx1day
rx5day
are presented in the Single Variable and Compare Variables views in the following way:
This is very confusing for at least the following reasons:
rx1day
andrx5day
(in their monthly and annual versions), are also presented far apart in the dropdown options.Suggested fixes:
The text was updated successfully, but these errors were encountered: