Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion OpenEO_Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cwl/sar_slc_preprocessing.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion sar/utils/tiff_to_gtiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
Loading