I was trying to extract latitudes and longitudes from QgsGeomtery. But I noticed that no all digits we being printed.
Can anybody identify why and how can I resolve this problem?
For example is this was the actual point 231233.22123413317891095, then output is 231233.2212341331.
This is the code used.
for part in geom.parts():
for vertices in part.vertices():
print(vertices.x(), vertices.y())
print(f"{vertices.x():.9f}")– user2856 Nov 23 '21 at 11:58