update app.py
Browse files
app.py
CHANGED
@@ -691,7 +691,7 @@ if st.button(f"Calculate {custom_formula}"):
|
|
691 |
example_formula = custom_formula
|
692 |
for band in selected_bands:
|
693 |
example_formula = example_formula.replace(band, str(example_values[band]))
|
694 |
-
st.write(f"Example Calculation: {custom_formula} -> {example_formula} = {example_result.get('Calculated Value', example_result.get('Aggregated Value'))}")
|
695 |
st.session_state.show_example = False
|
696 |
st.success('Processing complete!')
|
697 |
else:
|
|
|
691 |
example_formula = custom_formula
|
692 |
for band in selected_bands:
|
693 |
example_formula = example_formula.replace(band, str(example_values[band]))
|
694 |
+
# st.write(f"Example Calculation: {custom_formula} -> {example_formula} = {example_result.get('Calculated Value', example_result.get('Aggregated Value'))}")
|
695 |
st.session_state.show_example = False
|
696 |
st.success('Processing complete!')
|
697 |
else:
|