I am trying to extract coordinates of various formats from reddit comments. I want to be able to extract the two different coordinate formats supported on google maps:
73.180633, -98.100802
and 73°10'50.3"N 98°06'02.9"W
I am able to extract coordinates in the first format with this expression:
([-+]?\d{1,2}[.]\d+),\s*([-+]?\d{1,3}[.]\d+)
However, I have not been able to successfully find or make a pattern to match the second format.