Update app.py
Browse files
app.py
CHANGED
@@ -40,31 +40,51 @@ def generate_speech_textarea(text_to_speak):
|
|
40 |
components.html(documentHTML5, width=1280, height=500)
|
41 |
|
42 |
|
|
|
|
|
43 |
def ListMaps():
|
44 |
MapInfo = """
|
45 |
-
Map Techniques to Understand
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
"""
|
65 |
st.markdown(MapInfo)
|
66 |
return MapInfo
|
67 |
|
|
|
|
|
|
|
|
|
68 |
# States and Icons
|
69 |
states = ['MN', 'CA', 'WA', 'FL', 'TX', 'NY', 'NV']
|
70 |
icons = ['π¦', 'π΄', 'π', 'π', 'π€ ', 'π½', 'π°']
|
|
|
40 |
components.html(documentHTML5, width=1280, height=500)
|
41 |
|
42 |
|
43 |
+
import streamlit as st
|
44 |
+
|
45 |
def ListMaps():
|
46 |
MapInfo = """
|
47 |
+
## π Map Techniques to Understand Various Aspects
|
48 |
+
- **General Mapping Techniques**
|
49 |
+
- πΊοΈ [US States](https://huggingface.co/spaces/awacke1/USStates)
|
50 |
+
- π [World Area PyDeck](https://huggingface.co/spaces/awacke1/StreamlitPydeckMapVisualViewStateForLatitudeLongitude)
|
51 |
+
- π [US Corporation Map and CSV Location Data Loader](https://huggingface.co/spaces/awacke1/UnitedStatesMapAIandNLP)
|
52 |
+
- π [US Taxonomy Datasets](https://huggingface.co/spaces/awacke1/NPI-Provider-Map-By-Taxonomy-Search)
|
53 |
+
- π [City, State - Latitude and Longitude Search](https://huggingface.co/spaces/awacke1/Google-Maps-Web-Service-Py) (try Mound, MN)
|
54 |
+
|
55 |
+
## π₯ Medical Centers and Hospitals in US States
|
56 |
+
- **Minnesota**
|
57 |
+
- π₯ [State of MN Med Centers](https://huggingface.co/spaces/awacke1/Minnesota-Medical-Centers-Streamlit)
|
58 |
+
- π¨ [State of MN: Hospital Details](https://huggingface.co/spaces/awacke1/MN.Map.Hospitals.Top.Five)
|
59 |
+
- **Massachusetts**
|
60 |
+
- π₯ [State of MA Medical Centers](https://huggingface.co/spaces/awacke1/Streamlit-Google-Maps-Massachusetts)
|
61 |
+
- π [State of MA Reliant](https://huggingface.co/spaces/awacke1/Streamlit-Google-Maps-Reliant)
|
62 |
+
- **California**
|
63 |
+
- π₯ [State of CA Medical Centers](https://huggingface.co/spaces/awacke1/Streamlit-Google-Maps-California)
|
64 |
+
- π¨ [State of CA Hospital Details](https://huggingface.co/spaces/awacke1/California-Medical-Centers-Streamlit)
|
65 |
+
- ποΈ [State of CA Attractions](https://huggingface.co/spaces/awacke1/Map-California-AI)
|
66 |
+
- **Texas**
|
67 |
+
- π₯ [State of TX Medical Centers](https://huggingface.co/spaces/awacke1/Streamlit-Google-Maps-Texas)
|
68 |
+
- **New Jersey**
|
69 |
+
- π₯ [State of NJ Hospitals](https://huggingface.co/spaces/awacke1/VizLib-TopLargeHospitalsNewJersey)
|
70 |
+
|
71 |
+
## π Mythical and Historical Locations
|
72 |
+
- **Iceland**
|
73 |
+
- π° [Iceland Myth Places and Routes](https://huggingface.co/spaces/awacke1/Maps.Markers.Honor.Iceland)
|
74 |
+
|
75 |
+
## πΊπΈ Specific US Data Searches
|
76 |
+
- **NPI Registry Mental Health Provider Search**
|
77 |
+
- π§ [NPI Registry Mental Health Provider Search and Cluster Map](https://huggingface.co/spaces/awacke1/Gradio-Maps-Latitude-Longitude)
|
78 |
+
- **US City Specific Information**
|
79 |
+
- π [US City FIPS code, Location, Population](https://huggingface.co/spaces/awacke1/CityFipsLocationandPopulation)
|
80 |
"""
|
81 |
st.markdown(MapInfo)
|
82 |
return MapInfo
|
83 |
|
84 |
+
# Call the function to display the maps
|
85 |
+
ListMaps()
|
86 |
+
|
87 |
+
|
88 |
# States and Icons
|
89 |
states = ['MN', 'CA', 'WA', 'FL', 'TX', 'NY', 'NV']
|
90 |
icons = ['π¦', 'π΄', 'π', 'π', 'π€ ', 'π½', 'π°']
|