This release is a pre-release and may not be stable for production use.
misah
Python bindings for misah, a Rust crate for structural geology processings: cutting geological surfaces against a DEM, reading attitudes back out of the result, and solving the Wallace-Bott problem forwards and backwards.
Alpha. Twenty functions are exposed and the API may still change without notice.
Install
pip install misah
That installs the alpha, and no --pre is needed for it: pip passes over a
pre-release only when there is a stable version to prefer instead, and misah has
none yet. From the first stable release on, the alphas stop arriving that way,
and pip install --pre misah is what reaches them.
Wheels are abi3-py39, so one of them serves every CPython from 3.9 on. They
are built for Linux only so far — manylinux_2_17, x86-64 and aarch64,
which reaches back to glibc 2.14 and 2.17 respectively. Everywhere else pip
falls back to the source distribution and builds it, which needs a Rust
toolchain.
That is a real limitation rather than an oversight, and it is worth stating
where it bites: QGIS, which is the reason these bindings exist, mostly runs on
Windows and macOS. Windows needs LLVM and the MSVC target to cross-compile —
rusqlite is bundled, so the build wants a C compiler for Windows and not only
a Rust one — and macOS needs the Apple SDK, a licensing question before a
technical one. Until those are solved, a QGIS plugin can depend on misah on
Linux and nowhere else. The repository README records both attempts in detail.
Use
Every function takes and returns plain arrays, numbers and dicts. The Rust types
— GeologicalPlane, ReducedStressTensor, FaultPlane — are built and consumed
inside the one call rather than handed across the boundary.
Surfaces against a DEM
import numpy as np
from misah.kernels import intersect_plane_grid
points, segments = intersect_plane_grid(
np.ascontiguousarray(dem), # C-contiguous, else ValueError
geotransform, # the six GDAL elements
(x0, y0, z0), # a point the plane passes through
135.0, # dip direction, degrees
35.0, # dip angle, degrees
nodata,
)
points is an (N, 3) array of intersection vertices, segments an (M, 2) array
of indices into it, one row per marching-squares chord.
For a folded or faulted surface rather than a single plane, intersect_mesh_grid
takes the triangulation and returns the attitude of the triangle that produced
each point, which makes the result a set of located measurements and not a bare
trace:
from misah.kernels import intersect_mesh_grid
points, attitudes, mesh_triangles, stats = intersect_mesh_grid(
np.ascontiguousarray(dem),
geotransform,
vertices, # (V, 3), as a VTK POLYDATA file gives them
faces, # (F, 3) indices into the vertex pool
nodata,
)
attitudes[0] # (dip direction, dip angle)
stats["duplicate_crossings"]
misah.kernels.plane_normal(dip_dir, dip_angle) returns the upward-pointing unit
normal in (East, North, Up).
Attitudes back out of points
from misah.kernels import best_fit_planes
field, stats = best_fit_planes(points, cell_size=50.0)
field["attitudes"] # (M, 2) dip direction and dip angle, one per cell
field["cell_centres"] # (M, 2) where to post them
field["collinearity"] # (M,) how well each is determined; large is bad
stats["cells_collinear"] # cells set aside: on a smooth slope, most of them
None where there is nothing to fit. Any (N, 3) array will do — a contact
digitised from a map, or readings along an outcrop, as readily as the output of
the kernel above.
The cells set aside are the point of it. A plane is determined by a cloud of
points only if the cloud spreads in two directions, and a contact crossing a
smooth hillside spreads in one, where every plane through that line fits equally
well and the one returned is whichever direction rounding favoured. Those cells
are counted in stats rather than published with a confident attitude.
Stress on a fault plane
from misah.kernels import solve_stress
solution = solve_stress(
0.0, 90.0, # S1: trend, plunge
90.0, 0.0, # S3: trend, plunge
0.5, # Phi
0.0, 60.0, # fault: RHR strike, dip angle
sigma1=30.0, sigma3=10.0, # optional; default 1/0 leaves the rake correct
)
solution["theoretical_rake"] # -90.0: pure normal dip-slip
solution["theoretical_slickenline"] # (90.0, 60.0), down the dip vector
rake_to_slickenline is the Aki & Richards rake-to-lineation formula on its own,
for callers that want it without a tensor.
And the same problem backwards
from misah.kernels import invert_stress, inversion_candidate_count
# faults: (N, 4) -- RHR strike and dip angle, then the trend and plunge of the
# slickenline on that plane. Every lineation must lie in its own plane to within
# a degree, or the offending row is named and refused.
result = invert_stress(
faults,
senses=None, # (N,) bool: False where the sense was not read
weights=None, # (N,) float >= 0: how much each fault counts for
angle_step_degrees=10.0,
phi_step=0.1,
)
result["best"]["s1"] # (trend, plunge)
result["best"]["phi"]
result["best"]["mean_misfit_degrees"]
result["best"]["faults_scored"] # how many faults that mean came from
result["best"]["effective_sample_size"] # the count, once weighting is allowed for
result["runners_up"] # the next five, worst last
senses is the one argument worth reading twice. Omitting it claims every sense
of movement was determined, which is right for data taken as given and wrong for
a dataset where the sense went unrecorded: those faults would be scored at 180
degrees for fitting perfectly the other way round. Pass False for them and the
misfit is taken modulo 180.
weights is what makes a stress field possible. Each fault counts for as much
as its weight says, so pass the whole dataset once and recompute only the weights
at each node of a grid, from a kernel of the distance between that node and where
each fault was measured. Faults weighted at zero are dropped before any forward
solution is computed, so with a kernel of finite reach a node costs what its own
neighbourhood costs rather than what the dataset costs. Only the relative sizes
are read; they need not sum to anything.
It is also the only handle for separating two superposed tectonic phases, which nothing else in this search can be told to prefer between.
Weighting changes which number says whether two misfits are comparable.
faults_scored counts twenty faults whether they contributed equally or whether
nineteen were weighted at a millionth of the twentieth; effective_sample_size
is Kish's (sum w)^2 / sum w^2, which says twenty in the first case and barely
one in the second. Unweighted the two are equal, exactly. At the edge of a field
most nodes are the second kind, so read the effective size there.
The search is exhaustive rather than a descent, because a fault set carrying two
superposed tectonic phases has two minima by construction and a descent would
report whichever it fell into. inversion_candidate_count sizes a run before
starting it — the default grid is 71 280 candidates, and halving both steps
multiplies the work by about fourteen. The GIL is released for the search, so a
hundred faults on the default grid holds it for none of the 1.5 s they take.
None comes back when no candidate could be scored on any fault, and also when
every weight is zero — for a field, a node with no data within reach, which is a
result rather than a failure. A weights of the wrong length, or holding a
negative or a NaN, raises instead: that is a fault in the call, not in the data.
from misah.kernels import score_stress, stress_tensor
# The same misfit, for a tensor being tested rather than looked for.
score = score_stress(*best["s1"], *best["s3"], best["phi"], faults)
score["misfits"] # (N,) in the order given; NaN where none predicted
# And the tensor as a matrix, in (East, North, Up).
matrix = stress_tensor(*best["s1"], *best["s3"], best["phi"],
sigma1=30.0, sigma3=10.0)
Density, and a tensor at every node
from misah.kernels import covering_grid, density_field, field_cost, stress_field
# A grid around the data. `origin` is the first sample point, never a cell
# corner, and `margin` wants to be about the kernel's reach.
grid = covering_grid(hypocentres, spacing=[500.0] * 3, margin=1500.0)
# Observations per unit volume at every node: flat, first axis fastest.
values = density_field(hypocentres, grid["origin"], grid["spacing"],
grid["counts"], bandwidth=[1500.0] * 3)
volume = values.reshape(grid["counts"], order="F")
# Summed over the grid, times the cell volume, this is the number of
# observations back. One line, and worth running.
values.sum() * float(np.prod(grid["spacing"]))
The array's width says how many coordinates locate an observation: 1, 2 or 3. Bandwidth is in map units and one per axis, because depth is not interchangeable with easting even when both are in metres.
# What the field will cost -- measured, in milliseconds, before committing.
field_cost(positions, faults, origin, spacing, counts, [4000.0] * 2,
min_support=10.0)
# -> nodes, nodes_to_invert, forward_solutions
field, stats = stress_field(positions, faults, origin, spacing, counts,
bandwidth=[4000.0] * 2, min_support=10.0)
field["density"] # faults per unit area, from the same kernel
field["support"] # Kish's (sum w)^2 / sum w^2 -- read this one
field["s1"] # (M, 2) trend and plunge; NaN where no tensor
field["runner_up_s1_degrees"] # how far away the nearest rival answer sits
stats["nodes_below_threshold"] # holes, left as holes
positions says where each fault was found, faults says what it is. Every
column is one entry per node in the grid's flat order, so they align with each
other and with density_field on the same grid.
Both release the interpreter and run across every core, and the answer does not
depend on how many cores that was — bit for bit, the split being over nodes with
each node's arithmetic sequential inside it. RAYON_NUM_THREADS bounds the pool
where taking the whole machine is not acceptable, which inside QGIS it usually
is not.
Worked examples, with their output, are in
docs/notebooks.
Focal mechanisms, and the Kagan angle
from misah.kernels import (ptb_axes, kagan_angles, kagan_angle_matrix,
focal_mechanism_rotations, rotate_focal_mechanism)
# P, T and B from faults and their slip -- the same (N, 4) array
# invert_stress takes. The sense of movement must be known here: reversing an
# undetermined slip exchanges P with T, and the fault comes back as shortening
# where the rock recorded extension.
axes = ptb_axes(faults) # -> p, t, b, each (N, 2) trend and plunge
# A mechanism crosses the boundary as four numbers: P trend, P plunge,
# T trend, T plunge. Nodal planes are deliberately not taken -- which of the
# two slipped is not something the seismology says.
kagan_angles(first, second) # (N,) elementwise, 0 to 120 degrees
kagan_angle_matrix(catalogue) # (N, N), symmetric, zero diagonal
focal_mechanism_rotations(232.0, 41.0, 120.0, 24.0,
51.0, 17.0, 295.0, 55.0)
# -> trend, plunge, angle_degrees, each (4,), smallest turn first
There are four rotations and not one, because a double couple is unchanged by a half turn about any of its own axes. The smallest is the Kagan angle, the standard measure of how far apart two mechanisms are; the other three are returned rather than dropped, a minimum quoted without its alternatives being a number nobody can check. No pair can exceed 120 degrees.
P and T are kinematic axes, at 45 degrees to the fault plane by
construction. They are not principal stress axes, and coincide with them only
under Anderson's assumption; invert_stress is what solves for stress.
kagan_angle_matrix is why this is in Rust. A catalogue against itself is
N²/2 rotations -- 600 mechanisms is 180 000 pairs in 32 ms here, across every
core with the interpreter released. Symmetric with a zero diagonal, so it goes
straight into a clustering routine.
There is no pure-Python fallback
There was one, misah/_reference.py, mirroring every exposed kernel so that
misah.kernels answered either way. It was dropped deliberately: it cost a
second independent implementation of every function exposed, and that price was
what kept the mesh-grid intersection — marching triangles over a spatially
indexed DEM — unexposed for as long as it was. What it bought was an oracle, two
implementations that could be said to agree rather than one that ran. In its
place the bindings are checked against the datasets the kernels were ported
from.
The loss is the QGIS case above: a plugin that cannot install a binary wheel now cannot use misah at all, rather than falling back to something slower. That is the same problem as the wheels and belongs there, in building for the platforms QGIS runs on.
Accuracy
The kernels are ports, each checked against what it was ported from.
The raster ones against geoSurfDEM's golden dataset, plane 135/35 over the Malpi ASTER DEM: 404 vertices for the plane kernel, all on the plane to 1e-9; 614 points for the mesh kernel against the reference's 618 distinct ones, every one reported at 135.00/35.00. On geoSurfDEM's Timpa San Lorenzo dataset the best-fit kernel returns 288 cells whose worst error against the plane that generated the points is 0.089°, where the reference publishes 311 and its worst is 38.4°.
The stress ones against ForwardStress.f95, Alberti (2010), over five
geological cases — and against the corrected Fortran: two of the five moved
when a missing implicit none in the original was fixed, and an independent
50-digit recomputation confirms the corrected numbers.
The repository README carries the full comparisons, including what they cost and where the two disagree.
License
GPL-3.0-or-later. See LICENSE.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file misah-0.2.0a2.tar.gz.
File metadata
- Download URL: misah-0.2.0a2.tar.gz
- Upload date:
- Size: 313.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
909936c6a3cb16ada9d33d02342c1898afc67e22a1019db3ff700186a278d796
|
|
| MD5 |
95f920c33a12aa5140865734d07714dd
|
|
| BLAKE2b-256 |
9e42f4b97a4e9d8c9180cad1cdba4a6e63ae8ccd701a272612da0763ed07ed12
|
Provenance
The following attestation bundles were made for misah-0.2.0a2.tar.gz:
Publisher:
CI.yml on mauroalberti/misah
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
misah-0.2.0a2.tar.gz -
Subject digest:
909936c6a3cb16ada9d33d02342c1898afc67e22a1019db3ff700186a278d796 - Sigstore transparency entry: 2767593888
- Sigstore integration time:
-
Permalink:
mauroalberti/misah@99a969a4fb9b0f72bb6cfc54cc6269f5bba61ac0 -
Branch / Tag:
refs/tags/v0.2.0-alpha.2 - Owner: https://github.com/mauroalberti
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@99a969a4fb9b0f72bb6cfc54cc6269f5bba61ac0 -
Trigger Event:
push
-
Statement type:
File details
Details for the file misah-0.2.0a2-cp39-abi3-win_amd64.whl.
File metadata
- Download URL: misah-0.2.0a2-cp39-abi3-win_amd64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9+, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cf27494467cbbb6e3fef187bc4501e04ec20b3bdf4e6a8e2226d666379eab89
|
|
| MD5 |
270e47de6f0b62a253760985d55689d7
|
|
| BLAKE2b-256 |
ee7aa6bfd5359a655e70d7a429123b2ced20828812974ccb555392de23b4ee82
|
Provenance
The following attestation bundles were made for misah-0.2.0a2-cp39-abi3-win_amd64.whl:
Publisher:
CI.yml on mauroalberti/misah
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
misah-0.2.0a2-cp39-abi3-win_amd64.whl -
Subject digest:
0cf27494467cbbb6e3fef187bc4501e04ec20b3bdf4e6a8e2226d666379eab89 - Sigstore transparency entry: 2767593991
- Sigstore integration time:
-
Permalink:
mauroalberti/misah@99a969a4fb9b0f72bb6cfc54cc6269f5bba61ac0 -
Branch / Tag:
refs/tags/v0.2.0-alpha.2 - Owner: https://github.com/mauroalberti
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@99a969a4fb9b0f72bb6cfc54cc6269f5bba61ac0 -
Trigger Event:
push
-
Statement type:
File details
Details for the file misah-0.2.0a2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: misah-0.2.0a2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 644.5 kB
- Tags: CPython 3.9+, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ab7881071d9876aa9c637be38e739902b529505e2a2a36ceb9a1d929b0c182b
|
|
| MD5 |
9a2b5bfe5525936f91d64727a80d39c2
|
|
| BLAKE2b-256 |
fbee5446f2ed99bdd73ea1cfee94d611ed8d6421c161757968f2f542941ca166
|
Provenance
The following attestation bundles were made for misah-0.2.0a2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on mauroalberti/misah
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
misah-0.2.0a2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
6ab7881071d9876aa9c637be38e739902b529505e2a2a36ceb9a1d929b0c182b - Sigstore transparency entry: 2767594063
- Sigstore integration time:
-
Permalink:
mauroalberti/misah@99a969a4fb9b0f72bb6cfc54cc6269f5bba61ac0 -
Branch / Tag:
refs/tags/v0.2.0-alpha.2 - Owner: https://github.com/mauroalberti
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@99a969a4fb9b0f72bb6cfc54cc6269f5bba61ac0 -
Trigger Event:
push
-
Statement type:
File details
Details for the file misah-0.2.0a2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: misah-0.2.0a2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 634.2 kB
- Tags: CPython 3.9+, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b75750986166cdfce047ad54a6fda1434c0fea0ccc8feaf7ac27d549ef844f5f
|
|
| MD5 |
173a11c6a7c07afaede8d02ccb5f03f6
|
|
| BLAKE2b-256 |
901695466d5c88495b6a04f4a889bbefabefbadbaa404f2c42a3319e22c010d6
|
Provenance
The following attestation bundles were made for misah-0.2.0a2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on mauroalberti/misah
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
misah-0.2.0a2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
b75750986166cdfce047ad54a6fda1434c0fea0ccc8feaf7ac27d549ef844f5f - Sigstore transparency entry: 2767594117
- Sigstore integration time:
-
Permalink:
mauroalberti/misah@99a969a4fb9b0f72bb6cfc54cc6269f5bba61ac0 -
Branch / Tag:
refs/tags/v0.2.0-alpha.2 - Owner: https://github.com/mauroalberti
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@99a969a4fb9b0f72bb6cfc54cc6269f5bba61ac0 -
Trigger Event:
push
-
Statement type:
File details
Details for the file misah-0.2.0a2-cp39-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.
File metadata
- Download URL: misah-0.2.0a2-cp39-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9+, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a255bf1aec538856861b4e8fbeac99de35f34270e71dfe4609f7cacdf66b9df
|
|
| MD5 |
09ff064fa9577ff1e1b5a9a508f5fab7
|
|
| BLAKE2b-256 |
62b5845c9218964f1e3b1ce04e7dae49a61b2d2cac2a5892eeb65161ba5008b7
|
Provenance
The following attestation bundles were made for misah-0.2.0a2-cp39-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:
Publisher:
CI.yml on mauroalberti/misah
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
misah-0.2.0a2-cp39-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl -
Subject digest:
2a255bf1aec538856861b4e8fbeac99de35f34270e71dfe4609f7cacdf66b9df - Sigstore transparency entry: 2767593930
- Sigstore integration time:
-
Permalink:
mauroalberti/misah@99a969a4fb9b0f72bb6cfc54cc6269f5bba61ac0 -
Branch / Tag:
refs/tags/v0.2.0-alpha.2 - Owner: https://github.com/mauroalberti
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@99a969a4fb9b0f72bb6cfc54cc6269f5bba61ac0 -
Trigger Event:
push
-
Statement type: