Gallery of fractopo example scripts and/or plots
All matplotlib plots can be saved with:
fig.savefig("savename.png", bbox_inches="tight")
# Or
plt.savefig("savename.png", bbox_inches="tight")
Where savename
can be replaced with name/path of where you
want to save the figure. bbox_inches
is given to make sure the whole
plot is saved even thought individual elements go outside the matplotlib
figure bounding box. png
extension can be replaced with e.g. svg
.
See https://matplotlib.org/ for more information about plotting.
Plotting topological ternary plots with fractopo
Plotting rose plots with fractopo
Workflow visualisation of fractopo
Plotting the trace data used as input in fractopo
Plotting azimuth set relationships
Numerical network characteristics
Plotting length distributions with fractopo
Plotting multi-scale fracture networks with fractopo
Determining topological branches and nodes
Optimizing multi-scale cut-offs with fractopo
Module for creating fractopo.Network objects for examples
Visualize different types of validation errors
sphx_glr_auto_examples_fractopo_workflow_visualisation.py