I'm trying to create a polygon from coords but throws the next error:
Error encountered checking Geometry returned from GEOS C function "GEOSWKTReader_read_r".
its not works
poly = GEOSGeometry('POLYGON((4.8371311 4.8371311, 4.8371311 4.8371311, 4.6857419 4.6857419, 4.6857419 4.6857419))')
but it works
poly = GEOSGeometry('POLYGON((4 4, 4 4, 4 4, 4 4))')
¿Some idea?