Skip to content

report module

Module for reporting issues with geemap.

Report

Bases: Report

Source code in geemap/report.py
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
class Report(scooby.Report):
    def __init__(
        self,
        additional: Optional[dict] = None,
        ncol: int = 3,
        text_width: int = 80,
        sort: bool = False,
    ):
        """Initiate a scooby.Report instance."""
        core = [
            "geemap",
            "ee",
            "ipyleaflet",
            "folium",
            "jupyterlab",
            "notebook",
            "ipyevents",
        ]
        optional = ["geopandas", "localtileserver"]

        scooby.Report.__init__(
            self,
            additional=additional,
            core=core,
            optional=optional,
            ncol=ncol,
            text_width=text_width,
            sort=sort,
        )

__init__(additional=None, ncol=3, text_width=80, sort=False)

Initiate a scooby.Report instance.

Source code in geemap/report.py
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
def __init__(
    self,
    additional: Optional[dict] = None,
    ncol: int = 3,
    text_width: int = 80,
    sort: bool = False,
):
    """Initiate a scooby.Report instance."""
    core = [
        "geemap",
        "ee",
        "ipyleaflet",
        "folium",
        "jupyterlab",
        "notebook",
        "ipyevents",
    ]
    optional = ["geopandas", "localtileserver"]

    scooby.Report.__init__(
        self,
        additional=additional,
        core=core,
        optional=optional,
        ncol=ncol,
        text_width=text_width,
        sort=sort,
    )