i have a string as:
mydata
'POINT (558750.3267372231900000 6361788.0628051758000000)'
i wish a code saving way to convert in a list numeric as
(g, (x,y))
where:
g = geometry (POINT)
x = coordinates x
y = coordinates y
i am using
mydata.split(" ")
['POINT', '(558750.3267372231900000', '6361788.0628051758000000)']
but after that i need to use several code line to get x and y