solution_surfaces_builder
solution_surfaces_builder
¶
Provide functions & classes supporting surfaces in inversion solutions geometries.
log = logging.getLogger(__name__)
module-attribute
¶
SolutionSurfacesBuilder
¶
A class to build solution surfaces.
Source code in solvis/solution/solution_surfaces_builder.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
|
__init__(solution: Union[InversionSolution, FaultSystemSolution]) -> None
¶
Source code in solvis/solution/solution_surfaces_builder.py
46 47 |
|
fault_surfaces() -> gpd.GeoDataFrame
¶
Calculate the geometry of the solution fault surfaces projected onto the earth surface.
Returns:
Type | Description |
---|---|
gpd.GeoDataFrame
|
a gpd.GeoDataFrame |
Source code in solvis/solution/solution_surfaces_builder.py
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
|
rupture_surface(rupture_id: int) -> gpd.GeoDataFrame
¶
Calculate the geometry of the rupture surfaces projected onto the earth surface.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rupture_id
|
int
|
ID of the rupture |
required |
Returns:
Type | Description |
---|---|
gpd.GeoDataFrame
|
a gpd.GeoDataFrame |
Source code in solvis/solution/solution_surfaces_builder.py
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
|
create_crustal_section_surface(section: gpd.GeoDataFrame) -> gpd.GeoDataFrame
¶
Source code in solvis/solution/solution_surfaces_builder.py
37 38 39 40 |
|
create_subduction_section_surface(section: gpd.GeoDataFrame) -> gpd.GeoDataFrame
¶
Source code in solvis/solution/solution_surfaces_builder.py
22 23 24 25 26 27 28 29 30 31 32 33 34 |
|