mirror of
https://github.com/rasterio/rasterio.git
synced 2025-12-08 17:36:12 +00:00
18 lines
481 B
Python
18 lines
481 B
Python
import pytest
|
|
|
|
import rasterio
|
|
|
|
with rasterio.Env() as env:
|
|
HAVE_NETCDF = 'NetCDF' in env.drivers().keys()
|
|
|
|
|
|
@pytest.mark.skipif(not HAVE_NETCDF,
|
|
reason="GDAL not compiled with NetCDF driver.")
|
|
def test_subdatasets():
|
|
"""Get subdataset names and descriptions"""
|
|
with rasterio.open('netcdf:tests/data/RGB.nc') as src:
|
|
subs = src.subdatasets
|
|
assert len(subs) == 3
|
|
for name in subs:
|
|
assert name.startswith('netcdf')
|