(
product_path: esa_safe.PathType,
swath_pol: str,
)
| 151 | |
| 152 | @pytest.mark.parametrize("product_path,swath_pol", SENTINEL1_PRODUCTS) |
| 153 | def test_open_dataset_gcp( |
| 154 | product_path: esa_safe.PathType, |
| 155 | swath_pol: str, |
| 156 | ) -> None: |
| 157 | res = xr.open_dataset(product_path, engine="sentinel-1", group=f"{swath_pol}/gcp") |
| 158 | |
| 159 | assert isinstance(res, xr.Dataset) |
| 160 | assert set(res.sizes) == {"azimuth_time", "slant_range_time"} |
| 161 | |
| 162 | |
| 163 | @pytest.mark.parametrize("product_path,swath_pol", SENTINEL1_PRODUCTS) |
nothing calls this directly
no test coverage detected