Module Values.IsolineConnectionSource

Represents a segment of the transportation network that connects separate parts of a reachable area. These connections show how discontinuous areas are linked, such as by ferry routes or bridges crossing unroutable terrain.

Sourcetype nonrec t = {
  1. fromPolygonIndex : IsolineConnectionFromPolygonIndexInteger.t option;
    (*

    The index of the starting polygon in the isoline's Geometries list.

    *)
  2. geometry : IsolineConnectionGeometry.t option;
    (*

    The shape of the connection, representing the actual path through the transportation network that links the polygons.

    *)
  3. toPolygonIndex : IsolineConnectionToPolygonIndexInteger.t option;
    (*

    The index of the ending polygon in the isoline's Geometries list.

    *)
}
Sourceval make : ?fromPolygonIndex:??? -> ?geometry:??? -> ?toPolygonIndex:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IsolineConnectionFromPolygonIndexInteger.t | `Structure of (string * [> `List of [> `List of [> `Double of Double.t ] list ] list | `String of Polyline.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t