rasterio/tests/test_units.py
Sean Gillies d8b87b939f Remove units and descriptions from open() and constructors
These must be set via methods of an open dataset object.
2016-08-18 21:43:29 +02:00

15 lines
468 B
Python

import rasterio
from rasterio.profiles import default_gtiff_profile
def test_set_units(tmpdir):
"""Units can be set when dataset is open"""
tmptiff = str(tmpdir.join('test.tif'))
with rasterio.open(
tmptiff, 'w', count=2, height=256, width=256,
**default_gtiff_profile) as dst:
assert dst.units == ('', '')
dst.set_units(1, 'meters')
dst.set_units(2, 'degC')
assert dst.units == ('meters', 'degC')