-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Time-series choropleth by combining GeoJSON with secondary data #313
Comments
Hello @brylie, As workaround, I suggest to merge the two datasets into in order achieve the result you want. |
Alright, I can give it a try. As the data are time-series measurements binned by country and date, do you recommend any resources or tutorials for joining such data? I will search around and ask on Stack Overflow. |
Also, wouldn't a join creat a lot of duplicated geometry data? Geopolitics aside, the geometries do not change as often as the measurements, so might be efficient to reference only once. Relatedly, in our data some countries have no measurements in a given period or at all. |
@brylie you are right, you will have to create duplicate geometry while joining. The duplicated geometry will be filtered out once the time filter is enabled. |
Closing it for now, please re-open with more questions |
Hi, Is there any update on this feature? Thanks |
We have timeseries data containing a column for country name. We also have a GeoJSON of world countries. However, when creating a polygon layer for the GeoJSON file, it does not allow us to color the countries based on data in a second data set.
I would like to create a choropleth map by providing a GeoJSON file for geometry and then styling the GeoJSON polygons based on fields in a second data 'layer'. This could additionally allow the secondary data set to be time filtered, so we could see change over time:
Describe alternatives you've considered
I have considered creating the interactive, time-series choropleth with Bokeh.
The text was updated successfully, but these errors were encountered: