Quick Start

You can install Bulldozer by running the following command:

pip install bulldozer-dtm

It has been developed with the goal to provide a simple user interface. For example, to launch Bulldozer without any specific configuration, you can use the following command line:

bulldozer -in input_dsm.tif -out output_dir

Or use it through the Python API:

   from bulldozer.pipeline.bulldozer_pipeline import dsm_to_dtm
   # Example with a specific number of workers
   dsm_to_dtm(dsm_path="input_dsm.tif", output_dir="output_dir")

If you’d like to go further: explore the different ways to run Bulldozer, look into the various available options, check out Bulldozer’s outputs, or learn how to use the tool through a tutorial.