I have table in geodataframe w hich I have changed into geopandas and it contains two fields: ID and geometry.
The geometry columns is in WKT format and the table looks like this:
>>>ID geometry
0 1 POLYGON((2.9544435 6.3245124, 2.4098938 6.42657389...
1 2 POLYGON((3.4324624 6.8735201, 2.4590825 6.23098357...
...
I'm trying to replace the parentheses and the POLYGON , so instead of haveing format of POLYGON(()) it will be MultiPolygon((())).
I have changed my dataframe from geopandas to pandas and then tried with replace:
covex['geometry']=covex['geometry'].replace({'POLYGON':'MultiPolygon'},regex=True)
covex['geometry']=covex['geometry'].replace({'\(\(':'\(\(\('},regex=True)
covex['geometry']=covex['geometry'].replace({'\)\)':'\)\)\)'},regex=True)
but for some reason the replace keeps the ****, e.g:
>>>ID geometry
0 1 MULTIPOLYGON \(\(\(2.9544435 6.3245124, 2.4098938 6.42657389...
1 2 MULTIPOLYGON \(\(\(3.4324624 6.8735201, 2.4590825 6.23098357...
...
If I don't put the \ it doesn't replace anything and I get the following error message:
error: missing ), unterminated subpattern at position 1
My end goal here is to replace the polygon and the (( )) into multipolygon ((()))