Skip to main content

Matrices describing affine transformation of the plane

Project description

Matrices describing affine transformation of the plane.

https://travis-ci.org/sgillies/affine.svg?branch=master https://coveralls.io/repos/sgillies/affine/badge.svg

The Affine package is derived from Casey Duncan’s Planar package. Please see the copyright statement in affine/__init__.py.

Usage

The 3x3 augmented affine transformation matrix for transformations in two dimensions is illustrated below.

Matrices can be created by passing the values a, b, c, d, e, f to the affine.Affine constructor or by using its identity(), translation(), scale(), shear(), and rotation() class methods.

>>> from affine import Affine
>>> Affine.identity()
Affine(1.0, 0.0, 0.0,
       0.0, 1.0, 0.0)
>>> Affine.translation(1.0, 5.0)
Affine(1.0, 0.0, 1.0,
       0.0, 1.0, 5.0)
>>> Affine.scale(2.0)
Affine(2.0, 0.0, 0.0,
       0.0, 2.0, 0.0)
>>> Affine.shear(45.0, 45.0)  # decimal degrees
Affine(1.0, 0.9999999999999999, 0.0,
       0.9999999999999999, 1.0, 0.0)
>>> Affine.rotation(45.0)     # decimal degrees
Affine(0.7071067811865476, 0.7071067811865475, 0.0,
       -0.7071067811865475, 0.7071067811865476, 0.0)

These matrices can be applied to (x, y) tuples to obtain transformed coordinates (x', y').

>>> Affine.translation(1.0, 5.0) * (1.0, 1.0)
(2.0, 6.0)
>>> Affine.rotation(45.0) * (1.0, 1.0)
(1.1102230246251565e-16, 1.414213562373095)

They may also be multiplied together to combine transformations.

>>> Affine.translation(1.0, 5.0) * Affine.rotation(45.0)
Affine(0.7071067811865476, 0.7071067811865475, 1.0,
       -0.7071067811865475, 0.7071067811865476, 5.0)

Usage with GIS data packages

Georeferenced raster datasets use affine transformations to map from image coordinates to world coordinates. The affine.Affine.from_gdal() class method helps convert GDAL GeoTransform, sequences of 6 numbers in which the first and fourth are the x and y offsets and the second and sixth are the x and y pixel sizes.

Using a GDAL dataset transformation matrix, the world coordinates (x, y) corresponding to the top left corner of the pixel 100 rows down from the origin can be easily computed.

>>> geotransform = (-237481.5, 425.0, 0.0, 237536.4, 0.0, -425.0)
>>> fwd = Affine.from_gdal(*geotransform)
>>> col, row = 0, 100
>>> fwd * (col, row)
(-237481.5, 195036.4)

The reverse transformation is obtained using the ~ operator.

>>> rev = ~fwd
>>> rev * fwd * (col, row)
(0.0, 99.99999999999999)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

affine-2.0.0.post1.tar.gz (11.3 kB view details)

Uploaded Source

Built Distributions

affine-2.0.0.post1-py3-none-any.whl (15.2 kB view details)

Uploaded Python 3

affine-2.0.0.post1-py2-none-any.whl (15.2 kB view details)

Uploaded Python 2

File details

Details for the file affine-2.0.0.post1.tar.gz.

File metadata

File hashes

Hashes for affine-2.0.0.post1.tar.gz
Algorithm Hash digest
SHA256 2bb847da3ad7903ccb44ce2b9d09c1f0c571c1cab95222b2b03726fb82a51f86
MD5 b7f4e2c86adc6575a7563c401d07f992
BLAKE2b-256 b03ce1a37f1e92f27f5e32371b572201819c59d5e917d600d46df80f780cab43

See more details on using hashes here.

File details

Details for the file affine-2.0.0.post1-py3-none-any.whl.

File metadata

File hashes

Hashes for affine-2.0.0.post1-py3-none-any.whl
Algorithm Hash digest
SHA256 9e8425e999a91c32007fcf625ff50fb6c62464ce9174a811c951065ed1dd078d
MD5 d4235d75cf6117cc7457cf97a0cbbc89
BLAKE2b-256 bfdfd175613af5ec13cfe83e8bc1249f647ca6d55dd33565ce9433cf0e00daa9

See more details on using hashes here.

File details

Details for the file affine-2.0.0.post1-py2-none-any.whl.

File metadata

File hashes

Hashes for affine-2.0.0.post1-py2-none-any.whl
Algorithm Hash digest
SHA256 fca72194a3eb3c9e3833feff40dfd6a81e35a3e89289ba57fdcab57899be8d16
MD5 3f5d85dd342a16fee2914a8967dd4d1e
BLAKE2b-256 eda44cbf2a15dd6eb0f17e3f443640b8472ce3a1b09cd8f692bc59b8a6fe3e69

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page