khushidhar1210 commited on
Commit
239cd60
·
verified ·
1 Parent(s): bcd426b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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("Kent/S_FLD_HAZ_AR.shp")
66
- shapefile_2 = gpd.read_file("NC/S_FLD_HAZ_AR.shp")
67
- shapefile_3 = gpd.read_file("Sus/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))
 
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))