Meine alten Sachen aus RALV

This commit is contained in:
2025-10-15 11:32:56 +02:00
commit c89b932d55
17 changed files with 763 additions and 0 deletions

14
Richtungsreduktion.py Normal file
View File

@@ -0,0 +1,14 @@
from numpy import sqrt, cos, sin
import ellipsoide
import ausgaben as aus
import winkelumrechnungen as wu
re = ellipsoide.Ellipsoid.init_name("Bessel")
eta = lambda phi: sqrt(re.e_ ** 2 * cos(phi) ** 2)
A = wu.gms2rad([327,0,0])
phi = wu.gms2rad([35,0,0])
h = 3500
dA = eta(phi)**2 * h * sin(A)*cos(A) / re.N(phi)
print(aus.gms("dA", dA, 10))