metobs_toolkit.dataset.Dataset.gap_overview_df#

Dataset.gap_overview_df() DataFrame[source]#

Create gap status overview DataFrame with one row per gap period.

Parameters:

sensordata (SensorData) – SensorData instance containing gap information.

Returns:

DataFrame with gap periods indexed by gap start time. Contains columns:

  • gapend : pandas.Timestamp - End time of the gap

  • gapsize : pandas.Timedelta - Duration of the gap

  • label : str - Gap fill status (e.g., ‘not filled’, ‘interpolated’)

  • details : str - Gap creation details and methods used

Return type:

pandas.DataFrame

Notes

Unlike gapsdf which lists all missing records, this provides one summary row per continuous gap period.