I have a loop code in python like this:
for index, row in maproad.iterrows(): road = wkb.loads(row['THE_GEOM'], hex=True) buffered_road = Polygon(road.buffer(0.00015,cap_style=2,resolution=2)) print(row['OBJECTNAME']) c.write({ 'geometry': mapping(Polygon(buffered_road.exterior)), 'properties': {'name': row['OBJECTNAME']} }) if road: road = wkb.loads(row['THE_GEOM'], hex=False) continue I want to continue the loop but it throws THE_GEOM parsing error. So i got stuck and i am really noob to python. Thankyou
continuea the last command in the loop does not make much sense.