<div dir="ltr">Is it possible for a user to add a format to the new bearing tool in 3.22? Cadastral descriptions in the United States are usually expressed in degrees, minutes, seconds in four quadrants e.g. <div>  N 45°27'18"W or S 15°07'54"E, etc.</div><div>I have a SQL expression below that I use for labeling in that format. I would like to add it as a format option in the bearing tool.</div><font face="monospace">concat(<br>  case<br>    when degrees(azimuth(start_point($geometry), end_point($geometry)))< 90<br>      then CONCAT('N',to_dms(degrees(azimuth(start_point($geometry), end_point($geometry))), 'x',0,'aligned'))<br>    when degrees(azimuth(start_point($geometry), end_point($geometry)))< 180<br>      then CONCAT('S', to_dms(180 - degrees(azimuth(start_point($geometry), end_point($geometry))), 'x',0,'aligned'))<br>    when degrees(azimuth(start_point($geometry), end_point($geometry)))< 270<br>      then CONCAT('S', to_dms(degrees(azimuth(start_point($geometry), end_point($geometry))) -180, 'x',0), '°W')<br>    else<br>      CONCAT('N', to_dms(360 - degrees(azimuth(start_point($geometry), end_point($geometry))), 'x',0), 'W')<br>  end<br>) </font><br><div><div><br></div>-- <br><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr">Richard W. Greenwood<br><a href="http://www.greenwoodmap.com" target="_blank">www.greenwoodmap.com</a></div></div></div></div>