I have a spatial db with links,nodes,traffic restriction etc.. I want to convert those spatial data to osm.pbf ,I know some osm.pbf from https://wiki.openstreetmap.org/wiki/PBF_Format structrue,like Node ,Way,Relation.
message Node {
required sint64 id = 1;
// Parallel arrays.
repeated uint32 keys = 2 [packed = true]; // String IDs.
repeated uint32 vals = 3 [packed = true]; // String IDs.
optional Info info = 4; // May be omitted in omitmeta
required sint64 lat = 8;
required sint64 lon = 9;
}
I use java and pfb tool convert the message to java class,then I create pdf file. Where is the ChangeSet message I can't find it anywhere.