python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
XYZ to a linear value and vice-versa
I have my 3D world x, y, z. I can easily convert given coordinates x, y, z to an integer using my macro XYZ:
const ulong WORLD_SIZE_X = 60;
const ulong WORLD_SIZE_Y = 60;
const ulong WORLD_SIZE_Z = 60...
Olivier Pons
Votes: 0
Answers: 2
Convert LineString / MultiLineString geometries to lat lon
I am using this Mapillary endpoint: https://tiles.mapillary.com/maps/vtp/mly1_public/2/{zoom_level}/{x}/{y}?access_token={} and getting such responses back (see photo). Also, here is the Mapillary doc...
M.Ionut
Votes: 0
Answers: 1
Unintended player movement from transform.InverseTransformDirection
this is my first time posting on here. I'm working on a game using the new Unity multiplayer networking solution.
In summary, the issue is that the player is not moving as intended.
I am trying to tak...
TheUnaverageJoe
Votes: 0
Answers: 2
How to convert multiple coordinates from DMS to decimal?
I'm tryng to convert some coordinates from DMS to decimal.
For example from S1639 W07157 to -16.65, -71.95
To achieve this I use the code found: here modified as below:
def dm2dd(direction, degrees, m...
Lareth
Votes: 0
Answers: 1