We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d138c74 commit e13fcdbCopy full SHA for e13fcdb
1 file changed
geodepy/constants.py
@@ -362,6 +362,7 @@ def iers2trans(
362
d_rx,
363
d_ry,
364
d_rz,
365
+ tf_sd=None
366
):
367
"""
368
Used to convert IERS transformation parameters into GeodePy Transformation
@@ -385,6 +386,7 @@ class parameters.
385
386
:param d_rx: Rate of change in Rotation about X (milliarcsec/yr)
387
:param d_ry: Rate of change in Rotation about X (milliarcsec/yr)
388
:param d_rz: Rate of change in Rotation about X (milliarcsec/yr)
389
+ :param tf_sd: TransformationSD object
390
:return: Transformation object following the Australian convention
391
392
return Transformation(
@@ -405,6 +407,7 @@ class parameters.
405
407
round(-d_rx / 1000, 8),
406
408
round(-d_ry / 1000, 8),
409
round(-d_rz / 1000, 8),
410
+ tf_sd=tf_sd
411
)
412
413
def iers2transSD(
0 commit comments