mirror of
https://github.com/jdejaegh/python-irceline.git
synced 2025-06-26 19:35:40 +02:00
7 lines
171 B
Python
7 lines
171 B
Python
from src.open_irceline.utils import epsg_transform
|
|
|
|
|
|
def test_epsg_transform():
|
|
x, y = epsg_transform((50.4657, 4.8647))
|
|
assert x == 185211
|
|
assert y == 128437
|