I have following set of Co-ordinates

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

This is the format of WGS-84. Please let me know what does the first point denote, second point denote upto 5th point.

有帮助吗?

解决方案

Those are the parameters for a World file that allow the correct placement of raster images.

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)

I found my answer in this link.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top