I am new with Python programming. I keep getting the below error on the 'str'. When I added the + str, it didnt work.
wkt = "POINT("+ geoPoint["lat"] +" " + geoPoint["lon"] + ")"
TypeError: cannot concatenate 'str' and 'float' objects
Any advice on how I can fix this error?
strandflloatobjects?