WGS-84协调

时间:2014-01-23 16:57:07

标签: google-maps kml google-earth wgs84 sharpkml

我有以下一组坐标

0.00852919145063922,0.000000,0.000000,-0.00852919145063922,-117.210491069447,34.8362619850852

这是WGS-84的格式。请让我知道第一点表示什么,第二点表示第5点。

1 个答案:

答案 0 :(得分:1)

这些是World file的参数,可以正确放置光栅图像。

0.00852919145063922,  // How much longitude each X pixel represents
0.000000,             // Rotation about Y-axis
0.000000,             // Rotation about X-axis
-0.00852919145063922, // How much latitude each Y pixel represents
-117.210491069447,    // Longitude of the upper left pixel (West point)
34.8362619850852      // Latitude of the upper left pixel (North point)

我在link.

中找到了答案