Skip to content

Commit

Permalink
removing the hard coding of forcing the ensemble name = 'ofcl'
Browse files Browse the repository at this point in the history
  • Loading branch information
PhillipsOwen committed Oct 9, 2024
1 parent 2289939 commit b1ab246
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/common/pg_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,10 @@ def get_terria_map_catalog_data(self, **kwargs):
# init the return
ret_val: dict = {}

# TODO: force ofcl ensembles for now
kwargs['ensemble_name'] = 'ofcl'

# get the new workbench data
workbench_data: dict = self.get_workbench_data(**kwargs)

# init the workbench sql statement storage
wb_sql: str = ""

# should we continue?
Expand Down Expand Up @@ -221,7 +219,7 @@ def get_workbench_data(self, **kwargs):
kwargs.update({param: 'null'})

# add in the max age int
kwargs.update({'max_age': 3})
kwargs.update({'max_age': 1})

# try to make the call for records
ret_val = self.get_terria_map_workbench_data(**kwargs)
Expand Down

0 comments on commit b1ab246

Please sign in to comment.