Skip to content
A

BHRGTLayer

type BHRGTLayer =
| BHRGTSoilLayer
| BHRGTRockLayer;

Defined in: src/types/index.ts:567

A BHR-GT described layer: either soil or rock.

Narrow on the material discriminant:

if (layer.material === "rock") layer.rock.rockType;
else layer.geotechnicalSoilName;