Skip to content

Commit

Permalink
Fix VLV path
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidKarlas committed Nov 25, 2023
1 parent 22330cc commit 6d539be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OsmGursBuildingImport/GursData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ static long ConvertToOldGursAddressId(long newId)

void LoadVotingAreasGeoJson()
{
using var sr = new StreamReader(File.OpenRead(@"C:\Users\davkar\Documents\NewVLV.geojson"));
using var sr = new StreamReader("VLV.geojson");
var reader = new GeoJsonReader();
var features = reader.Read<FeatureCollection>(sr.ReadToEnd());
var duplicatedVotingAreas = new List<VotingArea>();
Expand Down

0 comments on commit 6d539be

Please sign in to comment.