RadioPlan

From Maria GDK Wiki
Revision as of 11:01, 22 January 2026 by Oaa (talk | contribs)
Jump to navigation Jump to search

General

RadioPlan is the module for handling radios and radioplanning. Functionality is controlled via the interface IMariaRadioPlanLayer

public interface IMariaRadioPlanLayer : IMariaLayer

Data model

Radio

The radio is a general purpose radio. It can have different properties like frequency and technology.

Radio is attached to a Site and a RadioNet

public Radio(Guid id, string name, Site site, RadioSystem radioSystem, SignalPower txPower, double loss, SignalPower rxSensitivity, Frequency frequency)

Site

The site holds the position for one or more radios.

public Site(Guid id, string name, GeoPos location)

RadioNet

The radio net holds a group of radios of same technology

public RadioNet(Guid id, string name, NetworkType networkType, RadioSystem radioSystem)