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
I'm trying to use the following code to read OSM PBF file:
string filePath = DownloadFile(textBoxInput.Text);
using (var fileStream = new FileInfo(@filePath).OpenRead())
{
var source = new PBFOsmStreamSource(fileStream);
foreach (var element in source)
{
//Console.WriteLine(element.ToString());
}
}
but I get an exception as you can see in the attached file.
The text was updated successfully, but these errors were encountered:
I'm trying to use the following code to read OSM PBF file:
but I get an exception as you can see in the attached file.
The text was updated successfully, but these errors were encountered: