We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4e1dac commit 4492057Copy full SHA for 4492057
examples/Sandwych.MapMatchingKit.Examples.HelloWorldApp/Program.cs
@@ -83,7 +83,7 @@ private static IEnumerable<MatcherSample> ReadSamples()
83
84
private static IEnumerable<RoadInfo> ReadRoads(ISpatialOperation spatial)
85
{
86
- var json = File.ReadAllText(@"c:\tmp\shptemp\osm-kunming-roads-network.geojson");
+ var json = File.ReadAllText(Path.Combine(s_dataDir, @"osm-kunming-roads-network.geojson"));
87
var fc = JsonConvert.DeserializeObject<FeatureCollection>(json);
88
foreach (var feature in fc.Features)
89
0 commit comments