You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with #490 we will subclass GeoDataFrame and thus this method will override the inherited plot function. Access to GeoPanda's plot tools will then only be possible via some direct calls to the GeoDataFrame object.
GeoDataFrame.plot(pfs)(*args, **kwargs)
This behavior is awkward.
I would suggest removing the override method from the class and putting it in a separate function.
This will also removes the need for the cascading plot functionality currently employed, drastically simplifying the function.
Alternatively, you could rename the overriding methods.
The text was updated successfully, but these errors were encountered:
with #490 we will subclass
GeoDataFrame
and thus this method will override the inherited plot function. Access to GeoPanda's plot tools will then only be possible via some direct calls to the GeoDataFrame object.This behavior is awkward.
I would suggest removing the override method from the class and putting it in a separate function.
This will also removes the need for the cascading plot functionality currently employed, drastically simplifying the function.
Alternatively, you could rename the overriding methods.
The text was updated successfully, but these errors were encountered: