@equinor/videx-3d
    Preparing search index...

    Type Alias SurfaceGridHeader

    Header describing the regular grid of a depth surface (a subset of a SurfaceMeta header). Distances are in world units (meters); rot is in degrees, matching the surface data convention.

    type SurfaceGridHeader = {
        nx: number;
        ny: number;
        rot: number;
        xinc: number;
        yinc: number;
    }
    Index

    Properties

    Properties

    nx: number

    Number of columns (samples along X).

    ny: number

    Number of rows (samples along Z).

    rot: number

    Grid rotation in degrees (about +Y), as stored in the surface header.

    xinc: number

    Column spacing in meters.

    yinc: number

    Row spacing in meters.