I am running into this error:

>>TypeError: 'CoordinateSequence' object doesn't support item deletion

on trying to delete points from a LinearRing (see sample below).

>>         # Remove points indexed in removeList
 >>       # Sort the list of indices in reverse order
>>      #so that they can be deleted without throwing off other indices


>>        for i in sorted(removeList, reverse=True):
>>            del(ring.coords[i])

ring.coords is the list of coordinates.. just trying to delete...can this
not be done on a LinearRing?
_______________________________________________
Community mailing list
Community@lists.gispython.org
http://lists.gispython.org/mailman/listinfo/community

Reply via email to