Replies: 1 comment
-
If your file have geometric errors (duplicate points, self-intersections, etc.) it's possible that the triangulation will fail. try adding the
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to triangulate cityjson file but facing the following problem:
I have both cityjson files 1.0 and 1.1, with 1.0 I don't get the message below but the file doesn't get triangulated
with 1.1 I am getting the message below and the file is not triangulated too.
C:\Users\00\AppData\Local\Programs\Python\Python39\lib\site-packages\cjio\geom_help.py:43: RuntimeWarning: overflow encountered in scalar multiply
n[1] += ( (poly[i][2] - poly[ne][2]) * (poly[i][0] + poly[ne][0]) )
C:\Users\00\AppData\Local\Programs\Python\Python39\lib\site-packages\cjio\geom_help.py:44: RuntimeWarning: overflow encountered in scalar multiply
n[2] += ( (poly[i][0] - poly[ne][0]) * (poly[i][1] + poly[ne][1]) )
C:\Users\00\AppData\Local\Programs\Python\Python39\lib\site-packages\cjio\geom_help.py:42: RuntimeWarning: overflow encountered in scalar multiply
n[0] += ( (poly[i][1] - poly[ne][1]) * (poly[i][2] + poly[ne][2]) )
Beta Was this translation helpful? Give feedback.
All reactions