Source code for omf_io.gridsurface.exporters

from pathlib import Path


[docs] def export_grid_surface_to_raster( grid_surface, output_file: Path, format: str = "GeoTIFF", **kwargs, ): """Export a grid surface to a raster file. ..todo:: Implement the export_grid_surface_to_raster function Args: grid_surface: The grid surface data. output_file (Path): The output raster file path. format (str): The format of the output raster file. Default is "GeoTIFF". **kwargs: Additional keyword arguments for the export function. """ pass