Skip to content

Commit

Permalink
change 15 cm to 10 cm default
Browse files Browse the repository at this point in the history
  • Loading branch information
scottstanie committed Oct 3, 2024
1 parent c982a27 commit e9020bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/disp_s1/browse_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ def make_browse_image_from_arr(
mask: ArrayLike,
max_dim_allowed: int = 2048,
cmap: str = "RdBu_r",
vmin: float = -0.15,
vmax: float = 0.15,
vmin: float = -0.10,
vmax: float = 0.10,
) -> None:
"""Create a PNG browse image for the output product from given array."""
# Apply mask
Expand All @@ -58,8 +58,8 @@ def make_browse_image_from_nc(
dataset_name: str,
max_dim_allowed: int = 2048,
cmap: str = "RdBu_r",
vmin: float = -0.15,
vmax: float = 0.15,
vmin: float = -0.10,
vmax: float = 0.10,
) -> None:
"""Create a PNG browse image for the output product from product in NetCDF file."""
if dataset_name not in DISPLACEMENT_PRODUCTS.names:
Expand Down

0 comments on commit e9020bb

Please sign in to comment.