Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -62,9 +62,9 @@ uploaded_file = st.file_uploader("Upload KML/KMZ file", type=['kml', 'kmz'])
|
|
62 |
|
63 |
if uploaded_file is not None:
|
64 |
# Step 1: Read in the shapefiles
|
65 |
-
shapefile_1 = gpd.read_file("
|
66 |
-
shapefile_2 = gpd.read_file("
|
67 |
-
shapefile_3 = gpd.read_file("
|
68 |
|
69 |
# Step 2: Concatenate them into a single GeoDataFrame
|
70 |
merged_gdf = gpd.GeoDataFrame(pd.concat([shapefile_1, shapefile_2, shapefile_3], ignore_index=True))
|
|
|
62 |
|
63 |
if uploaded_file is not None:
|
64 |
# Step 1: Read in the shapefiles
|
65 |
+
shapefile_1 = gpd.read_file("K_FLD_HAZ_AR.shp")
|
66 |
+
shapefile_2 = gpd.read_file("N_FLD_HAZ_AR.shp")
|
67 |
+
shapefile_3 = gpd.read_file("S_FLD_HAZ_AR.shp")
|
68 |
|
69 |
# Step 2: Concatenate them into a single GeoDataFrame
|
70 |
merged_gdf = gpd.GeoDataFrame(pd.concat([shapefile_1, shapefile_2, shapefile_3], ignore_index=True))
|