私は都市の経度/緯度の位置をデカルトに変換しようとしているので、それをピクセル位置に変換してpygame画面に表示できますが、それを理解するのに苦労しています。
def ConvertPoint(self, Long, Lat, height, width):
self.x = Long
self.y = Lat
self.x = angleToPointX(self.x, self.y, 3959)
self.y = angleToPointY(self.x, self.y, 3959)
pygame.draw.circle(self.window, (255,0,0), (int(self.x), int(self.y)), 5)
print(self.x, self.y)
機能:
def angleToPointX(lat, long, magnitude=1.0):
V = (math.cos(lat) * math.cos(long))
return V
def angleToPointY(lat, long, magnitude=1.0):
V = (math.sin(lat))
return V