syntax = "proto3";

import "GpsTime.proto";

option csharp_namespace = "Leica.Spider.RawConverter";

package spider.rawconverter;

message SatCount {
    /**
     * Array analog to satellite_count, that holds the last tick count, when
     * the satellite count for a specific satellite system has been set
     * Used to find out if satellite count is still valid or not
     */
    repeated spider.rtkbasics.MjdTime last_update = 1;
    /**
     * Indexes are used as defined and index 0 is for all GNSS together
     */
    repeated uint32 satellite_count = 2;
}
