-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.py
More file actions
57 lines (47 loc) · 2.07 KB
/
Copy pathabout.py
File metadata and controls
57 lines (47 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import streamlit as st
def main():
st.header("🌍 Geo-Spatial Visualization for Disaster Monitoring")
st.write(
"""
**Geo-Spatial Visualization for Disaster Monitoring** is a web application to monitor and visualize disasters in real-time through the analysis of news articles. By extracting valuable information from news sources, the project aims to provide a comprehensive overview of ongoing and past disaster events.
"""
)
st.divider()
st.subheader("🚀 Key Features")
st.markdown("""
- **Interactive Map Visualization**: View geographical distribution of disaster events on an interactive map
- **Advanced Filtering**: Filter events by type and date range
- **Comprehensive Analytics**: Gain insights through visualizations including:
- Disaster distribution charts
- Event timelines
- Word clouds
- **Real-time Updates**: Dynamic updates based on user-selected filters
- **Key Events Feed**: Scrolling marquee with recent events and clickable links
""")
st.divider()
st.subheader("📊 Data Sources")
st.write(
"""
- Primary data collected from **NewsAPI** service
- Preprocessed and stored in **MongoDB** (database: GeoNews)
- Additional sources integrated for enhanced coverage and accuracy
"""
)
st.divider()
st.subheader("💻 Technologies Used")
st.markdown("""
- **Python**: Core programming language
- **Streamlit**: Web application framework
- **Pandas**: Data manipulation and analysis
- **Folium**: Interactive mapping
- **Plotly**: Advanced visualizations
- **MongoDB**: Database management
- **Geopy**: Geocoding services
- **WordCloud**: Text visualization
""")
st.divider()
st.subheader("🔗 Project Repository")
st.markdown("[GitHub Repository](https://github.com/CodeSubz/AI-Powered-Image-Analysis-for-Disaster-Response)", unsafe_allow_html=True)
st.write("Contribute, report issues, or explore the source code")
if __name__ == "__main__":
main()