File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -362,6 +362,7 @@ def iers2trans(
362362 d_rx ,
363363 d_ry ,
364364 d_rz ,
365+ tf_sd = None
365366):
366367 """
367368 Used to convert IERS transformation parameters into GeodePy Transformation
@@ -385,6 +386,7 @@ class parameters.
385386 :param d_rx: Rate of change in Rotation about X (milliarcsec/yr)
386387 :param d_ry: Rate of change in Rotation about X (milliarcsec/yr)
387388 :param d_rz: Rate of change in Rotation about X (milliarcsec/yr)
389+ :param tf_sd: TransformationSD object
388390 :return: Transformation object following the Australian convention
389391 """
390392 return Transformation (
@@ -405,6 +407,7 @@ class parameters.
405407 round (- d_rx / 1000 , 8 ),
406408 round (- d_ry / 1000 , 8 ),
407409 round (- d_rz / 1000 , 8 ),
410+ tf_sd = tf_sd
408411 )
409412
410413def iers2transSD (
You can’t perform that action at this time.
0 commit comments