地理変換チュートリアル

地理変換の紹介:

地理変換は,画像座標空間(行,列),または(ピクセル,ライン)から,地理座標空間(投影座標または地理座標)へのアフィン変換です.

地理変換は、6つの係数のセットで構成されます:

GT(0) x-coordinate of the upper-left corner of the upper-left pixel.
GT(1) w-e pixel resolution / pixel width.
GT(2) row rotation (typically zero).
GT(3) y-coordinate of the upper-left corner of the upper-left pixel.
GT(4) column rotation (typically zero).
GT(5) n-s pixel resolution / pixel height (negative value for a north-up image).

画像座標空間から地理座標空間への変換:

X_geo = GT(0) + X_pixel * GT(1) + Y_line * GT(2)
Y_geo = GT(3) + X_pixel * GT(4) + Y_line * GT(5)

上記のピクセル/ライン座標は,左上のピクセルの左上の(0.0,0.0)から、右下のピクセルの右下の(width_in_pixels,height_in_pixels)までです.したがって,左上のピクセルの中心のピクセル/ラインの位置は(0.5,0.5)です.

北向き画像の場合:

GT(2), GT(4) coefficients are zero.
GT(1), GT(5) is the pixel size.
GT(0), GT(3) position is the top left corner of the top left pixel of the raster.