Skip to content

mapping module

The mapping module contains functions for generating flood inundation maps using tiled FDLPLN library.

hello_mapping(name)

Prints "Hello, !" to the console.

Parameters:

Name Type Description Default
name str

The name to say hello to.

required
Source code in xingong_pypack/mapping.py
def hello_mapping(name):
    """Prints "Hello, <name>!" to the console.

    Args:
        name (str): The name to say hello to.
    """
    print(f"Hello, {name}! Thanks for using the mapping module!")