pygplates.ReconstructedMotionPath¶
-
class
pygplates.ReconstructedMotionPath¶ Bases:
pygplates.ReconstructionGeometryThe reconstructed history of a plate’s motion in the form of a path of points over geological time.
The
reconstruct()function can be used to generate ReconstructedMotionPath instances.Note
Although a single motion pathfeaturehas only a single seed geometry that seed geometry can be either aPointOnSphereor aMultiPointOnSphere.And since there is onereconstructed motion pathper seed point there can be, in the case of aMultiPointOnSphere, multiplereconstructed motion pathsper motion pathfeature.-
__init__()¶ Raises an exception This class cannot be instantiated from Python
Methods
__init__Raises an exception This class cannot be instantiated from Python get_feature()Returns the feature associated with this ReconstructedMotionPath.get_motion_path()Returns the motion path. get_present_day_seed_point()Returns the present day seed point. get_property()Returns the feature property containing the seed point associated with this ReconstructedMotionPath.get_reconstructed_seed_point()Returns the reconstructed seed point. get_reconstruction_time()Returns the reconstruction time that this instance was created at. -
get_feature()¶ Returns the feature associated with this
ReconstructedMotionPath.Return type: FeatureNote
Multiple
reconstructed motion pathscan be associated with the same motion pathfeatureif its seed geometry is aMultiPointOnSphere.
-
get_motion_path()¶ Returns the motion path.
Return type: PolylineOnSphereThe returned points plot the history of motion of the
seed pointon the plate associated withget_feature().get_reconstruction_plate_id()relative to the plate associated withget_feature().get_relative_plate().The first point in the returned
PolylineOnSphereis the furthest in the geological past and subsequent points are progressively more recent with the last point being thereconstructed seed point.Note
This is just one of the motion paths associated with this
feature'sseed geometry if that seed geometry is aMultiPointOnSphere.Iterate over the motion path points:
for point in reconstructed_motion_path.get_motion_path(): ...
-
get_present_day_seed_point()¶ Returns the present day seed point.
Return type: PointOnSphereNote
This is just one of the seed points in this
feature'sseed geometry if that seed geometry is aMultiPointOnSphere. The remaining seed points are associated with otherReconstructedMotionPathinstances.
-
get_property()¶ Returns the feature property containing the seed point associated with this
ReconstructedMotionPath.Return type: PropertyThis is the
Propertythat thepresent day seed pointand thereconstructed seed pointare obtained from.
-
get_reconstructed_seed_point()¶ Returns the reconstructed seed point.
Return type: PointOnSphereNote
This is just one of the seed points in this
feature'sseed geometry if that seed geometry is aMultiPointOnSphere. The remaining seed points are associated with otherReconstructedMotionPathinstances.
-