Skip to content

Tag: coordinates

Find boundary points of xy coordinates

I have a text file with xy-coordinates called xy.txt. I read the file using and I can plot the points with Visually the data looks as follows: I want to retrieve the xy-coordinates of the points that form the boundary of the shape. Answers on similar questions suggest to use Concave Hull. With the help of thi…

Python + Minecraft Coordinates Trouble

The Y coordinate listed below teleports you to double what it’s supposed to ingame. It is supposed to teleport you to 0, 62, 0, but it teleports you to 0, 124, 0 Answer Per comments on the documentation for mcpi, it would appear that the coordinates are relative to the world spawn: getPos, getTilePos, s…

Removing the 2d point that are close to each others

I would like to remove the coordinates that lie close to each other or if it is just a duplicate. For example, In the above list, the first and second element lies close to each other. How do I remove the second element while preserving the first one? Following is what I have tried, The problem is that it doe…

degree decimal to utm conversion, python

I got surprised when I tried to convert degree decimal coordinates into utm by using available library in anacondautm. my coordinates looks like: and lat values are: when I made scatter plot it looks like normal: After converting coordinates in to utm distribution of the points change completely and looks str…