Preparing search index...

    Interface RadarInfo

    Radar discovery information — the entries of the GET /radars response.

    This is a lean discovery object: it identifies the radar but carries neither live state nor stream URLs — the radar's two streams are always reached by convention from the host serving this response. Dynamic values live on separate endpoints — operational status and control values at GET /radars/{id}/state (and /controls), and static parameters such as spokesPerRevolution / maxSpokeLength at GET /radars/{id}/capabilities. This matches the Radar API specification (radar_api.md) and the mayara-server reference implementation.

    {
    "name": "HALO 034A",
    "brand": "Navico",
    "model": "HALO",
    "radarIpAddress": "192.168.1.50"
    }
    interface RadarInfo {
        brand: string;
        name: string;
        radarIpAddress: string;
        model?: string;
    }
    Index
    brand: string

    Radar manufacturer brand (Navico, Furuno, Raymarine, Garmin, Emulator)

    name: string

    User-defined name, or the auto-detected model name

    radarIpAddress: string

    IP address of the radar unit on the network

    model?: string

    Radar model name, if detected