utils Module¶
add(x, y)
¶
Add Function
Source code in geogee\utils.py
18 19 20 | |
divide(x, y)
¶
Divide Function
Source code in geogee\utils.py
33 34 35 36 37 | |
multiply(x, y)
¶
Multiply Function
Source code in geogee\utils.py
28 29 30 | |
random_string(string_length=3, use_seed=False)
¶
Generates a random string of fixed length. Args: string_length (int, optional): Fixed length. Defaults to 3. Returns: str: A random string
Source code in geogee\utils.py
2 3 4 5 6 7 8 9 10 11 12 13 14 15 | |
subtract(x, y)
¶
Subtract Function
Source code in geogee\utils.py
23 24 25 | |