Skip to content

Commit

Permalink
HARMONY-1859: Fix readthedocs format.
Browse files Browse the repository at this point in the history
  • Loading branch information
ygliuvt committed Sep 9, 2024
1 parent 1840365 commit f4fc350
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions harmony/harmony.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)))')
"""

Expand Down

0 comments on commit f4fc350

Please sign in to comment.