OSMServer/OSMDatastructure/OsmEdge.cs

24 lines
621 B
C#
Raw Normal View History

namespace OSMDatastructure.Graph;
2023-02-06 17:32:55 +01:00
[Serializable]
public class OsmEdge
2023-02-06 17:32:55 +01:00
{
public ulong wayId { get; }
public ulong startId { get; }
public ulong neighborId { get; }
public ulong neighborRegion { get; }
2023-02-06 17:32:55 +01:00
2023-02-07 23:52:57 +01:00
public OsmEdge(ulong wayId, ulong startId, ulong neighborId, ulong neighborRegion)
2023-02-06 17:32:55 +01:00
{
this.wayId = wayId;
this.startId = startId;
this.neighborId = neighborId;
this.neighborRegion = neighborRegion;
}
public override string ToString()
{
2023-04-01 00:39:37 +02:00
return $"EDGE WayID: {wayId} StartID: {startId} NeighborID: {neighborId} in {neighborRegion}";
}
2023-02-06 17:32:55 +01:00
}