Skip to content

Commit

Permalink
Merge pull request #75 from gshiroma/changes_after_r5
Browse files Browse the repository at this point in the history
Changes after R5
  • Loading branch information
gshiroma authored Sep 25, 2023
2 parents 494293c + cb5a319 commit 947aaaa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM oraclelinux:8

LABEL author="OPERA ADT" \
description="RTC cal/val release R4" \
version="1.0.0-final"
version="1.0.1-final"

RUN yum -y update &&\
yum -y install curl &&\
Expand Down
2 changes: 1 addition & 1 deletion build_docker_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

REPO=opera
IMAGE=rtc
TAG=final_1.0.0
TAG=final_1.0.1

echo "IMAGE is $REPO/$IMAGE:$TAG"

Expand Down
6 changes: 3 additions & 3 deletions src/rtc/h5_prep.py
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ def get_metadata_dict(product_id: str,
['processing_information'
'_output_backscatter_decibel_conversion_equation',
ALL_PRODUCTS,
'backscatter_dB = 10*log10(backscatter_linear)',
'10*log10(backscatter_linear)',
'Equation to convert provided backscatter to decibel (dB)'],

# 4.4
Expand Down Expand Up @@ -1095,7 +1095,7 @@ def get_metadata_dict(product_id: str,
'[pixel_coordinate_convention]'] = \
['bounding_box_pixel_coordinate_convention',
ALL_PRODUCTS,
'Upper left corner (ULC)',
"Edges/corners",
'Bounding box pixel coordinate convention']

metadata_dict['identification/burstID'] = \
Expand Down Expand Up @@ -1199,7 +1199,7 @@ def all_metadata_dict_to_geotiff_metadata_dict(metadata_dict):
if key is None:
continue
if isinstance(value, str):
geotiff_metadata_dict[key.upper()] = str(value).upper()
geotiff_metadata_dict[key.upper()] = str(value)
continue
geotiff_metadata_dict[key.upper()] = value

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

0 comments on commit 947aaaa

Please sign in to comment.