rasterio/tests/test_pad.py
2014-09-01 22:00:56 -06:00

16 lines
306 B
Python

import affine
import numpy
import rasterio
def test_pad():
arr = numpy.ones((10, 10))
trans = affine.Affine(1.0, 0.0, 0.0, 0.0, -1.0, 10.0)
arr2, trans2 = rasterio.pad(arr, trans, 2, 'edge')
assert arr2.shape == (14, 14)
assert trans2.xoff == -2.0
assert trans2.yoff == 12.0