# README
*.proto files were downloaded from https://github.com/scrosby/OSM-binary/tree/master/src and changed in following ways:
- To eliminate continuous conversions from
[]byte
tostring
, this
message StringTable {
repeated bytes s = 1;
}
was changed to
message StringTable {
repeated string s = 1;
}
This changes is expected to be fully compatible with all PBF files.