Skip to content

Commit e13fcdb

Browse files
committed
Added TransformSD to iers2trans
1 parent d138c74 commit e13fcdb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

geodepy/constants.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

410413
def iers2transSD(

0 commit comments

Comments
 (0)