You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My use case is pretty simple, I just want the maxspeed attribute at various GPS positions, and for the most part it works, but not when one road goes over another (bridge)
attributes here has 5 values, all relating to Western Ring Road, nothing for Boundary Road. If I query the GPS position using openstreetmap.org, it has "Bridge" and "Primary Road" for the two roads, both with maxspeed attributes set.
using (var stream1 = new FileInfo(@"c:\data\australia-latest.osm.pbf").OpenRead())
{
routerDb.LoadOsmData(stream1, Itinero.Osm.Vehicles.Vehicle.Car);
}
using (var stream2 = new FileInfo(@"c:\data\australia.db").Open(FileMode.Create))
{
routerDb.Serialize(stream2);
}
Is this a limitation of the library or something I am doing wrong? Or?
The text was updated successfully, but these errors were encountered:
My use case is pretty simple, I just want the maxspeed attribute at various GPS positions, and for the most part it works, but not when one road goes over another (bridge)
This is such an intersection:
attributes here has 5 values, all relating to Western Ring Road, nothing for Boundary Road. If I query the GPS position using openstreetmap.org, it has "Bridge" and "Primary Road" for the two roads, both with maxspeed attributes set.
pbf file, https://download.geofabrik.de/australia-oceania-latest.osm.pbf, was converted to as per the samples:
Is this a limitation of the library or something I am doing wrong? Or?
The text was updated successfully, but these errors were encountered: