zusammenfügen 02.2.
This commit is contained in:
@@ -405,9 +405,10 @@ class ENU:
|
||||
:rtype: tuple[float, float]
|
||||
"""
|
||||
XYZ = np.array(list(dict_xyz.values()), dtype=float)
|
||||
X0, Y0, Z0 = XYZ.mean(axis=0)
|
||||
B0 = float(berechnungen.B(X0, Y0, Z0))
|
||||
L0 = float(berechnungen.L(X0, Y0))
|
||||
mittelwerte = XYZ.mean(axis=0)
|
||||
X0, Y0, Z0 = mittelwerte[0], mittelwerte[1], mittelwerte[2]
|
||||
B0 = float(np.asarray(berechnungen.B(X0, Y0, Z0)).item())
|
||||
L0 = float(np.asarray(berechnungen.L(X0, Y0)).item())
|
||||
return B0, L0
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user