Spaces:
Runtime error
Runtime error
File size: 366 Bytes
8105114 d30adf0 baa2a05 db9bec1 6e598b9 db9bec1 8105114 db9bec1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import streamlit as st
astations = [
["hongkongobservatory","HKO",22.3022566,114.1722662,"Hong Kong Observatory"],
["kingspark","KP",22.3115408,114.1685675,"Observatory Meteorological Station, King's Park"],
]
acontainer1 = st.empty()
acontainer2 = st.empty()
aoption = acontainer1.selectbox(
'Which station?',
astations[1])
acontainer2.write(aoption)
|