Skip to content

Commit

Permalink
Merge pull request #106 from oberonia78/version_update_final_patch
Browse files Browse the repository at this point in the history
version update for DSWx-S1 final patch
  • Loading branch information
oberonia78 authored Aug 16, 2024
2 parents 13ebc0a + 8e33c3a commit 8dee601
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Then, from inside the cloned repository, build the Docker image:
Load the Docker container image onto your computer:

```bash
docker load -i docker/dockerimg_dswx_s1_final_1.0.tar
docker load -i docker/dockerimg_dswx_s1_final_patch_1.1.tar
```

See DSWx-SAR Science Algorithm Software (SAS) User Guide for instructions on processing via Docker.
Expand Down
2 changes: 1 addition & 1 deletion build_docker.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

IMAGE=opera/dswx-s1
tag=final_1.0
tag=final_patch_1.1
echo "IMAGE is $IMAGE:$tag"

# fail on any non-zero exit codes
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM oraclelinux:8

LABEL author="OPERA ADT" \
description="DSWX-SAR final release R4" \
version="1.0-final"
description="DSWX-SAR final patch release R4.1" \
version="1.1-final-patch"

RUN yum -y update &&\
yum -y install curl &&\
Expand Down
2 changes: 1 addition & 1 deletion src/dswx_sar/defaults/algorithm_parameter_s1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ runconfig:
number_cpu: 1

refine_with_bimodality:
minimum_pixel: 4
minimum_pixel: 40
lines_per_block: 500
number_cpu: 1
thresholds:
Expand Down
2 changes: 1 addition & 1 deletion src/dswx_sar/save_mgrs_tiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ def burst_overlap(row):

# If only one record matches, return it immediately
if len(vector_gdf) == 1:
logger.info('MGRS collection ID found from burst_list', vector_gdf['burst_overlap_count'] )
logger.info(f"MGRS collection ID found from burst_list {vector_gdf}")
mgrs_list = ast.literal_eval(vector_gdf.iloc[0]['mgrs_tiles'])
return list(set(mgrs_list)), vector_gdf.iloc[0]

Expand Down
2 changes: 1 addition & 1 deletion src/dswx_sar/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '1.0'
VERSION = '1.1'

0 comments on commit 8dee601

Please sign in to comment.