-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: stratigraphic alpha sorter was inverted, reverse sorter * ignore units without contact for max contact length sorter * updated orientation sorter to use correct trigonometry for strike/dip lines. also change to using all intersections along line not only the first intersection. perhaps this should be a different sorter? * revert back to original orientation sorter * style: black * updating WA json to work * remove unused argument documentation * only run doc build on master
- Loading branch information
1 parent
c14e986
commit 184663e
Showing
4 changed files
with
183 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,49 @@ | ||
{ | ||
"structure": { | ||
"orientation_type": "strike", | ||
"dipdir_column": "strike", | ||
"dip_column": "dip", | ||
"description_column": "DESCRIPTION", | ||
"bedding_text": "Bed", | ||
"overturned_column": "structypei", | ||
"overturned_text": "BEOI", | ||
"objectid_column": "objectid", | ||
"desciption_column": "feature" | ||
}, | ||
"geology": { | ||
"unitname_column": "unitname", | ||
"alt_unitname_column": "code", | ||
"group_column": "group_", | ||
"supergroup_column": "supersuite", | ||
"description_column": "descriptn", | ||
"minage_column": "min_age_ma", | ||
"maxage_column": "max_age_ma", | ||
"rocktype_column": "rocktype1", | ||
"alt_rocktype_column": "rocktype2", | ||
"sill_text": "sill", | ||
"intrusive_text": "intrusive", | ||
"volcanic_text": "volcanic", | ||
"objectid_column": "ID", | ||
"ignore_codes": ["cover"] | ||
}, | ||
"fault": { | ||
"structtype_column": "feature", | ||
"fault_text": "Fault", | ||
"dip_null_value": "0", | ||
"dipdir_flag": "num", | ||
"dipdir_column": "dip_dir", | ||
"dip_column": "dip", | ||
"orientation_type": "dip direction", | ||
"dipestimate_column": "dip_est", | ||
"dipestimate_text": "gentle,moderate,steep", | ||
"name_column": "name", | ||
"objectid_column": "objectid" | ||
}, | ||
"fold": { | ||
"structtype_column": "feature", | ||
"fold_text": "Fold axial trace", | ||
"description_column": "type", | ||
"synform_text": "syncline", | ||
"foldname_column": "NAME", | ||
"objectid_column": "objectid" | ||
} | ||
} | ||
"structure": { | ||
"orientation_type": "strike", | ||
"dipdir_column": "strike", | ||
"dip_column": "dip", | ||
"description_column": "feature", | ||
"bedding_text": "Bed", | ||
"overturned_column": "structypei", | ||
"overturned_text": "BEOI", | ||
"objectid_column": "objectid" | ||
}, | ||
"geology": { | ||
"unitname_column": "unitname", | ||
"alt_unitname_column": "code", | ||
"group_column": "group_", | ||
"supergroup_column": "supersuite", | ||
"description_column": "descriptn", | ||
"minage_column": "min_age_ma", | ||
"maxage_column": "max_age_ma", | ||
"rocktype_column": "rocktype1", | ||
"alt_rocktype_column": "rocktype2", | ||
"sill_text": "is a sill", | ||
"intrusive_text": "intrusive", | ||
"volcanic_text": "volcanic", | ||
"objectid_column": "ID", | ||
"ignore_codes": ["cover"] | ||
}, | ||
"fault": { | ||
"structtype_column": "feature", | ||
"fault_text": "Fault", | ||
"dip_null_value": "0", | ||
"dipdir_flag": "num", | ||
"dipdir_column": "dip_dir", | ||
"dip_column": "dip", | ||
"orientation_type": "dip direction", | ||
"dipestimate_column": "dip_est", | ||
"dipestimate_text": "gentle,moderate,steep", | ||
"name_column": "name", | ||
"objectid_column": "objectid" | ||
}, | ||
"fold": { | ||
"structtype_column": "feature", | ||
"fold_text": "Fold axial trace", | ||
"description_column": "type", | ||
"synform_text": "syncline", | ||
"foldname_column": "NAME", | ||
"objectid_column": "objectid" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.