|
1 | | -## Changes in 1.10.1 (in development) |
| 1 | +## Changes in 1.11.0 |
2 | 2 |
|
3 | | -### Enhancements |
4 | | - |
5 | | -* Introduced a more efficient and robust approach for dataset reprojection: |
| 3 | +This release is fully dedicated to a more efficient and robust approach |
| 4 | +for dataset reprojection: |
6 | 5 |
|
7 | | - * **New method:** Added `xcube.core.resampling.reproject_dataset`, a high-performance |
8 | | - alternative to `xcube.core.resampling.resample_in_space` for reprojecting datasets |
9 | | - to different coordinate reference systems (CRS). |
| 6 | +* **New method:** Added `xcube.core.resampling.reproject_dataset`, a high-performance |
| 7 | + alternative to `xcube.core.resampling.resample_in_space` for reprojecting datasets |
| 8 | + to different coordinate reference systems (CRS). |
10 | 9 |
|
11 | | - * **Recommended usage:** Ideal for reprojection between regular grids. It improves |
12 | | - computational efficiency and simplifies the reprojection process. |
13 | | - It is not addressing _rectification_ from irregular to regular grids (e.g., Sentinel-3). |
| 10 | +* **Recommended usage:** Ideal for reprojection between regular grids. It improves |
| 11 | + computational efficiency and simplifies the reprojection process. |
| 12 | + It is not addressing _rectification_ from irregular to regular grids (e.g., Sentinel-3). |
14 | 13 |
|
15 | | - * **Validation:** The notebook `examples/notebook/resampling/reproject_esa_cci_landcover_new_method.ipynb` |
16 | | - shows that `reproject_dataset` and `resample_in_space` produce nearly identical |
17 | | - results when reprojecting to a different CRS, with only negligible differences. |
| 14 | +* **Validation:** The notebook `examples/notebook/resampling/reproject_esa_cci_landcover_new_method.ipynb` |
| 15 | + shows that `reproject_dataset` and `resample_in_space` produce nearly identical |
| 16 | + results when reprojecting to a different CRS, with only negligible differences. |
18 | 17 |
|
19 | | - * **Backward compatibility:** `resample_in_space` remains available to preserve |
20 | | - compatibility with existing services. Once `reproject_dataset` proves stable in |
21 | | - production use, it may be integrated into `resample_in_space`. |
| 18 | +* **Backward compatibility:** `resample_in_space` remains available to preserve |
| 19 | + compatibility with existing services. Once `reproject_dataset` proves stable in |
| 20 | + production use, it may be integrated into `resample_in_space`. |
22 | 21 |
|
23 | | - * **Technical context:** `resample_in_space` currently uses either affine transforms |
24 | | - or the [Spatial Rectification Algorithm](https://xcube.readthedocs.io/en/latest/rectify.html#spatial-rectification-algorithm), |
25 | | - which is specialized for non-regular 2D grids (e.g., Sentinel-3). While applicable |
26 | | - to regular grid reprojection, the algorithm is unnecessarily complex for such cases. |
| 22 | +* **Technical context:** `resample_in_space` currently uses either affine transforms |
| 23 | + or the [Spatial Rectification Algorithm](https://xcube.readthedocs.io/en/latest/rectify.html#spatial-rectification-algorithm), |
| 24 | + which is specialized for non-regular 2D grids (e.g., Sentinel-3). While applicable |
| 25 | + to regular grid reprojection, the algorithm is unnecessarily complex for such cases. |
27 | 26 |
|
28 | 27 |
|
29 | 28 | ## Changes in 1.10.0 |
|
0 commit comments