Questions regarding Wherobots notebook

Hi all, I’m a young GIS professional who is trying to improve my skills with various open source GIS mapping software and programming.

I just have a quick question at the moment, but I’m not sure if I can ask it here in the forum.

Can I not export the map created with Kepler gl in Wherobots notebook?

Also, it seems like very time I opened data table from the Kepler UI, I will not be able to close it off. I have to rerun my code to get out of it and see my map again.

Hi @zluo43!

Welcome to the community and thanks for posting.

To answer your questions:

Can I not export the map created with Kepler gl in Wherobots notebook?

It is possible to export the SedonaKepler map to an interactive HTML document in the Wherobots Notebook environment. You can then download the HTML file locally or publish on the web, etc. See the kepler.gl docs here for the full documentation on this feature, but here’s an example:

map1 = SedonaKepler.create_map(trails_df, "Hiking Trails")
map1.save_to_html(file_name="foo.html")

Also, it seems like very time I opened data table from the Kepler UI, I will not be able to close it off. I have to rerun my code to get out of it and see my map again.

I’ve noticed this sometimes as well. Try pressing the Escape key to close the data table view.

Hope that helps!

Cheers,
Will

Hi Will, thanks for helping! That worked!