package
0.0.0-20171123123043-63ab681c3498
Repository: https://github.com/dernise/venise.git
Documentation: pkg.go.dev

# 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 to string, 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.