Skip to content

Commit

Permalink
#1035: Fixed logic error
Browse files Browse the repository at this point in the history
  • Loading branch information
philipjyoon committed Dec 11, 2024
1 parent d68cfab commit 0940071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion product2dataset/product2dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def convert(
dataset_met_json_path = os.path.join(dataset_dir, f"{dataset_id}.met.json")

# Remove tons of repeated and superfluous data from DISP-S1 metadata. We will reduce the GRQ footprint by 80%+ here
if pge_name == "L3_DISP_S1" and "OPERA_L2_COMPRESSED-CSLC-S1" in dataset_met_json["id"]:
if pge_name == "L3_DISP_S1" and "OPERA_L2_COMPRESSED-CSLC-S1" not in dataset_met_json["id"]:

logger.info(dataset_met_json)

Expand Down

0 comments on commit 0940071

Please sign in to comment.