diff --git a/OpenEO_Dockerfile b/OpenEO_Dockerfile index eab49af..96391ca 100644 --- a/OpenEO_Dockerfile +++ b/OpenEO_Dockerfile @@ -72,7 +72,12 @@ RUN python3.11 -m venv /opt/venv && \ pip config set global.disable-pip-version-check true RUN cd /opt && \ - git clone --recursive --shallow-submodules --depth 1 https://github.com/Open-EO/openeo-python-driver.git && \ + git clone --no-checkout --depth 1 https://github.com/Open-EO/openeo-python-driver.git && \ + cd /opt/openeo-python-driver && \ + git fetch --depth=1 origin e8f9c00372128a5cba5a2c43e070db5827cc6360 && \ + git checkout e8f9c00372128a5cba5a2c43e070db5827cc6360 && \ + git submodule update --init --recursive --depth 1 && \ + cd /opt/ && \ python3 -m pip install -e /opt/openeo-python-driver --config-settings editable_mode=compat COPY pyproject.toml /src/pyproject.toml diff --git a/cwl/sar_slc_preprocessing.cwl b/cwl/sar_slc_preprocessing.cwl index 8adf9ee..6f129b6 100755 --- a/cwl/sar_slc_preprocessing.cwl +++ b/cwl/sar_slc_preprocessing.cwl @@ -37,7 +37,7 @@ doc: | ``` requirements: DockerRequirement: - dockerPull: ghcr.io/cloudinsar/openeo_insar:20260511T0923 + dockerPull: ghcr.io/cloudinsar/openeo_insar:20260513T0914-merge NetworkAccess: networkAccess: true InitialWorkDirRequirement: diff --git a/sar/utils/tiff_to_gtiff.py b/sar/utils/tiff_to_gtiff.py index 3c8eaa7..ca5b7ea 100755 --- a/sar/utils/tiff_to_gtiff.py +++ b/sar/utils/tiff_to_gtiff.py @@ -85,7 +85,7 @@ def tag_to_band_name(band_tag): and (ds_in.RasterXSize > 360 or ds_in.RasterYSize > 90) ): # set CRS to webmercator, to avoid pixels going out of the CRS bounds: - ds_in.SetProjection("EPSG:3857") + ds_out.SetProjection("EPSG:3857") # TODO: Remove GeoTiePoints driver_tiff = gdal.GetDriverByName("GTiff") for i in range(1, ds_out.RasterCount + 1):