options.add_option("","","azimuth-unit",std::string("Azimuth unit. Supported azimuth units are: ")+supportedAzimuthUnits+".",cxxopts::value<std::string>(azimuthUnitString),"<string>");
options.add_option("","","azimuth-scale","Azimuth scale factor. Trace header field Azimuth values will be multiplied by this factor.",cxxopts::value<float>(azimuthScaleFactor),"<value>");
// TODO add option for turning off traceOrderByOffset
// TODO temporary option that will be removed/changed when new respace algo is implemented (traceOrderByOffset)
options.add_option("","","order-by-offset","Order traces within a gather by offset.",cxxopts::value<bool>(traceOrderByOffset),"");
options.add_option("","h","help","Print this help information",cxxopts::value<bool>(help),"");
options.add_option("","H","help-connection","Print help information about the connection string",cxxopts::value<bool>(helpConnection),"");