Spaces:
Runtime error
Runtime error
eaglelandsonce
commited on
Commit
•
f63cb2d
1
Parent(s):
5a932ea
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
import json
|
3 |
+
import matplotlib.pyplot as plt
|
4 |
+
|
5 |
+
# Function to load and parse the JSON data
|
6 |
+
def load_data(filename):
|
7 |
+
with open(filename, 'r') as file:
|
8 |
+
data = json.load(file)
|
9 |
+
return data
|
10 |
+
|
11 |
+
# Your existing color codes and draw_grid function go here
|
12 |
+
|
13 |
+
# Streamlit application starts here
|
14 |
+
def main():
|
15 |
+
st.title('Green Smart Village Application')
|
16 |
+
|
17 |
+
# Creating three columns
|
18 |
+
col1, col2, col3 = st.columns(3)
|
19 |
+
|
20 |
+
with col1:
|
21 |
+
st.header("Today's Agenda")
|
22 |
+
# You can add content to Today's Agenda here
|
23 |
+
st.write("1. Morning Meeting\n2. Review Project Plans\n3. Lunch Break\n4. Site Visit\n5. Evening Wrap-up")
|
24 |
+
|
25 |
+
with col2:
|
26 |
+
st.header("Green Smart Village Layout")
|
27 |
+
# Load and display the data with color coding
|
28 |
+
data = load_data('grid.json') # Make sure this path is correct
|
29 |
+
# Drawing and displaying the grid layout with color coding
|
30 |
+
fig = draw_grid(data)
|
31 |
+
st.pyplot(fig)
|
32 |
+
|
33 |
+
with col3:
|
34 |
+
st.header("Check Your HIN Number")
|
35 |
+
# You can add an input form or information related to HIN numbers here
|
36 |
+
hin_number = st.text_input("Enter your HIN number:")
|
37 |
+
if hin_number:
|
38 |
+
# Perform HIN number validation or lookup here
|
39 |
+
st.write("HIN number details...")
|
40 |
+
# You might want to replace the placeholder text with actual code to check HIN numbers
|
41 |
+
|
42 |
+
if __name__ == "__main__":
|
43 |
+
main()
|