ReclassifyTile#
Overview#
ReclassifyTile is a Tile tailored for the creation and usage of a custom classification. Fully autonomous this tile will help you create classification that fit your application and apply it on your inputs.
It inherits from the SepalWidget class. Any argument from the original Card ipyvuetify class can be used to complement it. You can choose either or not you want to use the gee binding.
from pysepal import reclassify as rec
# correct colors for the documentation
# set to dark in SEPAL by default
import ipyvuetify as v
v.theme.dark = False
reclassify_tile = rec.ReclassifyTile(gee=False)
reclassify_tile
/home/docs/checkouts/readthedocs.org/user_builds/sepal-ui/envs/latest/lib/python3.10/site-packages/google/api_core/_python_version_support.py:273: FutureWarning: You are using a Python version (3.10.19) which Google will stop supporting in new releases of google.api_core once it reaches its end of life (2026-10-04). Please upgrade to the latest Python version, or at least Python 3.11, to continue receiving updates for google.api_core past that date. warnings.warn(message, FutureWarning)
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
Cell In[1], line 1
----> 1 from pysepal import reclassify as rec
3 # correct colors for the documentation
4 # set to dark in SEPAL by default
5 import ipyvuetify as v
ImportError: cannot import name 'reclassify' from 'pysepal' (/home/docs/checkouts/readthedocs.org/user_builds/sepal-ui/checkouts/latest/pysepal/__init__.py)
Note
More information can be found here.