Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 497 Bytes

File metadata and controls

20 lines (15 loc) · 497 Bytes

OSM.Extractor

Extract ways and nodes from *.osm file. https://www.openstreetmap.org Allows you to extract data from an exported file, with ways, nodes, tags, etc.

How use?

var pathFile = "map-file.osm";
			
var parser = new OsmParser();
var osmFile = await parser.ParseFromFileAsync(pathFile);
			
var builder = new OsmBuilder(osmFile);
var map = builder.Build();

LICENCE

GNU General Public License v3.0