loopstructural
Build 3D geological models with implicit surfaces, faults, folds, and stratigraphic constraints from structural geology data. Use when Claude needs to: (1) Build 3D geological models from structural data, (2) Model fault networks and displacements, (3) Create folded geology representations, (4) Interpolate geological surfaces, (5) Export models to VTK for visualization, (6) Perform uncertainty analysis on geological models, (7) Evaluate model values on grids.
npx skills add majiayu000/claude-skill-registry --skill loopstructural --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# LoopStructural - 3D Geological Modelling ## Quick Reference ```python from LoopStructural import GeologicalModel from LoopStructural.visualisation import LavaVuModelViewer import pandas as pd import numpy as np # Create model model = GeologicalModel(origin=[0, 0, -1000], maximum=[10000, 10000, 0]) # Add data model.data = pd.DataFrame({ 'X': [5000], 'Y': [5000], 'Z': [-500], 'feature_name': ['strat'], 'val': [0] }) # Build and visualize model.create_and_add_foliation('strat', interpolatortype='PLI') model.update() viewer = LavaVuModelViewer(model) viewer.add_isosurface(model['strat'], isovalue=0) viewer.interactive() ``` ## Key Classes | Class | Purpose | |-------|---------| | `GeologicalModel` | Main model container - holds features and data | | `ProcessInputData` | Data preparation and validation | | `StructuralFrame` | Coordinate system for fold modelling | | `FaultSegment` | Individual fault surface with displacement | ## Essential Operations ### Build Stratigraphic Model ```python model = GeologicalModel([0, 0, -1000], [10000, 10000, 0]) model.data = pd.DataFrame({ 'X': [5000, 5000, 5000], 'Y': [5000, 5000, 5000], 'Z': [-200, -500, -800], 'feature_name': ['strat', 'strat', 's
- Quick Reference
- Key Classes
- Essential Operations
- Build Stratigraphic Model
- Add Orientation Data
- Model with Fault
- Folded Geology
- Evaluate on Grid
- Export to VTK
- Data Requirements
- When to Use vs Alternatives
- Common Workflows
- Build faulted geological model from structural data
- Modelling Tips
What does the loopstructural skill do?
Build 3D geological models with implicit surfaces, faults, folds, and stratigraphic constraints from structural geology data. Use when Claude needs to: (1) Build 3D geological models from structural data, (2) Model fault networks and displacements, (3) Create folded geology representations, (4) Interpolate geological surfaces, (5) Export models to VTK for visualization, (6) Perform uncertainty analysis on geological models, (7) Evaluate model values on grids.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill loopstructural --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
