Skip to content

Commit

Permalink
Merge pull request #260 from GPlates/259-use-70-degree-angle-for-ridg…
Browse files Browse the repository at this point in the history
…e-transform-separation

Use 70 degree angle for ridge-transform separation.
  • Loading branch information
jcannon-gplates authored Aug 23, 2024
2 parents 257f0c8 + ce9c5d0 commit e15e361
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion gplately/ptt/separate_ridge_transform_segments.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,13 @@
import pygplates

# How much a segment can deviate from the stage pole before it's considered a transform segment.
DEFAULT_TRANSFORM_SEGMENT_DEVIATION_DEGREES = 45 # An even 45 degrees split
#
# Use a 70 degree angle.
# This used to be an even 45 degree split, but we need to gravitate towards favouring ridge segments (by increasing the angle).
# This is because, according to Dietmar, there are self-inconsistencies in the plate model (between the way plate boundaries are drawn
# and labelled and their correspondence to associated plate velocities) that are more apparent in deep time (eg, before 200 Ma) where
# there are mid-ocean ridges in large oceans NOT surrounding by passive margins.
DEFAULT_TRANSFORM_SEGMENT_DEVIATION_DEGREES = 70
DEFAULT_TRANSFORM_SEGMENT_DEVIATION_RADIANS = math.radians(
DEFAULT_TRANSFORM_SEGMENT_DEVIATION_DEGREES
)
Expand Down

0 comments on commit e15e361

Please sign in to comment.