├── .github └── workflows │ ├── build-and-package.yml │ └── release.yml ├── .gitignore ├── LICENSE.md ├── OpenLR.Common.props ├── OpenLR.sln ├── OpenLR.sln.DotSettings ├── README.md ├── logo.png ├── samples ├── Samples.NWB │ ├── Download.cs │ ├── Extensions.cs │ ├── NWBCoderProfile.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Samples.NWB.csproj │ └── car.lua └── Samples.OSM │ ├── Download.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Samples.OSM.csproj │ └── luxembourg-latest.osm.pbf ├── src ├── OpenLR.Geo │ ├── NtsExtensions.cs │ └── OpenLR.Geo.csproj └── OpenLR │ ├── Codecs │ ├── Binary │ │ ├── BinaryCodec.cs │ │ ├── Codecs │ │ │ ├── CircleLocationCodec.cs │ │ │ ├── ClosedLineLocationCodec.cs │ │ │ ├── GeoCoordinateLocationCodec.cs │ │ │ ├── GridLocationCodec.cs │ │ │ ├── LineLocationCodec.cs │ │ │ ├── PoiWithAccessPointLocationCodec.cs │ │ │ ├── PointAlongLineLocationCodec.cs │ │ │ ├── PolygonLocationCodec.cs │ │ │ └── RectangleLocationCodec.cs │ │ └── Data │ │ │ ├── BearingConvertor.cs │ │ │ ├── CoordinateConverter.cs │ │ │ ├── DistanceToNextConvertor.cs │ │ │ ├── FormOfWayConvertor.cs │ │ │ ├── FunctionalRoadClassConvertor.cs │ │ │ ├── HeaderConvertor.cs │ │ │ ├── OffsetConvertor.cs │ │ │ ├── OrientationConvertor.cs │ │ │ └── SideOfRoadConverter.cs │ ├── CodecBase.cs │ └── LocationCodecBase.cs │ ├── Coder.cs │ ├── CoderExtensions.cs │ ├── CoderProfile.cs │ ├── EncodingSettings.cs │ ├── Exception │ ├── BuildLocationFailedException.cs │ ├── ReferencedDecodingException.cs │ └── ReferencedEncodingException.cs │ ├── Extensions.cs │ ├── ILocationReference.cs │ ├── IO │ └── Json │ │ ├── JsonTools.cs │ │ ├── JsonWriter.cs │ │ └── ReferencedLocationExtensions.cs │ ├── ItineroExtensions.cs │ ├── LocationExtensions.cs │ ├── Matching │ └── MatchScoring.cs │ ├── Model │ ├── Coordinate.cs │ ├── FormOfWay.cs │ ├── FunctionalRoadClass.cs │ ├── LocationReferencePoint.cs │ ├── LocationType.cs │ ├── Locations │ │ ├── CircleLocation.cs │ │ ├── ClosedLineLocation.cs │ │ ├── GeoCoordinateLocation.cs │ │ ├── GridLocation.cs │ │ ├── ILocation.cs │ │ ├── LineLocation.cs │ │ ├── PoiWithAccessPointLocation.cs │ │ ├── PointAlongLineLocation.cs │ │ ├── PolygonLocation.cs │ │ └── RectangleLocation.cs │ ├── Orientation.cs │ └── SideOfRoad.cs │ ├── OpenLR.csproj │ ├── Osm │ └── OsmCoderProfile.cs │ ├── Parameters.cs │ └── Referenced │ ├── Codecs │ ├── BearingEncoder.cs │ ├── Candidates │ │ ├── CandidateLocation.cs │ │ ├── CandidatePath.cs │ │ ├── CandidateRoute.cs │ │ └── CandidateVertexEdgeComparer.cs │ ├── CoderExtensions.cs │ ├── ReferencedCircleCodec.cs │ ├── ReferencedGeoCoordinateCodec.cs │ ├── ReferencedGridCodec.cs │ ├── ReferencedLineCodec.cs │ ├── ReferencedPointAlongLineCodec.cs │ ├── ReferencedPolygonCodec.cs │ ├── ReferencedRectangleCodec.cs │ └── Scores │ │ ├── CombinedScore.cs │ │ └── CombinedScoreComparer.cs │ ├── Locations │ ├── ReferencedCircle.cs │ ├── ReferencedGeoCoordinate.cs │ ├── ReferencedGrid.cs │ ├── ReferencedLine.cs │ ├── ReferencedPointAlongLine.cs │ ├── ReferencedPolygon.cs │ └── ReferencedRectangle.cs │ ├── ReferencedLocation.cs │ ├── ReferencedLocationCodec.cs │ └── Scoring │ ├── AddedScore.cs │ ├── MultipliedScore.cs │ ├── Score.cs │ └── SimpleScore.cs └── test ├── OpenLR.Test.Functional ├── Data │ ├── line_locations.geojson │ └── locations.geojson ├── Download.cs ├── Extensions.cs ├── NWB │ ├── NWBCoderProfile.cs │ ├── Netherlands.cs │ └── car.lua ├── OpenLR.Test.Functional.csproj ├── Osm │ └── Netherlands.cs ├── PerformanceInfoConsumer.cs ├── PerformanceInfoConsumerExtensions.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── bam │ ├── BamEncode.cs │ ├── bam2.routerdb │ └── data.routerdb └── logs │ └── log20180717.txt └── OpenLR.Test ├── AssertGeo.cs ├── BearingTests.cs ├── Binary ├── BinaryCodecTests.cs ├── CircleLocationTests.cs ├── ClosedLineLocationTests.cs ├── Data │ ├── BearingConvertorTests.cs │ ├── CombinedConversionTests.cs │ ├── CoordinateConvertorTests.cs │ ├── DistanceToNextConvertorTests.cs │ ├── FormOfWayConvertorTests.cs │ ├── FunctionalRoadClassConvertorTests.cs │ ├── HeaderConvertorTests.cs │ ├── OffsetConvertorTests.cs │ ├── OrientationConvertorTests.cs │ └── SideOfRoadConvertorTests.cs ├── GeoCoordinateTests.cs ├── GridLocationTests.cs ├── LineLocationTests.cs ├── PoiWithAccessPointLocationDecoderTests.cs ├── PointAlongLineLocationTests.cs ├── PolygonLocationtests.cs └── RectangleLocationTests.cs ├── Extensions.cs ├── LocationExtensionTests.cs ├── OpenLR.Test.csproj ├── Referenced ├── ReferencedCircleDecoderTests.cs ├── ReferencedGeoCoordinateCodecTests.cs ├── ReferencedGridCodecTests.cs ├── ReferencedLineCodecTests.cs ├── ReferencedPolygonCodecTests.cs └── ReferencedRectangleCodecTests.cs ├── TestNetworkBuilder.cs └── test-data └── networks ├── network1.geojson ├── network2.geojson └── network3.geojson /.github/workflows/build-and-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/.github/workflows/build-and-package.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/LICENSE.md -------------------------------------------------------------------------------- /OpenLR.Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/OpenLR.Common.props -------------------------------------------------------------------------------- /OpenLR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/OpenLR.sln -------------------------------------------------------------------------------- /OpenLR.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/OpenLR.sln.DotSettings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/README.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/logo.png -------------------------------------------------------------------------------- /samples/Samples.NWB/Download.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/samples/Samples.NWB/Download.cs -------------------------------------------------------------------------------- /samples/Samples.NWB/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/samples/Samples.NWB/Extensions.cs -------------------------------------------------------------------------------- /samples/Samples.NWB/NWBCoderProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/samples/Samples.NWB/NWBCoderProfile.cs -------------------------------------------------------------------------------- /samples/Samples.NWB/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/samples/Samples.NWB/Program.cs -------------------------------------------------------------------------------- /samples/Samples.NWB/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/samples/Samples.NWB/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Samples.NWB/Samples.NWB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/samples/Samples.NWB/Samples.NWB.csproj -------------------------------------------------------------------------------- /samples/Samples.NWB/car.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/samples/Samples.NWB/car.lua -------------------------------------------------------------------------------- /samples/Samples.OSM/Download.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/samples/Samples.OSM/Download.cs -------------------------------------------------------------------------------- /samples/Samples.OSM/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/samples/Samples.OSM/Program.cs -------------------------------------------------------------------------------- /samples/Samples.OSM/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/samples/Samples.OSM/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Samples.OSM/Samples.OSM.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/samples/Samples.OSM/Samples.OSM.csproj -------------------------------------------------------------------------------- /samples/Samples.OSM/luxembourg-latest.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/samples/Samples.OSM/luxembourg-latest.osm.pbf -------------------------------------------------------------------------------- /src/OpenLR.Geo/NtsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR.Geo/NtsExtensions.cs -------------------------------------------------------------------------------- /src/OpenLR.Geo/OpenLR.Geo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR.Geo/OpenLR.Geo.csproj -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/BinaryCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/BinaryCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Codecs/CircleLocationCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Codecs/CircleLocationCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Codecs/ClosedLineLocationCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Codecs/ClosedLineLocationCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Codecs/GeoCoordinateLocationCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Codecs/GeoCoordinateLocationCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Codecs/GridLocationCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Codecs/GridLocationCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Codecs/LineLocationCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Codecs/LineLocationCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Codecs/PoiWithAccessPointLocationCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Codecs/PoiWithAccessPointLocationCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Codecs/PointAlongLineLocationCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Codecs/PointAlongLineLocationCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Codecs/PolygonLocationCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Codecs/PolygonLocationCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Codecs/RectangleLocationCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Codecs/RectangleLocationCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Data/BearingConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Data/BearingConvertor.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Data/CoordinateConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Data/CoordinateConverter.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Data/DistanceToNextConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Data/DistanceToNextConvertor.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Data/FormOfWayConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Data/FormOfWayConvertor.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Data/FunctionalRoadClassConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Data/FunctionalRoadClassConvertor.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Data/HeaderConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Data/HeaderConvertor.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Data/OffsetConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Data/OffsetConvertor.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Data/OrientationConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Data/OrientationConvertor.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/Binary/Data/SideOfRoadConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/Binary/Data/SideOfRoadConverter.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/CodecBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/CodecBase.cs -------------------------------------------------------------------------------- /src/OpenLR/Codecs/LocationCodecBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Codecs/LocationCodecBase.cs -------------------------------------------------------------------------------- /src/OpenLR/Coder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Coder.cs -------------------------------------------------------------------------------- /src/OpenLR/CoderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/CoderExtensions.cs -------------------------------------------------------------------------------- /src/OpenLR/CoderProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/CoderProfile.cs -------------------------------------------------------------------------------- /src/OpenLR/EncodingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/EncodingSettings.cs -------------------------------------------------------------------------------- /src/OpenLR/Exception/BuildLocationFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Exception/BuildLocationFailedException.cs -------------------------------------------------------------------------------- /src/OpenLR/Exception/ReferencedDecodingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Exception/ReferencedDecodingException.cs -------------------------------------------------------------------------------- /src/OpenLR/Exception/ReferencedEncodingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Exception/ReferencedEncodingException.cs -------------------------------------------------------------------------------- /src/OpenLR/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Extensions.cs -------------------------------------------------------------------------------- /src/OpenLR/ILocationReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/ILocationReference.cs -------------------------------------------------------------------------------- /src/OpenLR/IO/Json/JsonTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/IO/Json/JsonTools.cs -------------------------------------------------------------------------------- /src/OpenLR/IO/Json/JsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/IO/Json/JsonWriter.cs -------------------------------------------------------------------------------- /src/OpenLR/IO/Json/ReferencedLocationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/IO/Json/ReferencedLocationExtensions.cs -------------------------------------------------------------------------------- /src/OpenLR/ItineroExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/ItineroExtensions.cs -------------------------------------------------------------------------------- /src/OpenLR/LocationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/LocationExtensions.cs -------------------------------------------------------------------------------- /src/OpenLR/Matching/MatchScoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Matching/MatchScoring.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/Coordinate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/Coordinate.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/FormOfWay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/FormOfWay.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/FunctionalRoadClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/FunctionalRoadClass.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/LocationReferencePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/LocationReferencePoint.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/LocationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/LocationType.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/Locations/CircleLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/Locations/CircleLocation.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/Locations/ClosedLineLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/Locations/ClosedLineLocation.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/Locations/GeoCoordinateLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/Locations/GeoCoordinateLocation.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/Locations/GridLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/Locations/GridLocation.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/Locations/ILocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/Locations/ILocation.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/Locations/LineLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/Locations/LineLocation.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/Locations/PoiWithAccessPointLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/Locations/PoiWithAccessPointLocation.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/Locations/PointAlongLineLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/Locations/PointAlongLineLocation.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/Locations/PolygonLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/Locations/PolygonLocation.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/Locations/RectangleLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/Locations/RectangleLocation.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/Orientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/Orientation.cs -------------------------------------------------------------------------------- /src/OpenLR/Model/SideOfRoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Model/SideOfRoad.cs -------------------------------------------------------------------------------- /src/OpenLR/OpenLR.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/OpenLR.csproj -------------------------------------------------------------------------------- /src/OpenLR/Osm/OsmCoderProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Osm/OsmCoderProfile.cs -------------------------------------------------------------------------------- /src/OpenLR/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Parameters.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Codecs/BearingEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Codecs/BearingEncoder.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Codecs/Candidates/CandidateLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Codecs/Candidates/CandidateLocation.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Codecs/Candidates/CandidatePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Codecs/Candidates/CandidatePath.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Codecs/Candidates/CandidateRoute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Codecs/Candidates/CandidateRoute.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Codecs/Candidates/CandidateVertexEdgeComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Codecs/Candidates/CandidateVertexEdgeComparer.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Codecs/CoderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Codecs/CoderExtensions.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Codecs/ReferencedCircleCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Codecs/ReferencedCircleCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Codecs/ReferencedGeoCoordinateCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Codecs/ReferencedGeoCoordinateCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Codecs/ReferencedGridCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Codecs/ReferencedGridCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Codecs/ReferencedLineCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Codecs/ReferencedLineCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Codecs/ReferencedPointAlongLineCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Codecs/ReferencedPointAlongLineCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Codecs/ReferencedPolygonCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Codecs/ReferencedPolygonCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Codecs/ReferencedRectangleCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Codecs/ReferencedRectangleCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Codecs/Scores/CombinedScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Codecs/Scores/CombinedScore.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Codecs/Scores/CombinedScoreComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Codecs/Scores/CombinedScoreComparer.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Locations/ReferencedCircle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Locations/ReferencedCircle.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Locations/ReferencedGeoCoordinate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Locations/ReferencedGeoCoordinate.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Locations/ReferencedGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Locations/ReferencedGrid.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Locations/ReferencedLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Locations/ReferencedLine.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Locations/ReferencedPointAlongLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Locations/ReferencedPointAlongLine.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Locations/ReferencedPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Locations/ReferencedPolygon.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Locations/ReferencedRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Locations/ReferencedRectangle.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/ReferencedLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/ReferencedLocation.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/ReferencedLocationCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/ReferencedLocationCodec.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Scoring/AddedScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Scoring/AddedScore.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Scoring/MultipliedScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Scoring/MultipliedScore.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Scoring/Score.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Scoring/Score.cs -------------------------------------------------------------------------------- /src/OpenLR/Referenced/Scoring/SimpleScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/src/OpenLR/Referenced/Scoring/SimpleScore.cs -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/Data/line_locations.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/Data/line_locations.geojson -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/Data/locations.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/Data/locations.geojson -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/Download.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/Download.cs -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/Extensions.cs -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/NWB/NWBCoderProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/NWB/NWBCoderProfile.cs -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/NWB/Netherlands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/NWB/Netherlands.cs -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/NWB/car.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/NWB/car.lua -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/OpenLR.Test.Functional.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/OpenLR.Test.Functional.csproj -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/Osm/Netherlands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/Osm/Netherlands.cs -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/PerformanceInfoConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/PerformanceInfoConsumer.cs -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/PerformanceInfoConsumerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/PerformanceInfoConsumerExtensions.cs -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/Program.cs -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/bam/BamEncode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/bam/BamEncode.cs -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/bam/bam2.routerdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/bam/bam2.routerdb -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/bam/data.routerdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/bam/data.routerdb -------------------------------------------------------------------------------- /test/OpenLR.Test.Functional/logs/log20180717.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test.Functional/logs/log20180717.txt -------------------------------------------------------------------------------- /test/OpenLR.Test/AssertGeo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/AssertGeo.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/BearingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/BearingTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/BinaryCodecTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/BinaryCodecTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/CircleLocationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/CircleLocationTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/ClosedLineLocationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/ClosedLineLocationTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/Data/BearingConvertorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/Data/BearingConvertorTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/Data/CombinedConversionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/Data/CombinedConversionTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/Data/CoordinateConvertorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/Data/CoordinateConvertorTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/Data/DistanceToNextConvertorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/Data/DistanceToNextConvertorTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/Data/FormOfWayConvertorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/Data/FormOfWayConvertorTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/Data/FunctionalRoadClassConvertorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/Data/FunctionalRoadClassConvertorTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/Data/HeaderConvertorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/Data/HeaderConvertorTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/Data/OffsetConvertorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/Data/OffsetConvertorTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/Data/OrientationConvertorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/Data/OrientationConvertorTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/Data/SideOfRoadConvertorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/Data/SideOfRoadConvertorTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/GeoCoordinateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/GeoCoordinateTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/GridLocationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/GridLocationTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/LineLocationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/LineLocationTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/PoiWithAccessPointLocationDecoderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/PoiWithAccessPointLocationDecoderTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/PointAlongLineLocationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/PointAlongLineLocationTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/PolygonLocationtests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/PolygonLocationtests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Binary/RectangleLocationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Binary/RectangleLocationTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Extensions.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/LocationExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/LocationExtensionTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/OpenLR.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/OpenLR.Test.csproj -------------------------------------------------------------------------------- /test/OpenLR.Test/Referenced/ReferencedCircleDecoderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Referenced/ReferencedCircleDecoderTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Referenced/ReferencedGeoCoordinateCodecTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Referenced/ReferencedGeoCoordinateCodecTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Referenced/ReferencedGridCodecTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Referenced/ReferencedGridCodecTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Referenced/ReferencedLineCodecTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Referenced/ReferencedLineCodecTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Referenced/ReferencedPolygonCodecTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Referenced/ReferencedPolygonCodecTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/Referenced/ReferencedRectangleCodecTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/Referenced/ReferencedRectangleCodecTests.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/TestNetworkBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/TestNetworkBuilder.cs -------------------------------------------------------------------------------- /test/OpenLR.Test/test-data/networks/network1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/test-data/networks/network1.geojson -------------------------------------------------------------------------------- /test/OpenLR.Test/test-data/networks/network2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/test-data/networks/network2.geojson -------------------------------------------------------------------------------- /test/OpenLR.Test/test-data/networks/network3.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itinero/OpenLR/HEAD/test/OpenLR.Test/test-data/networks/network3.geojson --------------------------------------------------------------------------------