lar84

Results 1 issues of lar84

#### Code Sample, a copy-pastable example ```python import geopandas as gpd from shapely.geometry import Polygon gdf = gpd.GeoDataFrame([],geometry=[], crs='EPSG:4326') gdf.loc[len(gdf)] = [Polygon([(0,0),(1,0),(1,1),(0,1)])] print(gdf.crs) ``` #### Problem description There is no...

bug