mirror of
https://github.com/wassname/geopandas.git
synced 2026-09-19 12:43:17 +08:00
* WIP: Added check to GeoDataFrame.explode() to see if it should fall back to the default pandas method of the same name * Will geometrically explode if the column dtype is geometry, and defaults to active geometry column if left as None * changed type check to isinstance * moved explode() definition from GeoPandasBase to GeoSeries * Removed ignore_index from explode() args * cleanup * black * skipif * skipif pandas 024 * added test for epxlode pandas fallback when column param is provided as arg instead of kwarg * Using assert_geodataframe_equal instead of assert_frame equal and test column param supplied as arg or kwarg in both cases per function (ignore_index=True or False) * blacken + docs Co-authored-by: Martin Fleischmann <martin@martinfleischmann.net>