SedonaKepler offers a number of APIs which aid in quick and interactive visualization of a geospatial data in a Jupyter notebook/lab environment. In order to start using SedonaKepler, simply import Sedona using:Documentation Index
Fetch the complete documentation index at: https://docs.wherobots.com/llms.txt
Use this file to discover all available pages before exploring further.
Creating a map object using SedonaKepler.create_map
SedonaKepler exposes a create_map API with the following signature:add_df
A map config can be passed optionally to apply pre-apply customizations to the map.
The map config references every customization with the name assigned to the SedonaDataFrame being displayed, if there is a mismatch in the name, the config will not be applied to the map object.
Example usage (Referenced from Sedona Jupyter examples)
Adding SedonaDataFrame to a map object using SedonaKepler.add_df
SedonaKepler exposes an add_df API with the following signature:Example usage (Referenced from Sedona Jupyter examples)
Setting a config via the map
A map rendered by accessing the map object created by SedonaKepler includes a config panel which can be used to customize the mapSaving and setting config
A map object’s current config can be accessed by accessing its ‘config’ attribute likemap.config. This config can be saved for future use or use across notebooks if the exact same map is to be rendered every time.
The map config references each applied customization with the name given to the dataframe and hence will work only on maps with the same name of dataframe supplied.
For more details refer to keplerGl documentation here

