geost.bro.BroApi.search_objects_in_bbox#
- BroApi.search_objects_in_bbox(xmin: Coordinate, xmax: Coordinate, ymin: Coordinate, ymax: Coordinate, epsg: str = '28992', object_type: str = 'CPT') List[str] [source]#
Search for BRO objects of the given object type within the given bounding box. Returns a list of BRO objects that can be used to retrieve their data using the get_objects method.
- Parameters:
xmin (Union[float, int]) – x-coordinate of the bbox lower left corner.
xmax (Union[float, int]) – x-coordinate of the bbox upper right corner.
ymin (Union[float, int]) – y-coordinate of the bbox lower left corner.
ymax (Union[float, int]) – y-coordinate of the bbox upper right corner.
epsg (str, optional) – Coordinate reference system of the given bbox coordinates, by default “28992” (= Rijksdriehoek New CRS).
object_type (str, optional) – BRO object type. Can be CPT (Cone penetration tests), BHR-P (Soil cores), BHR-GT (Geotechnical cores), or BHR-G (Geological cores). By default “CPT”.
- Returns:
List containing BRO ID’s of objects found within the bbox.
- Return type:
List[str]
- Raises:
Warning – If the server does not respond or the search query was rejected.