mirror of
https://github.com/rasterio/rasterio.git
synced 2025-12-08 17:36:12 +00:00
16 lines
577 B
Python
16 lines
577 B
Python
import rasterio
|
|
|
|
def test_bounds():
|
|
with rasterio.open('tests/data/RGB.byte.tif') as src:
|
|
assert src.bounds == (101985.0, 2611485.0, 339315.0, 2826915.0)
|
|
|
|
def test_ul():
|
|
with rasterio.open('tests/data/RGB.byte.tif') as src:
|
|
assert src.ul(0, 0) == (101985.0, 2826915.0)
|
|
assert src.ul(1, 0) == (101985.0, 2826614.95821727)
|
|
assert src.ul(src.height, src.width) == (339315.0, 2611485.0)
|
|
|
|
def test_res():
|
|
with rasterio.open('tests/data/RGB.byte.tif') as src:
|
|
assert tuple(round(v, 6) for v in src.res) == (300.037927, 300.041783)
|