transform#

GeosDataFrameAccessor.transform(*args, inplace=False, **kwargs)#

Returns a copy of a geometry array with a function applied to its coordinates.

Applies pgpd.GeosSeriesAccessor.transform() to each column of “geos” dtype and aggregates the results in a DataFrame.

Parameters:
  • args – Arguments passed to transform() after the first argument.

  • inplace (bool, optional) – Whether to perform the modifications inplace; Default False.

  • kwargs – Keyword arguments passed to transform().

Returns:

DataFrame where each “geos” column from the original is transformed or None if inplace=True.

Return type:

pandas.DataFrame or None