Module Values.LteNetworkMeasurementsSource

LTE network measurements.

Sourcetype nonrec t = {
  1. earfcn : Earfcn.t;
    (*

    E-UTRA (Evolved Universal Terrestrial Radio Access) absolute radio frequency channel number (EARFCN).

    *)
  2. cellId : EutranCellId.t;
    (*

    E-UTRAN Cell Identifier (ECI).

    *)
  3. pci : Pci.t;
    (*

    Physical Cell ID (PCI).

    *)
  4. rsrp : Rsrp.t option;
    (*

    Signal power of the reference signal received, measured in dBm (decibel-milliwatts).

    *)
  5. rsrq : Rsrq.t option;
    (*

    Signal quality of the reference Signal received, measured in decibels (dB).

    *)
}
Sourceval context_ : string
Sourceval make : ?rsrp:??? -> ?rsrq:??? -> earfcn:Earfcn.t -> cellId:EutranCellId.t -> pci:Pci.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Rsrq.t | `Integer of Earfcn.t ]) 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