Constructor
new TM()
Methods
(static) Geo2TM(latitude, longitude, EPSG) → {array}
경위도를 TM 좌표값으로 변환한다.
Parameters:
Name | Type | Description |
---|---|---|
latitude |
number | 위도 좌표값(decimal degree) |
longitude |
number | 경도 좌표값(decimal degree) |
EPSG |
string | 기준원점 설정(초기값 중부원점으로 설정) |
Returns:
TM 좌표값을 반환한다.
- Type
- array
(static) TM2Geo(x, y) → {array}
TM 좌표값를 경위도 좌표값으로 변환한다.
Parameters:
Name | Type | Description |
---|---|---|
x |
number | x 좌표값 |
y |
number | y 좌표값 |
Returns:
경위도 좌표값을 반환한다.
- Type
- array