Skip to content

Commit fed43ba

Browse files
committed
add reference to streamlit
1 parent c489da7 commit fed43ba

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

workshop/jupyter/content/notebooks/07-visualization.ipynb

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
"Whenever you visit a website that has some kind of interactive map, it\n",
2323
"is quite probable that you are witnessing a map that has been made with\n",
2424
"a JavaScript library called [Leaflet](http://leafletjs.com). The\n",
25-
"other popular library you might encounter is\n",
26-
"[OpenLayers](https://openlayers.org).\n",
25+
"other popular libraries you may encounter are\n",
26+
"[OpenLayers](https://openlayers.org) or [maplibre](https://maplibre.org/).\n",
2727
"\n",
2828
"The Python module \n",
2929
"[Folium](https://github.com/python-visualization/folium) makes\n",
3030
"it possible to visualize data that has been manipulated in Python on an\n",
31-
"interactive Leaflet map.\n",
31+
"interactive Leaflet map in a jupyter notebook or website generated from python code.\n",
3232
"\n",
3333
"### Basics\n",
3434
"We will start with the most minimal map using the default OpenStreetMap base map.\n",
@@ -158,8 +158,17 @@
158158
"metadata": {},
159159
"source": [
160160
"And [open this map with overlay here](test/07-folium-2.html). \n",
161-
"\n",
162-
"Much more is possible with Folium, we just scratched the surface here!"
161+
"\n"
162+
]
163+
},
164+
{
165+
"cell_type": "markdown",
166+
"metadata": {},
167+
"source": [
168+
"### Folium and Streamlit\n",
169+
"Folium can also be [combined with Streamlit](https://folium.streamlit.app/). \n",
170+
"[Streamlit](https://streamlit.io) is a platform to create interactive web apps for your python data scripts.",
171+
"\n"
163172
]
164173
},
165174
{

0 commit comments

Comments
 (0)