mirror of
https://github.com/rasterio/rasterio.git
synced 2025-12-08 17:36:12 +00:00
729 lines
21 KiB
Python
729 lines
21 KiB
Python
import logging
|
|
import sys
|
|
import numpy
|
|
import pytest
|
|
|
|
from affine import Affine
|
|
import rasterio
|
|
from rasterio.features import bounds, geometry_mask, rasterize, sieve, shapes
|
|
|
|
|
|
DEFAULT_SHAPE = (10, 10)
|
|
|
|
logging.basicConfig(stream=sys.stderr, level=logging.DEBUG)
|
|
|
|
|
|
def test_bounds_point():
|
|
g = {'type': 'Point', 'coordinates': [10, 10]}
|
|
assert bounds(g) == (10, 10, 10, 10)
|
|
|
|
|
|
def test_bounds_line():
|
|
g = {'type': 'LineString', 'coordinates': [[0, 0], [10, 10]]}
|
|
assert bounds(g) == (0, 0, 10, 10)
|
|
|
|
|
|
def test_bounds_polygon():
|
|
g = {'type': 'Polygon', 'coordinates': [[[0, 0], [10, 10], [10, 0]]]}
|
|
assert bounds(g) == (0, 0, 10, 10)
|
|
|
|
|
|
def test_bounds_z():
|
|
g = {'type': 'Point', 'coordinates': [10, 10, 10]}
|
|
assert bounds(g) == (10, 10, 10, 10)
|
|
|
|
|
|
def test_bounds_invalid_obj():
|
|
with pytest.raises(KeyError):
|
|
bounds({'type': 'bogus', 'not_coordinates': []})
|
|
|
|
|
|
def test_feature_collection(basic_featurecollection):
|
|
fc = basic_featurecollection
|
|
assert bounds(fc) == bounds(fc['features'][0]) == (2, 2, 4.25, 4.25)
|
|
|
|
|
|
def test_bounds_existing_bbox(basic_featurecollection):
|
|
"""
|
|
Test with existing bbox in geojson, similar to that produced by
|
|
rasterio. Values specifically modified here for testing, bboxes are not
|
|
valid as written.
|
|
"""
|
|
|
|
fc = basic_featurecollection
|
|
fc['bbox'] = [0, 10, 10, 20]
|
|
fc['features'][0]['bbox'] = [0, 100, 10, 200]
|
|
|
|
assert bounds(fc['features'][0]) == (0, 100, 10, 200)
|
|
assert bounds(fc) == (0, 10, 10, 20)
|
|
|
|
|
|
def test_geometry_mask(basic_geometry, basic_image_2x2):
|
|
with rasterio.drivers():
|
|
assert numpy.array_equal(
|
|
basic_image_2x2 == 0,
|
|
geometry_mask(
|
|
[basic_geometry],
|
|
out_shape=DEFAULT_SHAPE,
|
|
transform=Affine.identity()
|
|
)
|
|
)
|
|
|
|
|
|
def test_geometry_mask_invert(basic_geometry, basic_image_2x2):
|
|
with rasterio.drivers():
|
|
assert numpy.array_equal(
|
|
basic_image_2x2,
|
|
geometry_mask(
|
|
[basic_geometry],
|
|
out_shape=DEFAULT_SHAPE,
|
|
transform=Affine.identity(),
|
|
invert=True
|
|
)
|
|
)
|
|
|
|
|
|
def test_rasterize(basic_geometry, basic_image_2x2):
|
|
""" Rasterize operation should succeed for both an out_shape and out """
|
|
|
|
with rasterio.drivers():
|
|
assert numpy.array_equal(
|
|
basic_image_2x2,
|
|
rasterize([basic_geometry], out_shape=DEFAULT_SHAPE)
|
|
)
|
|
|
|
out = numpy.zeros(DEFAULT_SHAPE)
|
|
rasterize([basic_geometry], out=out)
|
|
assert numpy.array_equal(basic_image_2x2, out)
|
|
|
|
|
|
def test_rasterize_invalid_out_dtype(basic_geometry):
|
|
""" A non-supported data type for out should raise an exception """
|
|
|
|
out = numpy.zeros(DEFAULT_SHAPE, dtype=numpy.int64)
|
|
with rasterio.drivers():
|
|
with pytest.raises(ValueError):
|
|
rasterize([basic_geometry], out=out)
|
|
|
|
|
|
def test_rasterize_shapes_out_dtype_mismatch(basic_geometry):
|
|
""" Shape values must be able to fit in data type for out """
|
|
|
|
out = numpy.zeros(DEFAULT_SHAPE, dtype=numpy.uint8)
|
|
with rasterio.drivers():
|
|
with pytest.raises(ValueError):
|
|
rasterize([(basic_geometry, 10000000)], out=out)
|
|
|
|
|
|
def test_rasterize_missing_out(basic_geometry):
|
|
""" If both out and out_shape are missing, should raise exception """
|
|
|
|
with rasterio.drivers():
|
|
with pytest.raises(ValueError):
|
|
rasterize([basic_geometry], out=None, out_shape=None)
|
|
|
|
|
|
def test_rasterize_missing_shapes():
|
|
""" Shapes are required for this operation """
|
|
|
|
with rasterio.drivers():
|
|
with pytest.raises(ValueError) as ex:
|
|
rasterize([], out_shape=DEFAULT_SHAPE)
|
|
|
|
assert 'No valid geometry objects' in str(ex.value)
|
|
|
|
|
|
def test_rasterize_invalid_shapes():
|
|
""" Invalid shapes should raise an exception rather than be skipped """
|
|
|
|
with rasterio.drivers():
|
|
with pytest.raises(ValueError) as ex:
|
|
rasterize([{'foo': 'bar'}], out_shape=DEFAULT_SHAPE)
|
|
|
|
assert 'Invalid geometry object' in str(ex.value)
|
|
|
|
|
|
def test_rasterize_default_value(basic_geometry, basic_image_2x2):
|
|
""" All shapes should rasterize to the default value """
|
|
|
|
default_value = 2
|
|
truth = basic_image_2x2 * default_value
|
|
|
|
with rasterio.drivers():
|
|
assert numpy.array_equal(
|
|
truth,
|
|
rasterize(
|
|
[basic_geometry], out_shape=DEFAULT_SHAPE,
|
|
default_value=default_value
|
|
)
|
|
)
|
|
|
|
|
|
def test_rasterize_invalid_default_value(basic_geometry):
|
|
""" A default value that requires an int64 should raise an exception """
|
|
|
|
with rasterio.drivers():
|
|
with pytest.raises(ValueError):
|
|
rasterize(
|
|
[basic_geometry], out_shape=DEFAULT_SHAPE,
|
|
default_value=1000000000000
|
|
)
|
|
|
|
|
|
def test_rasterize_fill_value(basic_geometry, basic_image_2x2):
|
|
""" All pixels not covered by shapes should be given fill value """
|
|
|
|
default_value = 2
|
|
with rasterio.drivers():
|
|
assert numpy.array_equal(
|
|
basic_image_2x2 + 1,
|
|
rasterize(
|
|
[basic_geometry], out_shape=DEFAULT_SHAPE, fill=1,
|
|
default_value=default_value
|
|
)
|
|
)
|
|
|
|
|
|
def test_rasterize_invalid_fill_value(basic_geometry):
|
|
""" A fill value that requires an int64 should raise an exception """
|
|
|
|
with rasterio.drivers():
|
|
with pytest.raises(ValueError):
|
|
rasterize(
|
|
[basic_geometry], out_shape=DEFAULT_SHAPE, fill=1000000000000,
|
|
default_value=2
|
|
)
|
|
|
|
|
|
def test_rasterize_fill_value_dtype_mismatch(basic_geometry):
|
|
""" A fill value that doesn't match dtype should fail """
|
|
|
|
with rasterio.drivers():
|
|
with pytest.raises(ValueError):
|
|
rasterize(
|
|
[basic_geometry], out_shape=DEFAULT_SHAPE, fill=1000000,
|
|
default_value=2, dtype=numpy.uint8
|
|
)
|
|
|
|
|
|
def test_rasterize_all_touched(basic_geometry, basic_image):
|
|
with rasterio.drivers():
|
|
assert numpy.array_equal(
|
|
basic_image,
|
|
rasterize(
|
|
[basic_geometry], out_shape=DEFAULT_SHAPE, all_touched=True
|
|
)
|
|
)
|
|
|
|
|
|
def test_rasterize_value(basic_geometry, basic_image_2x2):
|
|
"""
|
|
All shapes should rasterize to the value passed in a tuple alongside
|
|
each shape
|
|
"""
|
|
|
|
value = 5
|
|
with rasterio.drivers():
|
|
assert numpy.array_equal(
|
|
basic_image_2x2 * value,
|
|
rasterize(
|
|
[(basic_geometry, value)], out_shape=DEFAULT_SHAPE
|
|
)
|
|
)
|
|
|
|
|
|
def test_rasterize_invalid_value(basic_geometry):
|
|
""" A shape value that requires an int64 should raise an exception """
|
|
|
|
with rasterio.drivers():
|
|
with pytest.raises(ValueError) as ex:
|
|
rasterize(
|
|
[(basic_geometry, 1000000000000)], out_shape=DEFAULT_SHAPE
|
|
)
|
|
|
|
assert 'dtype must be one of' in str(ex.value)
|
|
|
|
|
|
def test_rasterize_supported_dtype(basic_geometry):
|
|
""" Supported data types should return valid results """
|
|
|
|
with rasterio.drivers():
|
|
supported_types = (
|
|
('int16', -32768),
|
|
('int32', -2147483648),
|
|
('uint8', 255),
|
|
('uint16', 65535),
|
|
('uint32', 4294967295),
|
|
('float32', 1.434532),
|
|
('float64', -98332.133422114)
|
|
)
|
|
|
|
for dtype, default_value in supported_types:
|
|
truth = numpy.zeros(DEFAULT_SHAPE, dtype=dtype)
|
|
truth[2:4, 2:4] = default_value
|
|
|
|
result = rasterize(
|
|
[basic_geometry],
|
|
out_shape=DEFAULT_SHAPE,
|
|
default_value=default_value,
|
|
dtype=dtype
|
|
)
|
|
assert numpy.array_equal(result, truth)
|
|
assert numpy.dtype(result.dtype) == numpy.dtype(truth.dtype)
|
|
|
|
result = rasterize(
|
|
[(basic_geometry, default_value)],
|
|
out_shape=DEFAULT_SHAPE
|
|
)
|
|
if numpy.dtype(dtype).kind == 'f':
|
|
assert numpy.allclose(result, truth)
|
|
else:
|
|
assert numpy.array_equal(result, truth)
|
|
# Since dtype is auto-detected, it may not match due to upcasting
|
|
|
|
|
|
def test_rasterize_unsupported_dtype(basic_geometry):
|
|
""" Unsupported types should all raise exceptions """
|
|
|
|
with rasterio.drivers():
|
|
unsupported_types = (
|
|
('int8', -127),
|
|
('int64', 20439845334323),
|
|
('float16', -9343.232)
|
|
)
|
|
|
|
for dtype, default_value in unsupported_types:
|
|
with pytest.raises(ValueError):
|
|
rasterize(
|
|
[basic_geometry],
|
|
out_shape=DEFAULT_SHAPE,
|
|
default_value=default_value,
|
|
dtype=dtype
|
|
)
|
|
|
|
with pytest.raises(ValueError):
|
|
rasterize(
|
|
[(basic_geometry, default_value)],
|
|
out_shape=DEFAULT_SHAPE,
|
|
dtype=dtype
|
|
)
|
|
|
|
|
|
def test_rasterize_mismatched_dtype(basic_geometry):
|
|
""" Mismatched values and dtypes should raise exceptions """
|
|
|
|
with rasterio.drivers():
|
|
mismatched_types = (('uint8', 3.2423), ('uint8', -2147483648))
|
|
for dtype, default_value in mismatched_types:
|
|
with pytest.raises(ValueError):
|
|
rasterize(
|
|
[basic_geometry],
|
|
out_shape=DEFAULT_SHAPE,
|
|
default_value=default_value,
|
|
dtype=dtype
|
|
)
|
|
|
|
with pytest.raises(ValueError):
|
|
rasterize(
|
|
[(basic_geometry, default_value)],
|
|
out_shape=DEFAULT_SHAPE,
|
|
dtype=dtype
|
|
)
|
|
|
|
|
|
def test_rasterize_geometries_symmetric():
|
|
""" Make sure that rasterize is symmetric with shapes """
|
|
|
|
transform = (1.0, 0.0, 0.0, 0.0, -1.0, 0.0)
|
|
truth = numpy.zeros(DEFAULT_SHAPE, dtype=rasterio.ubyte)
|
|
truth[2:5, 2:5] = 1
|
|
with rasterio.drivers():
|
|
s = shapes(truth, transform=transform)
|
|
result = rasterize(s, out_shape=DEFAULT_SHAPE, transform=transform)
|
|
assert numpy.array_equal(result, truth)
|
|
|
|
|
|
def test_rasterize_internal_driver_manager(basic_geometry):
|
|
""" Rasterize should work without explicitly calling driver manager """
|
|
|
|
assert rasterize([basic_geometry], out_shape=DEFAULT_SHAPE).sum() == 4
|
|
|
|
|
|
def test_shapes(basic_image):
|
|
""" Test creation of shapes from pixel values """
|
|
|
|
with rasterio.drivers():
|
|
results = list(shapes(basic_image))
|
|
|
|
assert len(results) == 2
|
|
|
|
shape, value = results[0]
|
|
assert shape == {
|
|
'coordinates': [
|
|
[(2, 2), (2, 5), (5, 5), (5, 2), (2, 2)]
|
|
],
|
|
'type': 'Polygon'
|
|
}
|
|
assert value == 1
|
|
|
|
shape, value = results[1]
|
|
assert shape == {
|
|
'coordinates': [
|
|
[(0, 0), (0, 10), (10, 10), (10, 0), (0, 0)],
|
|
[(2, 2), (5, 2), (5, 5), (2, 5), (2, 2)]
|
|
],
|
|
'type': 'Polygon'
|
|
}
|
|
assert value == 0
|
|
|
|
|
|
def test_shapes_band(pixelated_image, pixelated_image_file):
|
|
""" Shapes from a band should match shapes from an array """
|
|
|
|
with rasterio.drivers():
|
|
truth = list(shapes(pixelated_image))
|
|
|
|
with rasterio.open(pixelated_image_file) as src:
|
|
band = rasterio.band(src, 1)
|
|
assert truth == list(shapes(band))
|
|
|
|
# Mask band should function, but will mask out some results
|
|
assert truth[0] == list(shapes(band, mask=band))[0]
|
|
|
|
|
|
def test_shapes_connectivity_rook(diagonal_image):
|
|
"""
|
|
Diagonals are not connected, so there will be 1 feature per pixel plus
|
|
background.
|
|
"""
|
|
|
|
with rasterio.drivers():
|
|
assert len(list(shapes(diagonal_image, connectivity=4))) == 12
|
|
|
|
|
|
def test_shapes_connectivity_queen(diagonal_image):
|
|
"""
|
|
Diagonals are connected, so there will be 1 feature for all pixels plus
|
|
background.
|
|
"""
|
|
|
|
with rasterio.drivers():
|
|
assert len(list(shapes(diagonal_image, connectivity=8))) == 2
|
|
|
|
|
|
def test_shapes_connectivity_invalid(diagonal_image):
|
|
""" Invalid connectivity should raise exception """
|
|
|
|
with rasterio.drivers():
|
|
with pytest.raises(ValueError):
|
|
assert next(shapes(diagonal_image, connectivity=12))
|
|
|
|
|
|
def test_shapes_mask(basic_image):
|
|
""" Only pixels not masked out should be converted to features """
|
|
|
|
mask = numpy.ones(basic_image.shape, dtype=rasterio.bool_)
|
|
mask[4:5, 4:5] = False
|
|
|
|
with rasterio.drivers():
|
|
results = list(shapes(basic_image, mask=mask))
|
|
|
|
assert len(results) == 2
|
|
|
|
shape, value = results[0]
|
|
assert shape == {
|
|
'coordinates': [
|
|
[(2, 2), (2, 5), (4, 5), (4, 4), (5, 4), (5, 2), (2, 2)]
|
|
],
|
|
'type': 'Polygon'
|
|
}
|
|
assert value == 1
|
|
|
|
|
|
def test_shapes_blank_mask(basic_image):
|
|
""" Mask is blank so results should mask shapes without mask """
|
|
|
|
with rasterio.drivers():
|
|
assert numpy.array_equal(
|
|
list(shapes(
|
|
basic_image,
|
|
mask=numpy.ones(basic_image.shape, dtype=rasterio.bool_))
|
|
),
|
|
list(shapes(basic_image))
|
|
)
|
|
|
|
|
|
def test_shapes_invalid_mask_shape(basic_image):
|
|
""" A mask that is the wrong shape should fail """
|
|
|
|
with rasterio.drivers():
|
|
with pytest.raises(ValueError):
|
|
next(shapes(
|
|
basic_image,
|
|
mask=numpy.ones(
|
|
(basic_image.shape[0] + 10, basic_image.shape[1] + 10),
|
|
dtype=rasterio.bool_
|
|
)
|
|
))
|
|
|
|
|
|
def test_shapes_invalid_mask_dtype(basic_image):
|
|
""" A mask that is the wrong dtype should fail """
|
|
|
|
with rasterio.drivers():
|
|
for dtype in ('int8', 'int16', 'int32'):
|
|
with pytest.raises(ValueError):
|
|
next(shapes(
|
|
basic_image,
|
|
mask=numpy.ones(basic_image.shape, dtype=dtype)
|
|
))
|
|
|
|
|
|
def test_shapes_supported_dtypes(basic_image):
|
|
""" Supported data types should return valid results """
|
|
|
|
supported_types = (
|
|
('int16', -32768),
|
|
('int32', -2147483648),
|
|
('uint8', 255),
|
|
('uint16', 65535),
|
|
('float32', 1.434532)
|
|
)
|
|
|
|
with rasterio.drivers():
|
|
for dtype, test_value in supported_types:
|
|
shape, value = next(shapes(basic_image.astype(dtype) * test_value))
|
|
assert numpy.allclose(value, test_value)
|
|
|
|
|
|
def test_shapes_unsupported_dtypes(basic_image):
|
|
""" Unsupported data types should raise exceptions """
|
|
|
|
unsupported_types = (
|
|
('int8', -127),
|
|
('uint32', 4294967295),
|
|
('int64', 20439845334323),
|
|
('float16', -9343.232),
|
|
('float64', -98332.133422114)
|
|
)
|
|
|
|
with rasterio.drivers():
|
|
for dtype, test_value in unsupported_types:
|
|
with pytest.raises(ValueError):
|
|
next(shapes(basic_image.astype(dtype) * test_value))
|
|
|
|
|
|
def test_shapes_internal_driver_manager(basic_image):
|
|
""" Shapes should work without explicitly calling driver manager """
|
|
|
|
assert next(shapes(basic_image))[0]['type'] == 'Polygon'
|
|
|
|
|
|
def test_sieve_small(basic_image, pixelated_image):
|
|
"""
|
|
Setting the size smaller than or equal to the size of the feature in the
|
|
image should not change the image.
|
|
"""
|
|
|
|
with rasterio.drivers():
|
|
assert numpy.array_equal(
|
|
basic_image,
|
|
sieve(pixelated_image, basic_image.sum())
|
|
)
|
|
|
|
|
|
def test_sieve_large(basic_image):
|
|
"""
|
|
Setting the size larger than size of feature should leave us an empty image.
|
|
"""
|
|
|
|
with rasterio.drivers():
|
|
assert not numpy.any(sieve(basic_image, basic_image.sum() + 1))
|
|
|
|
|
|
def test_sieve_invalid_size(basic_image):
|
|
with rasterio.drivers():
|
|
for invalid_size in (0, 45.1234, basic_image.size + 1):
|
|
with pytest.raises(ValueError):
|
|
sieve(basic_image, invalid_size)
|
|
|
|
|
|
def test_sieve_connectivity_rook(diagonal_image):
|
|
""" Diagonals are not connected, so feature is removed """
|
|
|
|
assert not numpy.any(
|
|
sieve(diagonal_image, diagonal_image.sum(), connectivity=4)
|
|
)
|
|
|
|
|
|
def test_sieve_connectivity_queen(diagonal_image):
|
|
""" Diagonals are connected, so feature is retained """
|
|
|
|
assert numpy.array_equal(
|
|
diagonal_image,
|
|
sieve(diagonal_image, diagonal_image.sum(), connectivity=8)
|
|
)
|
|
|
|
|
|
def test_sieve_connectivity_invalid(basic_image):
|
|
with pytest.raises(ValueError):
|
|
sieve(basic_image, 54, connectivity=12)
|
|
|
|
|
|
def test_sieve_out(basic_image):
|
|
""" Output array passed in should match the returned array """
|
|
|
|
with rasterio.drivers():
|
|
output = numpy.zeros_like(basic_image)
|
|
output[1:3, 1:3] = 5
|
|
sieved_image = sieve(basic_image, basic_image.sum(), out=output)
|
|
assert numpy.array_equal(basic_image, sieved_image)
|
|
assert numpy.array_equal(output, sieved_image)
|
|
|
|
|
|
def test_sieve_invalid_out(basic_image):
|
|
""" Output with different dtype or shape should fail """
|
|
|
|
with rasterio.drivers():
|
|
with pytest.raises(ValueError):
|
|
sieve(
|
|
basic_image, basic_image.sum(),
|
|
out=numpy.zeros(basic_image.shape, dtype=rasterio.int32)
|
|
)
|
|
|
|
with pytest.raises(ValueError):
|
|
sieve(
|
|
basic_image, basic_image.sum(),
|
|
out=numpy.zeros(
|
|
(basic_image.shape[0] + 10, basic_image.shape[1] + 10),
|
|
dtype=rasterio.ubyte
|
|
)
|
|
)
|
|
|
|
|
|
def test_sieve_mask(basic_image):
|
|
"""
|
|
Only areas within the overlap of mask and input will be kept, so long
|
|
as mask is a bool or uint8 dtype.
|
|
"""
|
|
|
|
mask = numpy.ones(basic_image.shape, dtype=rasterio.bool_)
|
|
mask[4:5, 4:5] = False
|
|
truth = basic_image * numpy.invert(mask)
|
|
|
|
with rasterio.drivers():
|
|
sieved_image = sieve(basic_image, basic_image.sum(), mask=mask)
|
|
assert sieved_image.sum() > 0
|
|
|
|
assert numpy.array_equal(
|
|
truth,
|
|
sieved_image
|
|
)
|
|
|
|
assert numpy.array_equal(
|
|
truth.astype(rasterio.uint8),
|
|
sieved_image
|
|
)
|
|
|
|
|
|
def test_sieve_blank_mask(basic_image):
|
|
""" A blank mask should have no effect """
|
|
|
|
mask = numpy.ones(basic_image.shape, dtype=rasterio.bool_)
|
|
with rasterio.drivers():
|
|
assert numpy.array_equal(
|
|
basic_image,
|
|
sieve(basic_image, basic_image.sum(), mask=mask)
|
|
)
|
|
|
|
|
|
def test_sieve_invalid_mask_shape(basic_image):
|
|
""" A mask that is the wrong shape should fail """
|
|
|
|
with rasterio.drivers():
|
|
with pytest.raises(ValueError):
|
|
sieve(
|
|
basic_image, basic_image.sum(),
|
|
mask=numpy.ones(
|
|
(basic_image.shape[0] + 10, basic_image.shape[1] + 10),
|
|
dtype=rasterio.bool_
|
|
)
|
|
)
|
|
|
|
|
|
def test_sieve_invalid_mask_dtype(basic_image):
|
|
""" A mask that is the wrong dtype should fail """
|
|
|
|
with rasterio.drivers():
|
|
for dtype in ('int8', 'int16', 'int32'):
|
|
with pytest.raises(ValueError):
|
|
sieve(
|
|
basic_image, basic_image.sum(),
|
|
mask=numpy.ones(basic_image.shape, dtype=dtype)
|
|
)
|
|
|
|
|
|
def test_sieve_supported_dtypes(basic_image):
|
|
""" Supported data types should return valid results """
|
|
|
|
supported_types = (
|
|
('int16', -32768),
|
|
('int32', -2147483648),
|
|
('uint8', 255),
|
|
('uint16', 65535)
|
|
)
|
|
|
|
with rasterio.drivers():
|
|
for dtype, test_value in supported_types:
|
|
truth = (basic_image).astype(dtype) * test_value
|
|
sieved_image = sieve(truth, basic_image.sum())
|
|
assert numpy.array_equal(truth, sieved_image)
|
|
assert numpy.dtype(sieved_image.dtype) == numpy.dtype(dtype)
|
|
|
|
|
|
def test_sieve_unsupported_dtypes(basic_image):
|
|
""" Unsupported data types should raise exceptions """
|
|
|
|
unsupported_types = (
|
|
('int8', -127),
|
|
('uint32', 4294967295),
|
|
('int64', 20439845334323),
|
|
('float16', -9343.232),
|
|
('float32', 1.434532),
|
|
('float64', -98332.133422114)
|
|
)
|
|
|
|
with rasterio.drivers():
|
|
for dtype, test_value in unsupported_types:
|
|
with pytest.raises(ValueError):
|
|
sieve(
|
|
(basic_image).astype(dtype) * test_value,
|
|
basic_image.sum()
|
|
)
|
|
|
|
|
|
def test_sieve_band(pixelated_image, pixelated_image_file):
|
|
""" Sieving a band from a raster file should match sieve of array """
|
|
|
|
with rasterio.drivers():
|
|
truth = sieve(pixelated_image, 9)
|
|
|
|
with rasterio.open(pixelated_image_file) as src:
|
|
band = rasterio.band(src, 1)
|
|
assert numpy.array_equal(truth, sieve(band, 9))
|
|
|
|
# Mask band should also work but will be a no-op
|
|
assert numpy.array_equal(
|
|
pixelated_image,
|
|
sieve(band, 9, mask=band)
|
|
)
|
|
|
|
|
|
def test_sieve_internal_driver_manager(basic_image, pixelated_image):
|
|
""" Sieve should work without explicitly calling driver manager """
|
|
|
|
assert numpy.array_equal(
|
|
basic_image,
|
|
sieve(pixelated_image, basic_image.sum())
|
|
)
|