MUSA 550

Logo

Geospatial Data Science in Python.

View the Project on GitHub MUSA-550-Fall-2020/github-pages-single-page-starter

Welcome!

This single-page website demos how to display visualizations created with altair, hvplot, and folium.

For examples of how to use markdown to style text, see this this page.

Example: Embedding Altair & Hvplot Charts

This section will show examples of embedding interactive charts produced using Altair and Hvplot.

Altair Example

Below is a chart of the incidence of measles since 1928 for the 50 US states.

This was produced using Altair and embedded in this static web page. Note that you can also display Python code on this page:

import altair as alt
alt.renderers.enable('notebook')

HvPlot Example

Lastly, the measles incidence produced using the HvPlot package:

Notes

Important: When embedding charts, you will likely need to adjust the width/height of the charts before embedding them in the page so they fit nicely when embedded.

Example: Embedding Folium charts

This post will show examples of embedding interactive maps produced using Folium.

OSMnx and Street Networks

The shortest route between the Art Museum and the Liberty Bell:


Percentage of Households without Internet

The percentage of households without internet by county:

See the lecture 9B slides and the lecture 10A slides for the code that produced these plots.