Skip to content

Commit

Permalink
Update create-tables.py
Browse files Browse the repository at this point in the history
  • Loading branch information
larsbuntemeyer authored Feb 16, 2024
1 parent 762b76c commit 80f7f51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/create-tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ def main(table, output, prefix, coords=False):
print(cmor_tables.keys())

for t in cmor_tables.values():
table_to_json(t, table_prefix="CORDEX-CMIP6", dir=output)
table_to_json(t, table_prefix=prefix, dir=output)

if coords is True:
t = create_coordinate_table(df)
table_to_json(t, "CORDEX-CMIP6", table_id="coordinate", dir=output)
table_to_json(t, prefix, table_id="coordinate", dir=output)


if __name__ == "__main__":
Expand Down

0 comments on commit 80f7f51

Please sign in to comment.