Skip to content

Commit

Permalink
Normalize column names based on veda-tags.json (#135)
Browse files Browse the repository at this point in the history
Co-authored-by: Olexandr Balyk <[email protected]>
  • Loading branch information
siddharth-krishna and olejandro authored Nov 16, 2023
1 parent 0f7793a commit b9ecd28
Show file tree
Hide file tree
Showing 4 changed files with 390 additions and 317 deletions.
4 changes: 3 additions & 1 deletion times_reader/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,15 @@ def convert_xl_to_times(
return {}

transform_list = [
transforms.generate_dummy_processes,
transforms.normalize_tags_columns_attrs,
transforms.remove_fill_tables,
transforms.remove_empty_tables,
lambda config, tables: [transforms.remove_comment_rows(t) for t in tables],
lambda config, tables: [transforms.remove_comment_cols(t) for t in tables],
transforms.remove_tables_with_formulas, # slow
transforms.normalize_column_aliases,
transforms.apply_postnormalisation_fixes,
transforms.generate_dummy_processes,
transforms.process_transform_insert_variants,
transforms.process_transform_insert,
transforms.process_processes,
Expand Down
Loading

0 comments on commit b9ecd28

Please sign in to comment.