/* ETSI GS MEC 028 - WLAN Access Information API The ETSI MEC ISG MEC028 WLAN Access Information API described using OpenAPI The version of the OpenAPI document: 2.1.1 Generated by OpenAPI Generator: https://openapi-generator.tech */ syntax = "proto3"; package mec028; message GeoLocation { // The altitude value of location as defined in IETF RFC 6225 [6] int32 altitude = 1; // The type description for altitude information e.g. floors or meters as defined in IETF RFC 6225 [6] int32 altitude_type = 2; // The uncertainty for altitude information as defined in IETF RFC 6225 [6] int32 altitude_uncertainty = 3; // The datum value to express how coordinates are organized and related to real world as defined in IETF RFC 6225 [6] int32 datum = 4; // The latitude value of location as defined in IETF RFC 6225 [6] int64 lat = 5; // The uncertainty for Latitude information as defined in IETF RFC 6225 [6] int32 lat_uncertainty = 6; // The longitude value of location as defined in IETF RFC 6225 [6] int64 long = 7; // The uncertainty for Longitude information as defined in IETF RFC 6225 [6] int32 long_uncertainty = 8; }