Skip to main content

SignalFilter

No description

input SignalFilter {
signals: [SignalType!]!
and: [SignalFilter!]
}

Fields

SignalFilter.signals ● [SignalType!]! non-null enum signals

List of signals where at least one of the signals in the list must be supported by any station returned by the query. Each signal in the list is a logical OR.

Example:

signals: [ GPS_L1_CA, GPS_L1C, GPS_L1P ] # Any L1 is present

SignalFilter.and ● [SignalFilter!] list input signals

Lists of signals may be chained to create more complex filters. For example, if you want to ensure GPS L1, L2, and L5 are present:

signals: [ GPS_L1_CA, GPS_L1C, GPS_L1P ] # Any L1 is present
and: [
{ signals: [ GPS_L2_CA, GPS_L2C, GPS_L2P ] }, # Any L2 is present
{ signals: [ GPS_L5 ] } # L5 is present
]

Member Of

DeviceProfileInput input ● SignalFilter input ● StationFilter input