Skip to content

Commit

Permalink
Remove multi_year_mean=True filter. TODO: add back in as parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Basil Veerman committed Mar 23, 2016
1 parent 2249920 commit 10022a8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ce/api/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,7 @@ def search_for_unique_ids(sesh, ensemble_name='ce', model='', emission='', varia
.join(DataFileVariable, EnsembleDataFileVariables, Ensemble, Run, Model, Emission, TimeSet, Time)\
.filter(Ensemble.name == ensemble_name)\
.filter(DataFileVariable.netcdf_variable_name == variable)\
.filter(Time.time_idx == time)\
.filter(TimeSet.multi_year_mean == True)
.filter(Time.time_idx == time)

if model:
query = query.filter(Model.short_name == model)
Expand Down

0 comments on commit 10022a8

Please sign in to comment.