Skip to content

Commit 735a86a

Browse files
authored
Merge pull request #166 from GeoscienceAustralia/doc_update_mar26
Docs updated for March 2026
2 parents a1d204f + 61213e3 commit 735a86a

File tree

4 files changed

+42
-13
lines changed

4 files changed

+42
-13
lines changed

docs/features/constants.rst

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,34 @@ For :class:`~geodepy.constants.Transformation`:
130130
+-----------------------------+---------------------+-------------------------------------------------------------+
131131
| itrf2020_to_itrf88 | Transformation | ITRF2020 to ITRF88 |
132132
+-----------------------------+---------------------+-------------------------------------------------------------+
133-
133+
| wgs84g2296_to_itrf2020 | Transformation | WGS84(G2296) to ITRF2020 |
134+
+-----------------------------+---------------------+-------------------------------------------------------------+
135+
| wgs84g2139_to_wgs84g2296 | Transformation | WGS84(G2139) to WGS84(G2296) |
136+
+-----------------------------+---------------------+-------------------------------------------------------------+
137+
| wgs84g1762_to_wgs84g2296 | Transformation | WGS84(G1762) to WGS84(G2296) |
138+
+-----------------------------+---------------------+-------------------------------------------------------------+
139+
| wgs84g2139_to_itrf2014 | Transformation | WGS84(G2139) to ITRF2014 |
140+
+-----------------------------+---------------------+-------------------------------------------------------------+
141+
| wgs84g1762_to_itrf2008 | Transformation | WGS84(G1762) to ITRF2008 |
142+
+-----------------------------+---------------------+-------------------------------------------------------------+
143+
| itrf2005_to_wgs84g1674 | Transformation | ITRF2005 to WGS84(G1674) |
144+
+-----------------------------+---------------------+-------------------------------------------------------------+
145+
| wgs84g1674_to_wgs84g1762 | Transformation | WGS84(G1674) to WGS84(G1762) |
146+
+-----------------------------+---------------------+-------------------------------------------------------------+
147+
| wgs84g1150_to_itrf2000 | Transformation | WGS84(G1150) to ITRF2000 |
148+
+-----------------------------+---------------------+-------------------------------------------------------------+
149+
| wgs84g873_to_itrf97 | Transformation | WGS84(G873) to ITRF97 |
150+
+-----------------------------+---------------------+-------------------------------------------------------------+
151+
| wgs84g873_to_itrf96 | Transformation | WGS84(G873) to ITRF96 |
152+
+-----------------------------+---------------------+-------------------------------------------------------------+
153+
| wgs84g873_to_itrf94 | Transformation | WGS84(G873) to ITRF94 |
154+
+-----------------------------+---------------------+-------------------------------------------------------------+
155+
| wgs84g730_to_itrf91 | Transformation | WGS84(G730) to ITRF91 |
156+
+-----------------------------+---------------------+-------------------------------------------------------------+
157+
| wgs84trans_to_itrf90 | Transformation | WGS84 (Transit) to ITRF90 |
158+
+-----------------------------+---------------------+-------------------------------------------------------------+
159+
| wgs84ensemble_to_itrf2014 | Transformation | WGS84 Ensemble to ITRF2014 |
160+
+-----------------------------+---------------------+-------------------------------------------------------------+
134161

135162
All other combinations of ITRF transformations are available.
136163

docs/features/transform.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Helmert Transformations
1313

1414
.. autofunction:: geodepy.transform.conform14
1515

16+
.. autofunction:: geodepy.transform.plate_motion_transformation
17+
1618
Common Geodetic Transformations
1719
--------------------------------
1820

docs/installation.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ The requirements can be seen below.
3333
.. code::
3434
3535
NumPy
36-
SciPy
37-
GDAL #only needed for height module
36+
SciPy # only needed for height module
37+
GDAL # only needed for height module
38+
Pandas # only for sinex module
3839
3940
GDAL is only used for the heights module and sometimes can be difficult to install. For more information on
4041
installing GDAL see the `GDAL pypi <https://pypi.org/project/GDAL/>`_ page.

docs/tutorials/timedeptranstut.rst

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -108,30 +108,29 @@ Now we have an ITRF2014 coordinate at 1/1/2007. Now this needs to be moved to th
108108
done using the ITRF2014 to GDA2020 transformation which approximates plate motion in Australia. To complete
109109
this transformation on another plate a different plate motion model should be used.
110110

111-
Some careful math needs to be completed here. To go from 2007 to 2030, 23 years
112-
of plate motion needs to be added. The reference epoch of the ITRF2014 to GDA2020 transformation is 2020.
113-
As such 23 needs to be subtracted from 2020 to get the desired motion. This means the epoch 1/1/1993 should be entered.
111+
The plate_motion_transformation function can be used to move coordinates in time. This avoids the need to
112+
calculate the difference between the reference epoch and the epoch required. This can be seen below.
114113

115114
.. caution::
116115
Transformations using the plate motion model of itrf2014_to_gda2020 should only be completed for epochs between
117116
2005 - 2035. For transformations outside of this range refer to the :ref:`next <tutorials/transold>` section.
118117

119-
120118
.. code:: python
121119
122-
x, y, z, vcv = geodepy.transform.conform14(
120+
x, y, z, vcv = geodepy.transform.plate_motion_transformation(
123121
x,
124122
y,
125-
z,
126-
date(1997, 1, 1), #plate motion epoch
123+
z,
124+
date(2007, 1, 1), #from epoch
125+
date(2030, 1, 1), #to epoch
127126
geodepy.constants.itrf2014_to_gda2020 #transformation paramters
128127
)
129128
130129
print(x, y, z)
131130
132-
>>-4050763.516973 4220880.699906 -2533399.176976
131+
>>-4050763.517081 4220880.699892 -2533399.176829
133132
134-
This is now the ITRF2014 corrdinate at 1/1/2030. Now we can convert this ITRF2014 cooridnate to ITRF2020.
133+
This is now the ITRF2014 corrdinate at 1/1/2030. Now we can convert this ITRF2014 coordinate to ITRF2020.
135134

136135
.. code:: python
137136
@@ -145,7 +144,7 @@ This is now the ITRF2014 corrdinate at 1/1/2030. Now we can convert this ITRF201
145144
146145
print(x, y, z)
147146
148-
>>-4050763.517274 4220880.704079 -2533399.182440
147+
>>-4050763.517382 4220880.704065 -2533399.182293
149148
150149
This is the final cooridnate in ITRF2020 at 1/1/2030.
151150

0 commit comments

Comments
 (0)