Path: blob/main/docs/user_guide/plugins/timeslider_choropleth.md
1720 views
TimeSliderChoropleth
In this example we'll make a choropleth with a timeslider.
The class needs at least two arguments to be instantiated.
A string-serielized geojson containing all the features (i.e., the areas)
A dictionary with the following structure:
In the above dictionary, the keys are the feature-ids.
Using both color and opacity gives us the ability to simultaneously visualize two features on the choropleth. I typically use color to visualize the main feature (like, average height) and opacity to visualize how many measurements were in that group.
Loading the features
We use geopandas
to load a dataset containing the boundaries of all the countries in the world.
The GeoDataFrame
contains the boundary coordinates, as well as some other data such as estimated population.
Creating the style dictionary
Now we generate time series data for each country.
Data for different areas might be sampled at different times, and TimeSliderChoropleth
can deal with that. This means that there is no need to resample the data, as long as the number of datapoints isn't too large for the browser to deal with.
To simulate that data is sampled at different times we random sample data for n_periods
rows of data and then pick without replacing n_sample
of those rows.
Note that the geodata and random sampled data is linked through the feature_id, which is the index of the GeoDataFrame
.
We see that we generated two series of data for each country; one for color and one for opacity. Let's plot them to see what they look like.
Looks random alright. We want to map the column named color
to a hex color. To do this we use a normal colormap. To create the colormap, we calculate the maximum and minimum values over all the timeseries. We also need the max/min of the opacity
column, so that we can map that column into a range [0,1].
Define and apply colormaps:
Finally we use pd.DataFrame.to_dict()
to convert each dataframe into a dictionary, and place each of these in a map from country id to data.
Creating the map
Initial timestamp
By default the timeslider starts at the beginning. You can also select another timestamp to begin with using the init_timestamp
parameter. Note that it expects an index to the list of timestamps. In this example we use -1
to select the last timestamp.