使用产品:iDesktop 11i 操作系统:win10 x64 数据类型: 坐标串 问题详细描述:四参数坐标转换使用桌面端计算的结果与实际使用公式计算的结果y坐标存在误差 问题重现步骤: 1.China_2D_4 (0,0,10,0) 坐标系EPSG:4546到EPSG:4547 x:100000,y:100000 2. 通过公式y为 100004.84801928705 ,通过desktop计算为100004.847784237 , 代码请用编辑器中代码块格式 double x = coord.x, y = coord.y; double a = Math.cos(fourParam.getRotate()); double b = Math.sin(fourParam.getRotate()); double targetX = fourParam.getxOffset() + fourParam.getScale() * (a * x - b * y); double targetY = fourParam.getyOffset() + fourParam.getScale() * (b * x + a * y); 1813257127@qq.com