Commit d78660f
Merge Pre release branch onto main (#84)
* new fault_system_solution_helper module
* a simple rupture grouping algo;
* drop_zero_rate differentiates between FSS and IS;
* refactor subsection filter & tests
* migrate to filter_rupture_ids.for_subsections();
* migrate to filter_rupture_ids.for_parent_fault_ids();
* fixed method names; added doc page for subsection_id_filter;
* refactor filter tests; WIP on DeprecationWarnings; new filter_parent_fault_ids; detox
* fixing many deprecation warnings; updated geopandas, pandas, numpy, pyvista libs; changes to read_csv_dtype configuration; detox
* refactor filters int package; more test cover; implement new filters; migrate old functions and deprecate warn the originals;
* unifying filter methods; improve docstrings & tests;
* implement rate and mag filtering on rupture_id_filter;
* migrate find rupture polygons into filter class; move drop_zero_rates into class init;
* implement ChainableSetBase; migrate FilterRuptureIds to be chainable;
* add set operation support for chaining (join_prior) and test coverage;
* join arguments tidied up; strings and ENUMS are supported;
* fix set operand method names;
* fix set operations return type
* implement set operands for supported set methods; improve docs
* merge 3d geometry changes from @voj; add some testing;
* new participation rate functions; detox
* test 3d surfaces
* migrate participation functions into classes proper; add FSS section_participation;
* make subsection_id_filter chainable;
* added participation methods to fault_system_solution
* simplify FSS participation using rate_weighted_mean; refactor dataframe dtypes; participation performance testing;
* standardise participation functions API and return column;
* fix rate_column; add .all() methods to filter classes;
* add TinyInversionSolution fixture; tune pytest fixture scoping for massive test speed up (~3 times faster);
* doc and docstrings improvements; Better typing in filter package;
* more on rupture_grouping
* add module docstring to inversion_solution_file;
* adding dataframe schema validations with panderas;
* WIP, adding InversionSolutionFile::RuptureRateSchema;
* Feature/52 refactor inversion solution (#53)
* Chore/54 test coverage (#55)
* Chore/59 doc fixes (#61)
* make parent fault filter chainable (#66)
* fix for #57 (return int type for polygons);
* update pytz dep (#69)
* Feature/49 named fault participation (#67)
* Feature: named_fault_participation_rate #49
* Epic Feature: enhanced participation rate options #42
* refactor to remove *Protocol superclasses (#73)
* refactor to remove *Protocol superclasses; migrate and improve docstrings; detox
* Feature/71 scale rupture rates (#74)
* fold in changes suggested by @chrisdicaprio on PR #73;
* fix drop_zero_rates on FilterRuptureIds.for_magnitude();
* fix for_parent_fault_ids
* fix test_ruptures_for_subsections
* fix for_rupture_rate
* fix for_polygon ; fix impacted tests;
* Bump version: 0.13.0 → 1.0.0-alpha
* add joint_type arg to relevant FilterRuptureId class methods (#80)
* add joint_type arg to `for_parent_fault_names` * `for_parent_fault_ids`; add tolist() convenience method;
* refactor for readability/efficiency; add full test coverage for new arg;
* add `join_type` arg to `for_subsection_ids` (working but a little slow); detox;
* rename arg for consistency
* refactoring; new docstrings; named_faults support; detox;
* remove commented line
* changelog entry;
* Bump version: 1.0.0-alpha → 1.0.0-beta
* align version ids
* Chore/82 make docs and api align (#83)
* Bump version: 1.0.0-beta-0 → 1.0.0
---------
Co-authored-by: Chris DiCaprio <[email protected]>1 parent a5666e0 commit d78660f
File tree
109 files changed
+8775
-3634
lines changed- .github/workflows
- docs
- api
- filter
- inversion_solution
- solution
- fault_system_solution
- inversion_solution
- solvis
- resources/named_faults
- solvis
- dochelper
- filter
- inversion_solution
- scripts
- solution
- fault_system_solution
- inversion_solution
- test
- filter
- fixtures/TinyInversionSolution
- geometry
- inversion_solution
- participation
- performance
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
109 files changed
+8775
-3634
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
5 | 21 | | |
6 | 22 | | |
7 | 23 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
26 | | - | |
| 25 | + | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| 32 | + | |
32 | 33 | | |
| 34 | + | |
33 | 35 | | |
34 | 36 | | |
35 | 37 | | |
| |||
39 | 41 | | |
40 | 42 | | |
41 | 43 | | |
42 | | - | |
| 44 | + | |
43 | 45 | | |
44 | 46 | | |
45 | 47 | | |
| |||
49 | 51 | | |
50 | 52 | | |
51 | 53 | | |
52 | | - | |
| 54 | + | |
53 | 55 | | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
54 | 60 | | |
55 | 61 | | |
56 | 62 | | |
| |||
61 | 67 | | |
62 | 68 | | |
63 | 69 | | |
64 | | - | |
| 70 | + | |
65 | 71 | | |
66 | 72 | | |
67 | 73 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
3 | 57 | | |
4 | 58 | | |
5 | 59 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
This file was deleted.
This file was deleted.
0 commit comments