I used a custom URL to pass coordinates in DMS. The Coordinates are saved without the degrees symbol, quotes and apostrophe:
40 18 54.12345 N
I want to use the calculation field to add in the degrees symbol, double and single quotes to make it look like this:
40° 18' 54.12345" N
To do this, I planned to use the "substr" function combined with the "concat" function. The problem is that I can't get it to add in the single apostrophe. So how do I add an apostrophe (single quote)?
concat((subtra(${DMSLat},0,2})), '° ',(subtra(${DMSLat},3,5)), '' ',(subtra(${DMSLat},6,12)),'" N')