Is this Geometry equal to the other?
(self, other)
| 199 | return self.sym_difference(other) |
| 200 | |
| 201 | def __eq__(self, other): |
| 202 | "Is this Geometry equal to the other?" |
| 203 | return isinstance(other, OGRGeometry) and self.equals(other) |
| 204 | |
| 205 | def __str__(self): |
| 206 | "WKT is used for the string representation." |