Skip to content

examples module

Get a list of HTTP URLs to the example datasets.

Returns:

Type Description
list

A list of HTTP URLs to the example datasets.

Source code in leafmap/examples/__init__.py
def get_links():
    """Get a list of HTTP URLs to the example datasets.

    Returns:
        list: A list of HTTP URLs to the example datasets.
    """

    return list(datasets.values())

get_names()

Get a list of names of the example datasets.

Returns:

Type Description
list

A list of names of the example datasets.

Source code in leafmap/examples/__init__.py
def get_names():
    """Get a list of names of the example datasets.

    Returns:
        list: A list of names of the example datasets.
    """

    return list(datasets.keys())

get_path(name)

Get the HTTP URL to an example dataset.

Parameters:

Name Type Description Default
name str

The name of the dataset.

required

Exceptions:

Type Description
ValueError

If the dataset name is not found.

Returns:

Type Description
str

The HTTP URL to the dataset.

Source code in leafmap/examples/__init__.py
def get_path(name):
    """Get the HTTP URL to an example dataset.

    Args:
        name (str): The name of the dataset.

    Raises:
        ValueError: If the dataset name is not found.

    Returns:
        str: The HTTP URL to the dataset.
    """
    if name in datasets:
        return datasets[name]
    else:
        raise ValueError(
            f"{name} not found in example datasets. It must be one of {list(datasets.keys())}"
        )