FAQ
How do I report an issue or make a feature request?
Please go to https://github.com/giswqs/eefolium/issues.
How do I cite eefolium in publications?
Wu, Q., (2020). eefolium: A Python package for interactive mapping with Google Earth Engine. The Journal of Open Source Software, 5(51), 2305. https://doi.org/10.21105/joss.02305
Bibtex:
@article{wu2020eefolium,
title={eefolium: A Python package for interactive mapping with Google Earth Engine},
author={Wu, Qiusheng},
journal={Journal of Open Source Software},
volume={5},
number={51},
pages={2305},
year={2020}
}
Why does eefolium use two plotting backends: folium and ipyleaflet?
A key difference between ipyleaflet and folium is that ipyleaflet is built upon ipywidgets and allows bidirectional communication between the front-end and the backend enabling the use of the map to capture user input, while folium is meant for displaying static data only (source). Note that Google Colab currently does not support ipyleaflet (source). Therefore, if you are using eefolium
with Google Colab, you should use import eefolium.eefolium as eefolium
. If you are using eefolium with a local Jupyter notebook server, you can
use import eefolium
, which provides more functionalities for capturing user input (e.g., mouse-clicking and moving).