0 purchases
dart osmpbf
dart_osmpbf #
A parser for the OpenStreetMap PBF format.
Example usage:
final file = File('./test.osm.pbf');
var data = file.readAsBytesSync();
final osmData = OsmData.fromBytes(data);
print('Nodes: ${osmData.nodes.length}');
print('Ways: ${osmData.ways.length}');
print('Relations: ${osmData.relations.length}');
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.