"""
How to get started with the Spatiocoexistence model
===================================================

.. sectionauthor:: Julian Heinze (Helmholtz Centre for Environmental Research GmbH - UFZ)

This example demonstrates basic usage of the Spatiocoexistence model.
"""

# %%
# Necessary imports
from spatiocoexistence.model import SpatioCoexistenceModel

# %%
# Initialize the model
model = SpatioCoexistenceModel()

# %%
# Run the model for a certain amount of steps
model.cy_run(25)

# %%
# Plot the Simulation Results
model.plot("test")
