pygplates.ReconstructedFlowline¶
- 
class pygplates.ReconstructedFlowline¶
- Bases: - pygplates.ReconstructionGeometry- The reconstructed history of plate motion away from a spreading ridge in the form of a path of points over geological time. - The - reconstruct()function can be used to generate ReconstructedFlowline instances.- Note Although a single flowline- featurehas only a single seed geometry that seed geometry can be either a- PointOnSphereor a- MultiPointOnSphere.And since there is one- reconstructed flowlineper seed point there can be, in the case of a- MultiPointOnSphere, multiple- reconstructed flowlinesper flowline- feature.- 
__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 - ReconstructedFlowline.- get_left_flowline()- Returns the flowline spread along the left plate from the reconstructed seed point. - get_present_day_seed_point()- Returns the present day seed point. - get_property()- Returns the feature property containing the seed point associated with this - ReconstructedFlowline.- get_reconstructed_seed_point()- Returns the reconstructed seed point. - get_reconstruction_time()- Returns the reconstruction time that this instance was created at. - get_right_flowline()- Returns the flowline spread along the right plate from the reconstructed seed point. - 
get_feature()¶
- Returns the feature associated with this - ReconstructedFlowline.- Return type: - Feature- Note - Multiple - reconstructed flowlinescan be associated with the same flowline- featureif its seed geometry is a- MultiPointOnSphere.
 - 
get_left_flowline()¶
- Returns the flowline spread along the left plate from the reconstructed seed point. - Return type: - PolylineOnSphere- The returned points are on the left plate associated with - get_feature().get_left_plate()- The first point in the returned - PolylineOnSphereis the- reconstructed seed pointand subsequent points are progressively further in the geological past.- Note - This is just one of the left flowlines associated with this - feature'sseed geometry if that seed geometry is a- MultiPointOnSphere.- Iterate over the left flowline points: - for left_point in reconstructed_flowline.get_left_flowline(): ... 
 - 
get_present_day_seed_point()¶
- Returns the present day seed point. - Return type: - PointOnSphere- Note - This is just one of the seed points in this - feature'sseed geometry if that seed geometry is a- MultiPointOnSphere. The remaining seed points are associated with other- ReconstructedFlowlineinstances.
 - 
get_property()¶
- Returns the feature property containing the seed point associated with this - ReconstructedFlowline.- Return type: - Property- This is the - Propertythat the- present day seed pointand the- reconstructed seed pointare obtained from.
 - 
get_reconstructed_seed_point()¶
- Returns the reconstructed seed point. - Return type: - PointOnSphere- Note - This is just one of the seed points in this - feature'sseed geometry if that seed geometry is a- MultiPointOnSphere. The remaining seed points are associated with other- ReconstructedFlowlineinstances.
 - 
get_right_flowline()¶
- Returns the flowline spread along the right plate from the reconstructed seed point. - Return type: - PolylineOnSphere- The returned points are on the right plate associated with - get_feature().get_right_plate()- The first point in the returned - PolylineOnSphereis the- reconstructed seed pointand subsequent points are progressively further in the geological past.- Note - This is just one of the right flowlines associated with this - feature'sseed geometry if that seed geometry is a- MultiPointOnSphere.- Iterate over the right flowline points: - for right_point in reconstructed_flowline.get_right_flowline(): ... 
 
-