Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -26,6 +26,58 @@ hospitals = [
|
|
26 |
{'name': 'University of North Carolina--Chapel Hill', 'state': 'NC', 'lat': 35.9049, 'long': -79.0469},
|
27 |
]
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
# Create
|
30 |
# a map centered on the US
|
31 |
m = folium.Map(location=[37.0902, -95.7129], zoom_start=4)
|
|
|
26 |
{'name': 'University of North Carolina--Chapel Hill', 'state': 'NC', 'lat': 35.9049, 'long': -79.0469},
|
27 |
]
|
28 |
|
29 |
+
st.markdown("""
|
30 |
+
|
31 |
+
# Top Ten Teaching Hospital Colleges in the United States
|
32 |
+
|
33 |
+
1. **Ohio State University (OH):** Wexner Medical Center is a big teaching hospital that cares for patients, teaches doctors, and does research.
|
34 |
+
|
35 |
+
- Wikipedia: [Link](https://en.wikipedia.org/wiki/Ohio_State_University)
|
36 |
+
- Website: [Link](https://wexnermedical.osu.edu/)
|
37 |
+
|
38 |
+
2. **University of Maryland--College Park (MD):** University of Maryland Medical Center teaches doctors and helps patients.
|
39 |
+
|
40 |
+
- Wikipedia: [Link](https://en.wikipedia.org/wiki/University_of_Maryland,_College_Park)
|
41 |
+
- Website: [Link](https://www.umms.org/ummc)
|
42 |
+
|
43 |
+
3. **University of Alabama--Birmingham (AL):** UAB Medical Center is a big teaching hospital that cares for patients, teaches doctors, and does research.
|
44 |
+
|
45 |
+
- Wikipedia: [Link](https://en.wikipedia.org/wiki/University_of_Alabama_at_Birmingham)
|
46 |
+
- Website: [Link](https://www.uabmedicine.org/)
|
47 |
+
|
48 |
+
4. **University of California--San Francisco (CA):** UCSF Medical Center is a top-ranked hospital that cares for patients, teaches doctors, and does research.
|
49 |
+
|
50 |
+
- Wikipedia: [Link](https://en.wikipedia.org/wiki/University_of_California,_San_Francisco)
|
51 |
+
- Website: [Link](https://www.ucsfhealth.org/)
|
52 |
+
|
53 |
+
5. **University of Colorado--Denver (CO):** Anschutz Medical Campus is a big medical campus that teaches doctors, cares for patients, and does research.
|
54 |
+
|
55 |
+
- Wikipedia: [Link](https://en.wikipedia.org/wiki/University_of_Colorado_Denver)
|
56 |
+
- Website: [Link](https://www.cuanschutz.edu/)
|
57 |
+
|
58 |
+
6. **University of Florida (FL):** UF Health Shands Hospital is a big teaching hospital that cares for patients, teaches doctors, and does research.
|
59 |
+
|
60 |
+
- Wikipedia: [Link](https://en.wikipedia.org/wiki/University_of_Florida), Website: [Link](https://ufhealth.org/)
|
61 |
+
|
62 |
+
7. **Duke University (NC):** Duke University Medical Center is a top-ranked hospital that cares for patients, teaches doctors, and does research.
|
63 |
+
|
64 |
+
- Wikipedia: [Link](https://en.wikipedia.org/wiki/Duke_University), Website: [Link](https://www.dukehealth.org/)
|
65 |
+
|
66 |
+
8. **Northwestern University (Feinberg) (IL):** Feinberg School of Medicine is a top-ranked medical school that teaches doctors and does research.
|
67 |
+
|
68 |
+
- Wikipedia: [Link](https://en.wikipedia.org/wiki/Northwestern_University), Website: [Link](https://www.feinberg.northwestern.edu/)
|
69 |
+
|
70 |
+
9. **Stanford University (CA):** Stanford University Medical Center is a top-ranked hospital that cares for patients, teaches doctors, and does research.
|
71 |
+
|
72 |
+
- Wikipedia: [Link](https://en.wikipedia.org/wiki/Stanford_University), Website: [Link](https://www.stanfordhealthcare.org/)
|
73 |
+
|
74 |
+
10. **Columbia University (NY):** Columbia University Medical Center is a big teaching hospital that cares for patients, teaches doctors, and does research.
|
75 |
+
|
76 |
+
- Wikipedia: [Link](https://en.wikipedia.org/wiki/Columbia_University), Website: [Link](https://www.cuimc.columbia.edu/education/medical-school)
|
77 |
+
|
78 |
+
|
79 |
+
""")
|
80 |
+
|
81 |
# Create
|
82 |
# a map centered on the US
|
83 |
m = folium.Map(location=[37.0902, -95.7129], zoom_start=4)
|