function coordinateTransformation(x, y) { var steps = new GeographicTransformationStep() steps.wkt = 'GEOGTRAN["Xian_1980_To_WGS_1984",' + 'GEOGCS["GCS_Xian_1980",DATUM["D_Xian_1980",SPHEROID["Xian_1980",6378140.0,298.257]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],' + 'GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],' + 'METHOD["Position_Vector"],PARAMETER["X_Axis_Translation",115.8],PARAMETER["Y_Axis_Translation",-154.4],PARAMETER["Z_Axis_Translation",-82.3],PARAMETER["X_Axis_Rotation",0.0],PARAMETER["Y_Axis_Rotation",0.0],PARAMETER["Z_Axis_Rotation",0.0],PARAMETER["Scale_Difference",8]]' var geographicTransformation = new GeographicTransformation({ steps: [steps] }) var inSpatialReference = new SpatialReference({ wkid: 2385 //Sphere_Sinusoidal }) var outSpatialReference = new SpatialReference({ wkid: 4326 }) let arr = [] projection.load().then(function() { var wgsPoints = new Point([x, y], inSpatialReference) var ttt = projection.project(wgsPoints, outSpatialReference, geographicTransformation) arr.push(ttt.x, ttt.y) console.log(arr, '0000') }) return arr }
时间: 2024-04-25 16:26:33 浏览: 103
Coordinate-transformation.zip_LabVIEW 坐标_TRANSFORMATION_位姿_机械手_相
这段代码定义了一个名为coordinateTransformation的函数,用于将给定的坐标点从一个空间参考系投影到另一个空间参考系。该函数接受两个参数,即坐标点的经度(x)和纬度(y)。函数内部首先创建了一个GeographicTransformationStep对象,用于指定空间参考系转换的具体方法,然后创建了一个GeographicTransformation对象,将GeographicTransformationStep对象添加到steps数组中,作为空间参考系转换的步骤。
接下来,该函数创建了两个SpatialReference对象,用于指定输入和输出的空间参考系。其中,inSpatialReference对象指定了输入坐标点的空间参考系为Sphere_Sinusoidal,outSpatialReference对象指定了输出坐标点的空间参考系为WGS 1984。
最后,该函数使用ArcGIS API的projection模块将输入坐标点从inSpatialReference投影到outSpatialReference,使用GeographicTransformation对象指定的空间参考系转换方法进行转换。转换后得到的坐标点存储在ttt变量中,并将其x和y坐标分别添加到数组arr中。最终,该函数返回arr数组,其中包含转换后的坐标点的x和y坐标。
阅读全文