Github user MBoustani commented on a diff in the pull request: https://github.com/apache/climate/pull/220#discussion_r36248566 --- Diff: ocw-cli/cli_app.py --- @@ -115,7 +119,7 @@ def load_local_model_screen(header): note = "WARNING: Model file cannot be added." elif answer == "1": model_dataset = load_file(model_path, variable_name) - model_datasets.append(model_dataset) + model_datasets.append(dsp.normalize_dataset_datetimes(model_dataset, model_dataset.temporal_resolution())) --- End diff -- this part of code is just for adding and removing model dataset to the list of models, there should not be any data processing happening here. You should move the normalize processing down to the processing section.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---