Umbenennung, Umstrukturierung, Doc-Strings
This commit is contained in:
14
dashboard.py
14
dashboard.py
@@ -6,13 +6,13 @@ from ellipsoide import EllipsoidTriaxial
|
||||
import winkelumrechnungen as wu
|
||||
import ausgaben as aus
|
||||
|
||||
from GHA_triaxial.panou import gha1_ana
|
||||
from GHA_triaxial.panou import gha1_num
|
||||
from GHA_triaxial.approx_gha1 import gha1_approx
|
||||
from GHA_triaxial.gha1_ana import gha1_ana
|
||||
from GHA_triaxial.gha1_num import gha1_num
|
||||
from GHA_triaxial.gha1_approx import gha1_approx
|
||||
|
||||
from GHA_triaxial.panou_2013_2GHA_num import gha2_num
|
||||
from GHA_triaxial.ES_gha2 import gha2_ES
|
||||
from GHA_triaxial.approx_gha2 import gha2_approx
|
||||
from GHA_triaxial.gha2_num import gha2_num
|
||||
from GHA_triaxial.gha2_ES import gha2_ES
|
||||
from GHA_triaxial.gha2_approx import gha2_approx
|
||||
|
||||
|
||||
app = Dash(__name__, suppress_callback_exceptions=True)
|
||||
@@ -715,7 +715,7 @@ def compute_gha2_approx(n2, beta0, lamb0, beta1, lamb1, ax, ay, b, method2):
|
||||
P0 = ell.ell2cart(beta0_rad, lamb0_rad)
|
||||
P1 = ell.ell2cart(beta1_rad, lamb1_rad)
|
||||
|
||||
a0_app, a1_app, s_app, points = gha2_approx(ell, P0, P1, ds=1e-4, all_points=True)
|
||||
a0_app, a1_app, s_app, points = gha2_approx(ell, P0, P1, ds=1000, all_points=True)
|
||||
|
||||
out = html.Div([
|
||||
html.Strong("Approximiert: "),
|
||||
|
||||
Reference in New Issue
Block a user