package shapefile

  1. Overview
  2. Docs

Common to .shp, .shx, etc.

type header = {
  1. length : int;
    (*

    file length in 16-bits words

    *)
  2. version : int;
    (*

    version number

    *)
  3. shape_type : int;
    (*

    type of shapes found in the file

    *)
  4. bbox : D3M.bbox;
    (*

    bounding box (actual extent of shapes in the file)

    *)
}

.shp and .shx file header

val print_header : header -> unit