From 11a23ef3f14b94cbd8c3f147c788d273707989ec Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Tue, 17 Aug 2021 16:18:34 +0200 Subject: [PATCH] change the base interface --- BaseTypes.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BaseTypes.proto b/BaseTypes.proto index 0343c31..a4d7c94 100644 --- a/BaseTypes.proto +++ b/BaseTypes.proto @@ -2,8 +2,8 @@ syntax = "proto3"; package aman; message Coordinate { - string latitude = 1; // WGS84 latitude in degrees - string longitude = 2; // WGS84 longitude in degrees + double latitude = 1; // WGS84 latitude in degrees + double longitude = 2; // WGS84 longitude in degrees } message Dynamics {