hydromt_wflow.WflowModel.build

WflowModel.build(region: dict, res: Optional[float] = None, write: bool = True, opt: Optional[dict] = None)

Single method to setup and write a full model schematization and configuration from scratch

Parameters
  • region (dict) – Description of model region. See parse_region() for all options.

  • res (float, optional) – Model restolution. Use only if applicable to your model. By default None.

  • write (bool, optional) – Write the complete model schematization after setting up all model components. By default True.

  • opt (dict, optional) –

    Model setup configuration. This is a nested dictionary where the first-level keys are the names of model spedific setup methods and the second-level keys the arguments of the method:

    ```{
    <name of method1>: {

    <argument1>: <value1>, <argument2>: <value2> }

    <name of method2>: {

    … }

    }

    }```