Source code for omf_io.blockmodel.exporters
import pandas as pd
from pathlib import Path
[docs]
def export_block_model_to_csv(block_data: pd.DataFrame, output_file: Path):
"""Export block model data to a CSV file.
Args:
block_data (pandas.DataFrame): The block model data.
output_file (Path): The output CSV file path.
"""
# Placeholder implementation
block_data.to_csv(output_file, index=False)