I have csv files where one column contains a string with the geometry data in JSON format (similar to what is specified in the ESRI document).
Here is an example:
ID,SHAPE
123456,"{'rings' : [[[-97.06138,32.837], [-97.06133,32.836], [-97.06124,32.834], [-97.06127,32.832], [-97.06138,32.837]], [[-97.06326,32.759], [-97.06298,32.755], [-97.06153,32.749], [-97.06326,32.759]]], 'spatialReference' : {'wkid' : 4326}}"
Can you recommend a solution to read, parse and convert to sf object this type of csv files?
Thank you