point_is_inside_box_2d# regridding.geometry.point_is_inside_box_2d(point, box)[source]# Check if a given query point is contained within a 2D box specified by two opposite corners. Parameters: point (tuple[float, float]) – The query point. box (tuple[tuple[float, float], tuple[float, float]]) – A bounding box specified by two points. Return type: bool