Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
syntax = "proto3";
package TrackProtobuf;

message DistributionTrack {
	string uniqueid = 1;
	int32 trackid = 2;
	int32int64 senderid = 3;
	uint32 channelid = 4;
	double speedmps = 5;
	double coursedegrees = 6;
	int32 classification = 7;
	double classificationprobability = 8;
	double xposition = 9;
	double yposition = 10;
	double latitude = 11;
	double longitude = 12;
	string tag = 13;
}

...