File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed
proto/frequenz/api/common Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 1010
1111## New Features
1212
13- <!-- Here goes the main new features and examples or instructions on how to use them -->
13+ * Added a new message named ` Location ` , representing the co-ordinates of a
14+ geographical location.
1415
1516## Bug Fixes
1617
Original file line number Diff line number Diff line change 1+ // Geographical co-ordinates of a place.
2+ //
3+ // Copyright 2023 Frequenz Energy-as-a-Service GmbH
4+ //
5+ // Licensed under the MIT License (the "License");
6+ // you may not use this file except in compliance with the License.
7+
8+ syntax = "proto3" ;
9+
10+ package frequenz.api.common.location ;
11+
12+ // A pair of geographical co-ordinates, representing the location of a place.
13+ message Location {
14+ // Latitude ranges from -90 (South) to 90 (North)
15+ float latitude = 1 ;
16+
17+ // Longitude ranges from -180 (West) to 180 (East)
18+ float longitude = 2 ;
19+ }
You can’t perform that action at this time.
0 commit comments