My situation is that I'm trying to convert an array of tuples in a string format into an array of tuples.
i.e. I want to go from:
['(-109.080842,45.002073)','(-105.91517,45.002073)','(-109.080842,45.002073)']
to
[(-109.080842,45.002073),(-105.91517,45.002073),(-109.080842,45.002073)]
The purpose of this is to be able to create a shapely Polygon. It throws an error when the tuples are a string. What is the best way to go from strings to actual tuple objects?