World file

A world file is a six line plain text sidecar file used by geographic information systems (GIS) to georeference raster map images. The file specification was introduced by Esri,[1][2] and consists of six coefficients of an affine transformation that describes the location, scale and rotation of a raster on a map.

Definition

Graphical view of world files parameters and computed values of the four first upper left pixels of an image.

The generic meaning of the six parameters in a world file (as defined by Esri[1]) are:

This description is however misleading in that the D and B parameters are not angular rotations, and that the A and E parameters do not correspond to the pixel size if D or B are not zero. The A, D, B and E parameters are sometimes named "x-scale", "y-skew", "x-skew" and "y-scale".

A better description of the A, D, B and E parameters are:

All four parameters are expressed in the map units, which are described by the spatial reference system for the raster.

When D or B are non-zero the pixel width is given by:

and the pixel height by

World files describing a map on the Universal Transverse Mercator coordinate system (UTM) use these conventions:

The above description applies also to a rectangular, non-rotated image which might be, for example, overlaid on an orthogonally projected map. If the world file describes an image that is rotated from the axis of the target projection, however, then A, D, B and E must be derived from the required affine transformation (see below). Specifically, A and E will no longer be the meter/pixel measurement on their respective axes.

These values are used in a six-parameter affine transformation:

which can be written as this set of equations:

where:

x' is the calculated UTM easting of the pixel on the map
y' is the calculated UTM northing of the pixel on the map
x is the column number of the pixel in the image counting from left
y is the row number of the pixel in the image counting from top
A or x-scale; dimension of a pixel in map units in x-direction
B, D are rotation terms
C, F are translation terms: x, y map coordinates of the center of the upper-left pixel
E is negative of y-scale: dimension of a pixel in map units in y-direction

The y-scale (E) is negative because the origins of an image and the UTM coordinate system are different. The origin of an image is located in the upper-left corner, whereas the origin of the map coordinate system is located in the lower-left corner. Row values in the image increase from the origin downward, while y-coordinate values in the map increase from the origin upward. Many mapping programs are unable to handle "upside down" images (i.e. those with a positive y-scale).

To go from UTM(x'y') to pixel position(x,y) one can use the equation:

Example: Original falknermap.jpg is 800×600 pixels (map not shown). Its world file is falknermap.jgw and contains:

32.0
0.0
0.0
-32.0
691200.0
4576000.0

The position of Falkner Island light on the map image is:

x = 171 pixels from left
y = 343 pixels from top

This gives:

x1 = 696672 meters Easting
y1 = 4565024 meters Northing

The UTM (grid) zone is not given so the coordinates are ambiguous they can represent a position in any of the approximately 120 UTM grid zones. In this case, approximate latitude and longitude (41.2, 072.7) were looked up in a gazetteer and the UTM (grid) zone was found to be 18 using a Web-based converter.

Filename extension

The filename extension of the world file is based on the raster file's extension.

One convention is to append the letter "w" to the end of the raster filename: falknermap.jpgfalknermap.jpgw.

An alternative naming convention is also well supported. The second letter of the original filename extension is removed, and the letter "w" is added at the end. For example, falknermap.jpgfalknermap.jgw or falknermap.tiffalknermap.tfw. This convention was developed for filenames that need to conform to the 8.3 file naming convention.

Localization

When writing world files it is advisable to ignore localization settings and always use "." as the decimal separator. Also, negative numbers should be specified with the "-" character exclusively. This ensures maximum portability of the images.

See also

Notes and references

  1. 1 2 "FAQ: What is the format of the world file used for georeferencing images?". Esri. 2007-03-21. Retrieved 2007-04-17.
  2. Esri also has another world file format that applies to computer-aided design or CAD drawing files. That standard refers to the format of plain text computer files with names ending in .wld and is not discussed in this article.
  3. The E parameter is often a negative number. This is because most image files store data from top to bottom, while the software utilizes traditional Cartesian coordinates with the origin in the conventional lower-left corner. If your raster appears upside-down, you may need to add a minus sign. The parameter therefore describes the map distance between consecutive image lines.

External links

This article is issued from Wikipedia - version of the 10/31/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.