2 part world map for mounting in front of a 32x16 LED matrix such as https://core-electronics.com.au/freetronics-dmd-dot-matrix-display-32x16-blue.html
Python code for converting latitude/longitude to LED coordinates:
def convertGPStoPixels(lat,lon):
x=int(round((lon+170)/360*32))
y=int(round((-lat+83)/145*16))
return((x, y))
Category: Electronics
The author marked this model as their own original creation. Imported from Thingiverse.