geost.base.CptCollection.select_with_points#

CptCollection.select_with_points(points: str | Path | GeoDataFrame | PointGeometries, buffer: float | int, invert: bool = False)#

Make a selection of the collection based on point geometries.

Parameters:
  • points (str | Path | gpd.GeoDataFrame | PointGeometries) – Any type of point geometries that can be used for the selection: GeoDataFrame containing points or filepath to a shapefile like file, or Shapely Point, MultiPoint or list containing Point objects.

  • buffer (float | int) – Buffer distance for selection geometries.

  • invert (bool, optional) – Invert the selection, by default False.

Returns:

New instance of the current object containing only the selection resulting from application of this method. e.g. if you are calling this method from a Collection, you will get an instance of a Collection back.

Return type:

New instance of the current object.