Search code examples
google-mapskmlgoogle-earthwgs84sharpkml

WGS-84 Co-ordinates


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.


Solution

  • 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.