Station
Entity representing an RTK reference station
type Station implements PositionalEntity {
uuid: ID!
rtcmId: Int
status: StationStatus!
name: String!
signals: [Signal!]!
position: Position!
qualityMetrics: StationQuality
skyPlotsByBand: SkyPlotByBand
}
Fields
Station.uuid ● ID! non-null scalar common
The unique ID for the Station
Station.rtcmId ● Int scalar common
The RTCM identifier for the station
Station.status ● StationStatus! non-null enum stations
Current operational status of the station
Station.name ● String! non-null scalar common
Human-readable name for the station
Station.signals ● [Signal!]! non-null object signals
List of supported GNSS signals at the component level
Station.position ● Position! non-null object position
Geographic position of the station
Station.qualityMetrics ● StationQuality object stations
Station.skyPlotsByBand ● SkyPlotByBand object stations
Interfaces
PositionalEntity interface common
Returned By
stationsByUuids query
Member Of
StationPage object