Skip to content

Instantly share code, notes, and snippets.

View donghyeon-kim98's full-sized avatar
🦜

김동현(DongHyeon Kim)/MP donghyeon-kim98

🦜
  • 위대한상상
  • 서울시 서초구
  • 14:26 (UTC +09:00)
View GitHub Profile
@allieus
allieus / gist:1180051
Last active June 25, 2022 18:10
wgs84/tm127/tm128/grs80/cyworld 간 좌표변환
'''
aero님께서 구현하신 구글/네이버/싸이월드/콩나물 좌표변환은 펄/자바스크립트로 되어있습니다.
펄/자바스크립트에 익숙지 않은지라, 수식을 파이썬으로 번역해보았습니다.
'''
from pyproj import Proj
from pyproj import transform
WGS84 = { 'proj':'latlong', 'datum':'WGS84', 'ellps':'WGS84', }