We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1651aa1 commit e7d3201Copy full SHA for e7d3201
src/osmformat.proto
@@ -230,6 +230,15 @@ message Way {
230
optional Info info = 4;
231
232
repeated sint64 refs = 8 [packed = true]; // DELTA coded
233
+
234
+ // The following two fields are optional. They are only used in a special
235
+ // format where node locations are also added to the ways. This makes the
236
+ // files larger, but allows creating way geometries directly.
237
+ //
238
+ // If this is used, you MUST set the optional_features tag "LocationsOnWays"
239
+ // and the number of values in refs, lat, and lon MUST be the same.
240
+ repeated sint64 lat = 9 [packed = true]; // DELTA coded, optional
241
+ repeated sint64 lon = 10 [packed = true]; // DELTA coded, optional
242
}
243
244
message Relation {
0 commit comments