()
| 215 | |
| 216 | |
| 217 | def test_open_calibration_dataset() -> None: |
| 218 | annotation_path = ( |
| 219 | DATA_FOLDER |
| 220 | / "S1B_IW_SLC__1SDV_20210401T052622_20210401T052650_026269_032297_EFA4.SAFE" |
| 221 | ) |
| 222 | res = xr.open_dataset( |
| 223 | annotation_path, engine="sentinel-1", group="IW1/VV/calibration" |
| 224 | ) |
| 225 | |
| 226 | assert isinstance(res, xr.Dataset) |
| 227 | assert set(res.sizes) == {"line", "pixel"} |
nothing calls this directly
no test coverage detected