Skip to content

Instantly share code, notes, and snippets.

@gisfromscratch
Last active February 25, 2023 16:37
Show Gist options
  • Save gisfromscratch/8cfcf90b8000b75ac502210e4814c72a to your computer and use it in GitHub Desktop.
Save gisfromscratch/8cfcf90b8000b75ac502210e4814c72a to your computer and use it in GitHub Desktop.
Mapping the Russian invasion of Ukraine
# Mapping the aggregated armed conflict events
focus_map = create_osm_webmap()
aggregated_events_renderer = create_aggregated_renderer(aggregated_events_featureset.sdf)
focus_map.add_layer(aggregated_events_featureset, {'renderer': aggregated_events_renderer, 'opacity': 0.7})
focus_map
# Mapping the armed conflict events
focus_map = create_osm_webmap()
events_renderer = create_events_renderer()
focus_map.add_layer(events_featureset, {'renderer': events_renderer, 'opacity': 0.7})
focus_map
@gisfromscratch
Copy link
Author

Should be used in a notebook environment, displays a web map showing the aggregated armed conflict events.
Needed utils

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment