Source code for geopulse.efield.coastal

"""Boteler-Pirjola coastal correction to plane-wave E-field — STUB (WP2)."""

from __future__ import annotations

from geopulse.exceptions import NotImplementedYetError

__all__ = ["apply_coastal_correction"]


[docs] def apply_coastal_correction(*args, **kwargs): """Apply the Boteler-Pirjola coastal correction (WP2).""" raise NotImplementedYetError("apply_coastal_correction", "WP2")