We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
itransform
I believe that itransform is incorrect for Affine matrices that have rotation/shear
I assume that A.itransform(pts) is equivalent to:
A.itransform(pts)
pts = [A*pt for pt in pts]
It's not for affine transforms that have non-zero off-diagonal entries.
I think on this line sd <-> sb are swapped https://github.com/sgillies/affine/blob/b125a6397c2a0ff4d7587a43b8678ee5f54765ed/affine/__init__.py#L519
sd <-> sb
Unit test only checks with scale only matrix.
The text was updated successfully, but these errors were encountered:
Fix computation in itransform
cfa5d11
Fix for issue rasterio#40
Fix computation in itransform (#41)
3d1a493
Fix for issue #40
No branches or pull requests
I believe that
itransform
is incorrect for Affine matrices that have rotation/shearI assume that
A.itransform(pts)
is equivalent to:It's not for affine transforms that have non-zero off-diagonal entries.
I think on this line
sd <-> sb
are swappedhttps://github.com/sgillies/affine/blob/b125a6397c2a0ff4d7587a43b8678ee5f54765ed/affine/__init__.py#L519
Unit test only checks with scale only matrix.
The text was updated successfully, but these errors were encountered: