Update app.py
Browse files
app.py
CHANGED
@@ -60,7 +60,7 @@ with st.expander("About this app", expanded=False):
|
|
60 |
)
|
61 |
|
62 |
# Project Location and floor area
|
63 |
-
b1, b2, b3, b4
|
64 |
with b1:
|
65 |
Suburb = st.text_input(
|
66 |
"Project Suburb", help="Victorian suburbs only. Suburbs outside Victoria will return wrong predictions")
|
@@ -91,9 +91,10 @@ with b4:
|
|
91 |
|
92 |
project_detail_1 = "Site is at " + Suburb + ", " + Municipality + ", " + Region + ", " + SubRegion + ". "
|
93 |
|
94 |
-
|
95 |
-
FloorArea = st.slider("Estimated total floor area", min_value=100, max_value=750, step=1)
|
96 |
|
|
|
|
|
97 |
project_detail_3 = "Total floor area is " + p.number_to_words(FloorArea) + " square meters."
|
98 |
|
99 |
# Building materials, solar water heater and rain water storage
|
|
|
60 |
)
|
61 |
|
62 |
# Project Location and floor area
|
63 |
+
b1, b2, b3, b4 = st.columns([1, 1, 1, 1])
|
64 |
with b1:
|
65 |
Suburb = st.text_input(
|
66 |
"Project Suburb", help="Victorian suburbs only. Suburbs outside Victoria will return wrong predictions")
|
|
|
91 |
|
92 |
project_detail_1 = "Site is at " + Suburb + ", " + Municipality + ", " + Region + ", " + SubRegion + ". "
|
93 |
|
94 |
+
st.markdown("") # provide space between location info and floor area slider
|
|
|
95 |
|
96 |
+
# Floor area data entry and description
|
97 |
+
FloorArea = st.slider("Estimated total floor area", min_value=100, max_value=750, step=1)
|
98 |
project_detail_3 = "Total floor area is " + p.number_to_words(FloorArea) + " square meters."
|
99 |
|
100 |
# Building materials, solar water heater and rain water storage
|