I have the following column containing a location (street name, x and y coordinates):
Location
"1139 57 STREET New York (40.632653207600001, -74.000244990799999)"
What I want to do is split it up into three columns: 'Address', 'Longitude' and 'Latitude'. Similar to this:
Location Latitude Longitude
"1139 57 STREET New York 40.632653207600001 -74.000244990799999"
How would I go about doing this?