Skip to content

Commit 5251c88

Browse files
committed
nit update
1 parent ded9854 commit 5251c88

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

labelbox/data/annotation_types/data/tiled_image.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ class TiledBounds(BaseModel):
4949
""" Bounds for a tiled image asset related to the relevant epsg.
5050
5151
Bounds should be Point objects.
52-
Currently, we support bounds in EPSG 4326. These should be [[lat,lng],[lat,lng]]
5352
54-
>>> bounds = TiledBounds(
55-
epsg=EPSG.4326,
56-
bounds=[Point(x=0, y=0),Point(x=30, y=30)]
57-
)
53+
>>> bounds = TiledBounds(epsg=EPSG.EPSG4326,
54+
bounds=[
55+
Point(x=-99.21052827588443, y=19.405662413477728),
56+
Point(x=-99.20534818927473, y=19.400498983095076)
57+
])
5858
"""
5959
epsg: EPSG
6060
bounds: List[Point]

0 commit comments

Comments
 (0)