Skip to content

Commit 8d93a6d

Browse files
committed
final checks
1 parent 1de3fb7 commit 8d93a6d

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Sentinel-1 GRD data is provided in radar geometry, defined by the coordinates
9595
- `resolution`: Target resolution for all spatial variables expressed in the units
9696
of the specified `crs`. If not specified, the resolution is derived (in degrees)
9797
from the CopDEM (30 m).
98-
- `dem`: Digital Elevation Model (DEM) as a Cf-conformant `xarray.DataArray` used for
98+
- `dem`: Digital Elevation Model (DEM) as a CF-compliant `xarray.DataArray` used for
9999
terrain correction. If provided, the parameters `crs`, `bbox`, and `resolution` are
100100
ignored, and the target grid is derived from the DEM. If not provided, the
101101
[CopDEM COG (30 m)](https://browser.stac.dataspace.copernicus.eu/collections/cop-dem-glo-30-dged-cog)

integration/test_sen3_analysis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ def test_open_dataset_sen3_olci_l2_lfr(self):
5858

5959
def test_open_dataset_sen3_slstr_l1_rbt(self):
6060
expected_vars = ["s1_radiance_an", "s7_bt_in", "s7_bt_io"]
61-
expected_size = (2948, 3343)
61+
expected_size = (2967, 3455)
6262
self._test_sen3(sl1rbt_url, expected_vars, expected_size)
6363

6464
def test_open_dataset_sen3_slstr_l2_lst(self):
6565
expected_vars = ["lst"]
66-
expected_size = (1474, 1667)
66+
expected_size = (1484, 1727)
6767
self._test_sen3(sl2lst_url, expected_vars, expected_size)
6868

6969
def _test_sen3(

xarray_eopf/backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def open_dataset(
192192
"mode", "min", "prod", "std", "sum", and "var".
193193
Defaults to "center" for integer arrays (e.g. Sentinel-2 L2A SCL),
194194
else "mean".
195-
dem: Optional DEM as a Cf-conformant `xarray.DataArray` to use with
195+
dem: Optional DEM as a CF-compliant `xarray.DataArray` to use with
196196
Sentinel-1 products for geometric and radiometric terrain correction
197197
(foreshooting und overlay) using zero doppler geometry. If None, data
198198
is fetched from the [CDSE STAC API (CopDEM COG (30 m))](https://browser.stac.dataspace.copernicus.eu/collections/cop-dem-glo-30-dged-cog);

0 commit comments

Comments
 (0)