Tumpukan Geopandas atau DataFrame bersama

import geopandas as gpd
import pandas as pd
gdf1 = gpd.GeoDataFrame()
gdf2 = gpd.GeoDataFrame()
dataframesList = [gdf1, gdf2]
gpd.GeoDataFrame(pd.concat(dataframesList, ignore_index=True))
Intempestive Al Dente