Merge remote-tracking branch 'origin/main'

This commit is contained in:
Tammo.Weber
2026-02-09 11:45:29 +01:00
8 changed files with 1390 additions and 5702 deletions

View File

@@ -819,7 +819,7 @@ def compute_gha1_stoch(n1, cb_stoch, n_in, beta0, lamb0, s, a0, ax, ay, b):
if "on" not in (cb_stoch or []):
return "", None
n_in = int(n_in) if n_in else 1000
n_in = float(n_in) if n_in else 1000
try:
ell = EllipsoidTriaxial(ax, ay, b)
@@ -873,7 +873,7 @@ def compute_gha1_approx(n1, cb_approx, ds_in, beta0, lamb0, s, a0, ax, ay, b):
if not n1 or "on" not in (cb_approx or []):
return "", None
ds_in = int(ds_in) if ds_in else 1000
ds_in = float(ds_in) if ds_in else 1000
try:
ell = EllipsoidTriaxial(ax, ay, b)
@@ -987,7 +987,7 @@ def compute_gha2_stoch(n2, cb_stoch, n_in, beta0, lamb0, beta1, lamb1, ax, ay, b
if "on" not in (cb_stoch or []):
return "", None
n_in = int(n_in) if n_in else 1000
n_in = float(n_in) if n_in else 1000
try:
ell = EllipsoidTriaxial(ax, ay, b)
@@ -1041,7 +1041,7 @@ def compute_gha2_approx(n2, cb_approx, ds_in, beta0, lamb0, beta1, lamb1, ax, ay
if "on" not in (cb_approx or []):
return "", None
ds_in = int(ds_in) if ds_in else 1000
ds_in = float(ds_in) if ds_in else 1000
try:
ell = EllipsoidTriaxial(ax, ay, b)