add W84Util.java

This commit is contained in:
hongzhe.qin
2021-11-01 10:58:09 +08:00
parent c71ab1e39e
commit c105eddc8b
2 changed files with 211 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
package cn.hutool.core.util;
import org.junit.Test;
/**
* 坐标转换工具类单元测试
*
* ps: 坐标转换存在一定误差,故此工具类无单元测试,无法验证,请根据实际业务判断误差值
*
* @author hongzhe.qin
*/
public class W84UtilTest {
@Test
public void gcj02tobd09Test() {
}
@Test
public void bd09togcj02(){
}
@Test
public void gcj02towgs84(){
}
@Test
public void wgs84togcj02(){
}
@Test
public void wgs84tobd09(){
}
}