Create a project name variable that can be passed via an option parameter in the docker run opendronemap/odm command, which is then presented in the quality report in place of 'ODM', ie the quality report would be titled "MyProject Quality Report" instead of "ODM Quality Report". This will help the report recipient more easily identify the project or phase for a particular report.
def make_title(self) -> None:
# title
self.pdf.set_font("Helvetica", "B", self.title_size)
self.pdf.set_text_color(*self.mapi_light_green)
self.pdf.cell(0, self.margin, "ODM Quality Report", align="C")
self.pdf.set_xy(self.margin, self.title_size)