Hi,
I notice your polygon has many repeated vertex in same points.

I suggest you to remove they,
using
ST_RemoveRepeatedPoints()

ST_RemoveRepeatedPoints(
        ST_GeomFromEWKT('SRID=3003;
        POLYGON((
        168119.443682473 451093.811197312,
        197555.469699649 451093.811197312,
        197555.469699649 437539.54805452,
        168119.443682473 437539.54805452,
        168119.443682473 437539.54805452,
        168119.443682473 451093.811197312
        ))')) as geom;


I guess they could do some trouble in ST_Difference.

Regards,

Andrea.
_______________________________________________
postgis-users mailing list
postgis-users@postgis.refractions.net
http://postgis.refractions.net/mailman/listinfo/postgis-users

Reply via email to