Justin Braaten
Justin Braaten
A new version of geemap has been released (v0.32.1). It strictly requires ipyleaflet v0.18.2 to avoid the breakage introduced with v0.19.0. Upgrade with pip or conda-like package managers.
Thanks for bringing the issue to our attention. As you may have figured out `xrange` is not available for Python 3.x - this code was developed using Python 2.x and...
Sorry for the delayed reply. Have you had any correspondence via email with the EE data team regarding these issues? Just wanting to make sure we're responding to the most...
One thing you'll need to do to contribute is sign the CLA. See the instructions here: https://github.com/google/earthengine-catalog/pull/643/checks?check_run_id=14728915671
The proposed function above (that renders the entire tree) won't work. It's slow to load a single Landsat 9 TOA image's metadata and, at least in free Colab, won't even...
Maybe in the current implementation the JSON data can be stored as an added attribute, like add a `json` parameter to the `Node` class ~e.g.: ```py class CustomNode(Node): def __init__(self,...
Here is a potential fix. It adds a Node subclass with an `ee_data` attribute for storing the JSON data (`MyNode` is not a good name, need to change). ```py class...
Here is a refactored version of `StructureTree` from [previous comment](https://github.com/google/earthengine-jupyter/issues/28#issuecomment-1441254113) (still uses badly named `MyNode` class). ```py class MyNode(ipytree.Node): def __init__(self, *args, ee_data=None, **kwargs): super().__init__(*args, **kwargs) self.ee_data = ee_data class...
Pierrick, I had suggested in our triage that we should be open to community members working on getting docs built. There may have been a misunderstanding. As Nate said, we...
Thanks for your analysis on this! (The https://geetools.readthedocs.io/en/latest/ pages look great - well done!) Given that geemap is using Sphinx + mkdocs - I'm inclined toward that combo to make...