Skip to content

Commit

Permalink
BUGFIX: calling product_info reset may reset the selected measurement…
Browse files Browse the repository at this point in the history
…_group
  • Loading branch information
alexamici committed Feb 23, 2024
1 parent db90a6f commit d36ec64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sarsen/sentinel1.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def product_info(self, **kwargs: Any) -> Dict[str, Any]:
"""Get information about the Sentinel-1 product."""
measurement_groups = self.all_measurement_groups()

self.measurement_group = measurement_groups[0]
self.measurement_group = self.measurement_group or measurement_groups[0]
gcp = self.gcp

bbox = [
Expand Down

0 comments on commit d36ec64

Please sign in to comment.