Region no longer contains ways. Ways are Edges added to nodes.

Combined outputfiles into single Regionfile.
This commit is contained in:
2023-04-01 13:18:54 +02:00
parent 806dcf98c9
commit 0bfc120ede
4 changed files with 113 additions and 100 deletions

View File

@ -50,7 +50,7 @@ namespace OSMImporter
public OsmNode? GetNode(Coordinates coordinates)
{
Region regionWithNode = GetRegion(coordinates);
return regionWithNode.GetNodeWithCoordinates(coordinates);
return regionWithNode.GetNode(coordinates);
}
}
}