mdse.visualizeDB.run_visDB

Main entry point for the database visualization tool.

This module orchestrates the process of generating plots from simulation data. It reads a YAML configuration file, fetches the corresponding data from a specified source (e.g., JSON file or MongoDB), and then iterates through the requested plots, generating each one.

Functions

run_visualize_db(config_path)

Runs the visualization process based on a configuration file.

mdse.visualizeDB.run_visDB.run_visualize_db(config_path)

Runs the visualization process based on a configuration file.

This function reads a YAML configuration file which specifies both the data source and the plots to be generated. It then fetches the data and iterates through the plot configurations, calling the appropriate plotting function for each.

Parameters:

config_path (str or pathlib.Path) – The path to the YAML configuration file.