mirror of
https://github.com/rasterio/rasterio.git
synced 2025-12-08 17:36:12 +00:00
245 lines
9.8 KiB
Python
245 lines
9.8 KiB
Python
import logging
|
|
import subprocess
|
|
import sys
|
|
import re
|
|
import numpy
|
|
import rasterio
|
|
|
|
logging.basicConfig(stream=sys.stderr, level=logging.DEBUG)
|
|
|
|
|
|
def test_validate_dtype_None(tmpdir):
|
|
name = str(tmpdir.join("lol.tif"))
|
|
try:
|
|
ds = rasterio.open(
|
|
name, 'w', driver='GTiff', width=100, height=100, count=1,
|
|
# dtype=None
|
|
)
|
|
except TypeError:
|
|
pass
|
|
|
|
def test_validate_dtype_str(tmpdir):
|
|
name = str(tmpdir.join("lol.tif"))
|
|
try:
|
|
ds = rasterio.open(
|
|
name, 'w', driver='GTiff', width=100, height=100, count=1,
|
|
dtype='Int16')
|
|
except TypeError:
|
|
pass
|
|
|
|
def test_validate_count_None(tmpdir):
|
|
name = str(tmpdir.join("lol.tif"))
|
|
try:
|
|
ds = rasterio.open(
|
|
name, 'w', driver='GTiff', width=100, height=100, #count=None
|
|
dtype=rasterio.uint8)
|
|
except TypeError:
|
|
pass
|
|
|
|
def test_no_crs(tmpdir):
|
|
# A dataset without crs is okay.
|
|
name = str(tmpdir.join("lol.tif"))
|
|
with rasterio.open(
|
|
name, 'w', driver='GTiff', width=100, height=100, count=1,
|
|
dtype=rasterio.uint8) as dst:
|
|
dst.write_band(1, numpy.ones((100, 100), dtype=rasterio.uint8))
|
|
|
|
def test_context(tmpdir):
|
|
name = str(tmpdir.join("test_context.tif"))
|
|
with rasterio.open(
|
|
name, 'w',
|
|
driver='GTiff', width=100, height=100, count=1,
|
|
dtype=rasterio.ubyte) as s:
|
|
assert s.name == name
|
|
assert s.driver == 'GTiff'
|
|
assert s.closed == False
|
|
assert s.count == 1
|
|
assert s.width == 100
|
|
assert s.height == 100
|
|
assert s.shape == (100, 100)
|
|
assert s.indexes == [1]
|
|
assert repr(s) == "<open RasterUpdater name='%s' mode='w'>" % name
|
|
assert s.closed == True
|
|
assert s.count == 1
|
|
assert s.width == 100
|
|
assert s.height == 100
|
|
assert s.shape == (100, 100)
|
|
assert repr(s) == "<closed RasterUpdater name='%s' mode='w'>" % name
|
|
info = subprocess.check_output(["gdalinfo", name]).decode('utf-8')
|
|
assert "GTiff" in info
|
|
assert "Size is 100, 100" in info
|
|
assert "Band 1 Block=100x81 Type=Byte, ColorInterp=Gray" in info
|
|
|
|
def test_write_ubyte(tmpdir):
|
|
name = str(tmpdir.mkdir("sub").join("test_write_ubyte.tif"))
|
|
a = numpy.ones((100, 100), dtype=rasterio.ubyte) * 127
|
|
with rasterio.open(
|
|
name, 'w',
|
|
driver='GTiff', width=100, height=100, count=1,
|
|
dtype=a.dtype) as s:
|
|
s.write_band(1, a)
|
|
info = subprocess.check_output(["gdalinfo", "-stats", name]).decode('utf-8')
|
|
assert "Minimum=127.000, Maximum=127.000, Mean=127.000, StdDev=0.000" in info
|
|
def test_write_ubyte_multi(tmpdir):
|
|
name = str(tmpdir.mkdir("sub").join("test_write_ubyte_multi.tif"))
|
|
a = numpy.ones((100, 100), dtype=rasterio.ubyte) * 127
|
|
with rasterio.open(
|
|
name, 'w',
|
|
driver='GTiff', width=100, height=100, count=1,
|
|
dtype=a.dtype) as s:
|
|
s.write(a, 1)
|
|
info = subprocess.check_output(["gdalinfo", "-stats", name]).decode('utf-8')
|
|
assert "Minimum=127.000, Maximum=127.000, Mean=127.000, StdDev=0.000" in info
|
|
def test_write_ubyte_multi_list(tmpdir):
|
|
name = str(tmpdir.mkdir("sub").join("test_write_ubyte_multi_list.tif"))
|
|
a = numpy.array([numpy.ones((100, 100), dtype=rasterio.ubyte) * 127])
|
|
with rasterio.open(
|
|
name, 'w',
|
|
driver='GTiff', width=100, height=100, count=1,
|
|
dtype=a.dtype) as s:
|
|
s.write(a, [1])
|
|
info = subprocess.check_output(["gdalinfo", "-stats", name]).decode('utf-8')
|
|
assert "Minimum=127.000, Maximum=127.000, Mean=127.000, StdDev=0.000" in info
|
|
def test_write_ubyte_multi_3(tmpdir):
|
|
name = str(tmpdir.mkdir("sub").join("test_write_ubyte_multi_list.tif"))
|
|
arr = numpy.array(3*[numpy.ones((100, 100), dtype=rasterio.ubyte) * 127])
|
|
with rasterio.open(
|
|
name, 'w',
|
|
driver='GTiff', width=100, height=100, count=3,
|
|
dtype=arr.dtype) as s:
|
|
s.write(arr)
|
|
info = subprocess.check_output(["gdalinfo", "-stats", name]).decode('utf-8')
|
|
assert "Minimum=127.000, Maximum=127.000, Mean=127.000, StdDev=0.000" in info
|
|
|
|
def test_write_float(tmpdir):
|
|
name = str(tmpdir.join("test_write_float.tif"))
|
|
a = numpy.ones((100, 100), dtype=rasterio.float32) * 42.0
|
|
with rasterio.open(
|
|
name, 'w',
|
|
driver='GTiff', width=100, height=100, count=2,
|
|
dtype=rasterio.float32) as s:
|
|
assert s.dtypes == [rasterio.float32]*2
|
|
s.write_band(1, a)
|
|
s.write_band(2, a)
|
|
info = subprocess.check_output(["gdalinfo", "-stats", name]).decode('utf-8')
|
|
assert "Minimum=42.000, Maximum=42.000, Mean=42.000, StdDev=0.000" in info
|
|
|
|
def test_write_crs_transform(tmpdir):
|
|
name = str(tmpdir.join("test_write_crs_transform.tif"))
|
|
a = numpy.ones((100, 100), dtype=rasterio.ubyte) * 127
|
|
transform = [101985.0, 300.0379266750948, 0.0,
|
|
2826915.0, 0.0, -300.041782729805]
|
|
with rasterio.open(
|
|
name, 'w',
|
|
driver='GTiff', width=100, height=100, count=1,
|
|
crs={'units': 'm', 'no_defs': True, 'ellps': 'WGS84',
|
|
'proj': 'utm', 'zone': 18},
|
|
transform=transform,
|
|
dtype=rasterio.ubyte) as s:
|
|
s.write_band(1, a)
|
|
assert s.crs == {'init': 'epsg:32618'}
|
|
info = subprocess.check_output(["gdalinfo", name]).decode('utf-8')
|
|
assert 'PROJCS["UTM Zone 18, Northern Hemisphere",' in info
|
|
# make sure that pixel size is nearly the same as transform
|
|
# (precision varies slightly by platform)
|
|
assert re.search("Pixel Size = \(300.03792\d+,-300.04178\d+\)", info)
|
|
|
|
def test_write_crs_transform_2(tmpdir):
|
|
"""Using 'EPSG:32618' as CRS."""
|
|
name = str(tmpdir.join("test_write_crs_transform.tif"))
|
|
a = numpy.ones((100, 100), dtype=rasterio.ubyte) * 127
|
|
transform = [101985.0, 300.0379266750948, 0.0,
|
|
2826915.0, 0.0, -300.041782729805]
|
|
with rasterio.open(
|
|
name, 'w',
|
|
driver='GTiff', width=100, height=100, count=1,
|
|
crs='EPSG:32618',
|
|
transform=transform,
|
|
dtype=rasterio.ubyte) as s:
|
|
s.write_band(1, a)
|
|
assert s.crs == {'init': 'epsg:32618'}
|
|
info = subprocess.check_output(["gdalinfo", name]).decode('utf-8')
|
|
assert 'PROJCS["WGS 84 / UTM zone 18N",' in info
|
|
# make sure that pixel size is nearly the same as transform
|
|
# (precision varies slightly by platform)
|
|
assert re.search("Pixel Size = \(300.03792\d+,-300.04178\d+\)", info)
|
|
|
|
def test_write_crs_transform_3(tmpdir):
|
|
"""Using WKT as CRS."""
|
|
name = str(tmpdir.join("test_write_crs_transform.tif"))
|
|
a = numpy.ones((100, 100), dtype=rasterio.ubyte) * 127
|
|
transform = [101985.0, 300.0379266750948, 0.0,
|
|
2826915.0, 0.0, -300.041782729805]
|
|
crs_wkt = 'PROJCS["UTM Zone 18, Northern Hemisphere",GEOGCS["WGS 84",DATUM["unknown",SPHEROID["WGS84",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",-75],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing",0],UNIT["Meter",1]]'
|
|
with rasterio.open(
|
|
name, 'w',
|
|
driver='GTiff', width=100, height=100, count=1,
|
|
crs=crs_wkt,
|
|
transform=transform,
|
|
dtype=rasterio.ubyte) as s:
|
|
s.write_band(1, a)
|
|
assert s.crs == {'init': 'epsg:32618'}
|
|
info = subprocess.check_output(["gdalinfo", name]).decode('utf-8')
|
|
assert 'PROJCS["UTM Zone 18, Northern Hemisphere",' in info
|
|
# make sure that pixel size is nearly the same as transform
|
|
# (precision varies slightly by platform)
|
|
assert re.search("Pixel Size = \(300.03792\d+,-300.04178\d+\)", info)
|
|
|
|
def test_write_meta(tmpdir):
|
|
name = str(tmpdir.join("test_write_meta.tif"))
|
|
a = numpy.ones((100, 100), dtype=rasterio.ubyte) * 127
|
|
meta = dict(driver='GTiff', width=100, height=100, count=1)
|
|
with rasterio.open(name, 'w', dtype=a.dtype, **meta) as s:
|
|
s.write_band(1, a)
|
|
info = subprocess.check_output(["gdalinfo", "-stats", name]).decode('utf-8')
|
|
assert "Minimum=127.000, Maximum=127.000, Mean=127.000, StdDev=0.000" in info
|
|
|
|
def test_write_nodata(tmpdir):
|
|
name = str(tmpdir.join("test_write_nodata.tif"))
|
|
a = numpy.ones((100, 100), dtype=rasterio.ubyte) * 127
|
|
with rasterio.open(
|
|
name, 'w',
|
|
driver='GTiff', width=100, height=100, count=2,
|
|
dtype=a.dtype, nodata=0) as s:
|
|
s.write_band(1, a)
|
|
s.write_band(2, a)
|
|
info = subprocess.check_output(["gdalinfo", "-stats", name]).decode('utf-8')
|
|
assert "NoData Value=0" in info
|
|
|
|
def test_write_lzw(tmpdir):
|
|
name = str(tmpdir.join("test_write_lzw.tif"))
|
|
a = numpy.ones((100, 100), dtype=rasterio.ubyte) * 127
|
|
with rasterio.open(
|
|
name, 'w',
|
|
driver='GTiff',
|
|
width=100, height=100, count=1,
|
|
dtype=a.dtype,
|
|
compress='LZW') as s:
|
|
assert ('compress', 'LZW') in s.kwds.items()
|
|
s.write_band(1, a)
|
|
info = subprocess.check_output(["gdalinfo", name]).decode('utf-8')
|
|
assert "LZW" in info
|
|
|
|
def test_write_noncontiguous(tmpdir):
|
|
name = str(tmpdir.join("test_write_nodata.tif"))
|
|
ROWS = 4
|
|
COLS = 10
|
|
BANDS = 6
|
|
with rasterio.drivers():
|
|
# Create a 3-D random int array (rows, columns, bands)
|
|
total = ROWS * COLS * BANDS
|
|
arr = numpy.random.randint(
|
|
0, 10, size=total).reshape(
|
|
(ROWS, COLS, BANDS), order='F').astype(numpy.int32)
|
|
kwargs = {
|
|
'driver': 'GTiff',
|
|
'width': COLS,
|
|
'height': ROWS,
|
|
'count': BANDS,
|
|
'dtype': rasterio.int32
|
|
}
|
|
with rasterio.open(name, 'w', **kwargs) as dst:
|
|
for i in range(BANDS):
|
|
dst.write_band(i+1, arr[:,:,i])
|
|
|