MMpy.OrientationAxes.apply_geostats
Syntax
orientation_axis.apply_geostats(azimuth, plunge1, plunge2)
Description
Apply a geostatistical axis orientation mode.
Parameters
Name |
Type |
Description |
---|---|---|
azimuth |
float | Azimuth of axis 1 value in degrees (between -360 and 360). |
plunge1 |
float | Plunge of axis 1 value in degrees (between -90 and 90). |
plunge2 | float | Plunge of axis 2 value in degrees (between -90 and 90). |
Returns
Type |
Description |
---|---|
bool | Returns True if successful, False otherwise. |
See Also
MMpy.OrientationAxes.apply_rotation
MMpy.OrientationAxes.apply_geopitch
MMpy.OrientationAxes.apply_geoplunge
Notes
You can access the results using the following properties: axis1, axis2, axis3, plane_parameters and sense.
Examples
axes = MMpy.OrientationAxes() axes.apply_geostats(344, 0, -12) print(axes.axis1) print(axes.axis2) print(axes.axis3) print(axes.plane_parameters) print(axes.sense)
Resource ID
IDPH_ORIENTATIONAXES_APPLY_GEOSTATS