Skip to content

Commit

Permalink
Merge pull request #457 from nasa/release/4.0.0-er.2.0
Browse files Browse the repository at this point in the history
Release 4.0.0 ER-2.0
  • Loading branch information
collinss-jpl authored Jun 20, 2024
2 parents cc2410f + 0c9b36e commit 3d52585
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,4 +228,4 @@ RunConfig:
# Save the full-res GeoTIFF Browse image in addition to the PNG
save_tif_to_output: True

log_file: /home/dswx_user/output_dir/dswx-ni.log
log_file: /home/dswx_user/scratch_dir/dswx-ni.log
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sample RunConfig for use with the DSWx-NI PGE v4.0.0-er.1.0
# Sample RunConfig for use with the DSWx-NI PGE v4.0.0-er.2.0
# This RunConfig should require minimal changes in order to be used with the
# OPERA PCM.

Expand Down Expand Up @@ -228,4 +228,4 @@ RunConfig:
# Save the full-res GeoTIFF Browse image in addition to the PNG
save_tif_to_output: True

log_file: /home/dswx_user/output_dir/dswx-ni.log
log_file: /home/dswx_user/scratch_dir/dswx-ni.log
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ h5py
Jinja2
jsonschema
mgrs
numpy
numpy<2
pandas
PyYAML
pylint
Expand Down
2 changes: 1 addition & 1 deletion src/opera/_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Package information for the OPERA PGE repository.
"""

__version__ = "3.0.0-rc.2.2"
__version__ = "4.0.0-er.2.0"
__title__ = "opera-sds-pge"
__summary__ = "OPERA SDS Product Generation Executable (PGE) Repository"
__uri__ = "https://github.com/nasa/opera-sds-pge"
Expand Down
3 changes: 3 additions & 0 deletions src/opera/pge/disp_s1/disp_s1_pge.py
Original file line number Diff line number Diff line change
Expand Up @@ -822,6 +822,9 @@ class DispS1Executor(DispS1PreProcessorMixin, DispS1PostProcessorMixin, PgeExecu
LEVEL = "L3"
"""Processing Level for DISP-S1 Products"""

PGE_VERSION = "3.0.0-rc.2.2"
"""Version of the PGE (overrides default from base_pge)"""

SAS_VERSION = "0.2.8" # Gamma release https://github.com/opera-adt/disp-s1/releases/tag/v0.2.8
"""Version of the SAS wrapped by this PGE, should be updated as needed"""

Expand Down
6 changes: 1 addition & 5 deletions src/opera/pge/dswx_ni/dswx_ni_pge.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,10 +326,9 @@ def run_postprocessor(self, **kwargs):
"""
print(f'Running postprocessor for {self._post_mixin_name}')

self._run_sas_qa_executable()

self._validate_output()
self._validate_output_product_filenames()
self._run_sas_qa_executable()
self._stage_output_files()


Expand All @@ -347,9 +346,6 @@ class DSWxNIExecutor(DSWxNIPreProcessorMixin, DSWxNIPostProcessorMixin, PgeExecu
LEVEL = "L3"
"""Processing Level for DSWx-NI Products"""

PGE_VERSION = "4.0.0-er.1.0"
"""Version of the PGE (overrides default from base_pge)"""

SAS_VERSION = "0.1"
"""Version of the SAS wrapped by this PGE, should be updated as needed"""

Expand Down
3 changes: 3 additions & 0 deletions src/opera/pge/dswx_s1/dswx_s1_pge.py
Original file line number Diff line number Diff line change
Expand Up @@ -791,6 +791,9 @@ class DSWxS1Executor(DSWxS1PreProcessorMixin, DSWxS1PostProcessorMixin, PgeExecu
LEVEL = "L3"
"""Processing Level for DSWx-S1 Products"""

PGE_VERSION = "3.0.0-rc.2.1"
"""Version of the PGE (overrides default from base_pge)"""

SAS_VERSION = "0.4.2" # CalVal release https://github.com/opera-adt/DSWX-SAR/releases/tag/v0.4.2
"""Version of the SAS wrapped by this PGE, should be updated as needed"""

Expand Down

0 comments on commit 3d52585

Please sign in to comment.