diff --git a/harmony/harmony.py b/harmony/harmony.py index 46b230c..abed13a 100644 --- a/harmony/harmony.py +++ b/harmony/harmony.py @@ -152,12 +152,12 @@ def __repr__(self) -> str: class WKT: """The Well Known Text (WKT) representation of Spatial. - Supported WKT geometry types are: POINT, MULTIPOINT, POLYGON, MULTIPOLYGON. + Supported WKT geometry types are: POINT, MULTIPOINT, POLYGON, MULTIPOLYGON.\ Example: - spatial=WKT('POINT(-40 10)') - spatial=WKT('MULTIPOINT((-77 38.9),(-40 10))') - spatial=WKT('POLYGON((-140 20, -50 20, -50 60, -140 60, -140 20))') + spatial=WKT('POINT(-40 10)')\ + spatial=WKT('MULTIPOINT((-77 38.9),(-40 10))')\ + spatial=WKT('POLYGON((-140 20, -50 20, -50 60, -140 60, -140 20))')\ spatial=WKT('MULTIPOLYGON(((10 10, 20 20, 30 10, 10 10)),((40 40, 50 50, 60 40, 40 40)))') """