increase year limit
Browse files
app.py
CHANGED
@@ -169,9 +169,9 @@ st.markdown(
|
|
169 |
|
170 |
# Input: Date and Cloud Cover
|
171 |
col = st.columns(4)
|
172 |
-
start_year = col[0].selectbox("Start Year", list(range(2014,
|
173 |
start_month = col[1].selectbox("Start Month", list(range(1, 13)), index=0)
|
174 |
-
end_year = col[2].selectbox("End Year", list(range(2014,
|
175 |
end_month = col[3].selectbox("End Month", list(range(1, 13)), index=2)
|
176 |
start_date = f"{start_year}-{start_month:02d}"
|
177 |
end_date = f"{end_year}-{end_month:02d}"
|
|
|
169 |
|
170 |
# Input: Date and Cloud Cover
|
171 |
col = st.columns(4)
|
172 |
+
start_year = col[0].selectbox("Start Year", list(range(2014, 2027)), index=8)
|
173 |
start_month = col[1].selectbox("Start Month", list(range(1, 13)), index=0)
|
174 |
+
end_year = col[2].selectbox("End Year", list(range(2014, 2027)), index=8)
|
175 |
end_month = col[3].selectbox("End Month", list(range(1, 13)), index=2)
|
176 |
start_date = f"{start_year}-{start_month:02d}"
|
177 |
end_date = f"{end_year}-{end_month:02d}"
|