update app.py
Browse files
app.py
CHANGED
@@ -488,7 +488,7 @@ if st.session_state.results:
|
|
488 |
if shape_type.lower() == 'point':
|
489 |
st.write("Processed Results Table (Points):")
|
490 |
st.dataframe(result_df[['Location Name', 'Latitude', 'Longitude', 'Calculated Value']])
|
491 |
-
|
492 |
st.write("Processed Results Table (Polygons):")
|
493 |
st.dataframe(result_df[['Location Name', 'Calculated Value']])
|
494 |
|
|
|
488 |
if shape_type.lower() == 'point':
|
489 |
st.write("Processed Results Table (Points):")
|
490 |
st.dataframe(result_df[['Location Name', 'Latitude', 'Longitude', 'Calculated Value']])
|
491 |
+
else:
|
492 |
st.write("Processed Results Table (Polygons):")
|
493 |
st.dataframe(result_df[['Location Name', 'Calculated Value']])
|
494 |
|