I want to create an image showing the location of something and I know the GPS coordinates. What’s the easiest workflow to show the location of those coordinates on a map?
You need to know the map projection and coordinate system…
After you know all that, you can use some math to convert.
AbouBenAdhem@lemmy.world 1 hour ago
If you use a plate carrée projection (in which all lines of latitude and longitude are rectangular and equal), it’s a simple linear formula:
x = (longitude + 180) * (map width / 360)
y = (latitude + 90) * (map height / 180)