Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
def generate_bed_kriging(
icesee_path: str = "./",
data_path: str = "_modelrun_datasets",
Ne: int = 60,
stride_km: float = 10.0,
Ne: int = 100,
stride_km: float = 4,
snap_idx: int = 0,
sigma_noise: float = 15.0,
sigma_noise: float = 5.0,
sill_bed: float = 5000.0,
range_bed: float = 30000.0,
nugget_bed: float = 100.0,
Expand Down Expand Up @@ -248,13 +248,13 @@ def parse_args() -> argparse.Namespace:
parser.add_argument(
"--Ne",
type=int,
default=60,
default=100,
help="Number of ensemble realizations to generate (default: 60)",
)
parser.add_argument(
"--stride-km",
type=float,
default=7.0,
default=4,
help="Radar track spacing in km (default: 7.0)",
)
Comment on lines 248 to 259
Copy link

Copilot AI Feb 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The CLI help strings list old default values (60 / 7.0 / 10.0) that no longer match the actual defaults (100 / 4 / 5.0). Update the help text to reflect the new defaults so --help output is correct. (Minor: consider using default=4.0 for --stride-km to match the float type and help formatting.)

Copilot uses AI. Check for mistakes.
parser.add_argument(
Expand All @@ -266,7 +266,7 @@ def parse_args() -> argparse.Namespace:
parser.add_argument(
"--sigma-noise",
type=float,
default=10.0,
default=5.0,
help="Standard deviation of radar measurement noise in meters (default: 10.0)",
)
Comment on lines 266 to 271
Copy link

Copilot AI Feb 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The CLI help strings list old default values (60 / 7.0 / 10.0) that no longer match the actual defaults (100 / 4 / 5.0). Update the help text to reflect the new defaults so --help output is correct. (Minor: consider using default=4.0 for --stride-km to match the float type and help formatting.)

Copilot uses AI. Check for mistakes.
parser.add_argument(
Expand Down
Loading
Loading