Skip to content

Commit 2fb62c1

Browse files
committed
changed maximum segment length of projected geometries
1 parent 5fa4364 commit 2fb62c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pytileproj/_const.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
import pyproj
77

8-
DEF_SEG_LEN_DEG = 0.1 # number of segments for a lon lat geometry
9-
DEF_SEG_LEN_M = 100 # number of segments for a projected geometry
8+
DEF_SEG_LEN_DEG = 0.1 # maximum length of a segment for a lon lat geometry
9+
DEF_SEG_LEN_M = 10_000 # maximum length of a segment for a projected geometry
1010
DEF_SEG_NUM = 5_000 # number of segments for a projected geometry
1111
DECIMALS = 9 # least significant digit after the command for rounding
1212
TIMEOUT = 60 # timeout for requests

0 commit comments

Comments
 (0)