Parameters for ODM

The --proj flag instructions are a big vague in detail in the docs.
If I wanted my projection to be EPSG:4326, then the PROJ4 string would be like this?
--proj: "+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs"'

Happy to take updates and pull requests on the docs!:

You’re close. There are two issues here: first, there’s no colon. Also epsg:4326 is an angular coordinate system, not planar. Angular systems are not supported. Here’s what the string would look like for Ohio State Plane North:
--proj "+proj=lcc +lat_1=41.7 +lat_2=40.43333333333333 +lat_0=39.66666666666666 +lon_0=-82.5 +x_0=600000 +y_0=0 +ellps=GRS80 +datum=NAD83 +to_meter=0.3048006096012192 +no_defs"

Via spatialreference.org: NAD83 / Ohio North (ftUS): EPSG Projection -- Spatial Reference

4326 isn’t supported?? awwwee… dang it! Okay, another quickie… Why does --build-overviews not work?

Could be a regression. I think this could be a bug: https://github.com/OpenDroneMap/ODM/issues/new

Related conversation here: https://github.com/OpenDroneMap/ODM/issues/1040