I'm trying to look at the lat and lon details of a open data api in victoria. The way the lat lon data is fromated is as below,
Transforming the location data into a lat and lon column so it is usable, i've been trying this in python (ideally want to do it in golang but eh).
sites_df['lat']=sites_df.location[0][0]
to get just one lat value. How would I do this through the entire dataset ot create a new lat and lon column?