-
Notifications
You must be signed in to change notification settings - Fork 8
[com6] Scarp: FinalUpdate #1222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Final Update for the Com6Scarp Script. Includes minor changes like changes in attribute names and meanings
fso42
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the removal and moving of the coordinates and perimeter points wanted?
|
performed the requestted correction
fso42
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The points_coordinates files are duplicated. I think one set should be removed?
| planesDip = list(map(float, SHPdata['dipdir'])) | ||
| planesSlope = list(map(float, SHPdata['dipAngle'])) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I strongly sugget to match the variable names and the attribute name. I.e planesDipAngle. Otherwise this gets very confusing when reading the code
| ellipsoidsTilt = list(map(float, SHPdata['dipAngle'])) | ||
| ellipsoidsDir = list(map(float, SHPdata['dipdir'])) | ||
| ellipsoidsOffset = list(map(float, SHPdata['offset'])) | ||
| ellipsoidDip = list(map(float, SHPdata['dip'])) | ||
| ellipsoidDip = list(map(float, SHPdata['rotAngle'])) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above
| ellipsoidsTilt = list(map(float, SHPdata['tilt'])) | ||
| ellipsoidsDir = list(map(float, SHPdata['direc'])) | ||
| ellipsoidsTilt = list(map(float, SHPdata['dipAngle'])) | ||
| ellipsoidsDir = list(map(float, SHPdata['dipdir'])) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please use dipDir (capital D; since it gets changed anyways...)
| slopeAngle | ||
| np array with the slope angle of each scarp plane-feature (as many values as features) | ||
| dip | ||
| dipdir |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dipDir
Final Update for the Com6Scarp Script.
Includes minor changes like changes in attribute names and meanings