Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 2970e56

Browse files
authored
Dev (#10)
* refactor Router's unit tests * more api doc * refactor DijkstraRouter * refactor KState * Add UBODT(aka Precomputed Dijkstra) implementation * more ubodt implementation * more unit tests * more unit tests for PrecomputedDijkstraRouter * add benchmark * fix matching with break transitions * more test data * Add RBush * switch to rtree index * new build scripts * Fix NTS's bug in Unit test * add logging to UBODT generator * small optimization * add workaround for C# 7.2's (in this Type arg) * revert last commit * update apppveyor and travis scripts to use cake * update library * fix kstate * update all dep & libs * update travis.yml * Make build.sh executable * update .net sdk version in .travis.yml * update netcoreapp 2.0 to 2.1 in build.cake * upgrade libs * update version to 0.1.5.1
1 parent cd029b9 commit 2970e56

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

‎benchmark/Sandwych.MapMatchingKit.BenchmarkApp/Sandwych.MapMatchingKit.BenchmarkApp.csproj‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="BenchmarkDotNet" Version="0.11.1" />
10-
<PackageReference Include="NetTopologySuite.IO.GeoJSON" Version="1.15.0" />
9+
<PackageReference Include="BenchmarkDotNet" Version="0.11.5" />
10+
<PackageReference Include="NetTopologySuite.IO.GeoJSON" Version="1.15.4" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

‎examples/Sandwych.MapMatchingKit.Examples.HelloWorldApp/Sandwych.MapMatchingKit.Examples.HelloWorldApp.csproj‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="NetTopologySuite.IO.GeoJSON" Version="1.15.0" />
9+
<PackageReference Include="NetTopologySuite.IO.GeoJSON" Version="1.15.4" />
1010
</ItemGroup>
1111

1212
<ItemGroup>

‎src/Sandwych.Hmm/Directory.Build.props‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
A general purpose utility library implements Hidden Markov Models (HMM) for time-inhomogeneous Markov processes for .NET.
99
</Description>
1010
<PackageTags>map-matching;markov;hmm;viterbi</PackageTags>
11-
<VersionPrefix>0.1.1</VersionPrefix>
11+
<VersionPrefix>0.1.1.1</VersionPrefix>
1212
<VersionSuffix>beta</VersionSuffix>
1313
</PropertyGroup>
1414

‎src/Sandwych.MapMatchingKit/Directory.Build.props‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Summary>A GPS map-matching solution for .NET platform.</Summary>
77
<Description>A GPS map-matching solution for .NET platform. This solution is porting from the "barefoot" project which developed in Java.</Description>
88
<PackageTags>map;gis;map-matching;osm;spatial</PackageTags>
9-
<VersionPrefix>0.1.5</VersionPrefix>
9+
<VersionPrefix>0.1.5.1</VersionPrefix>
1010
<VersionSuffix>alpha</VersionSuffix>
1111
</PropertyGroup>
1212

‎src/Sandwych.MapMatchingKit/Sandwych.MapMatchingKit.csproj‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="NetTopologySuite" Version="1.15.1" />
10+
<PackageReference Include="NetTopologySuite" Version="1.15.2" />
1111
<PackageReference Include="Nito.Collections.Deque" Version="1.0.4" />
1212
<PackageReference Include="ProjNET4GeoAPI" Version="1.4.1" />
1313
<PackageReference Include="Sandwych.GeographicLib" Version="1.49.3" />
14-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="2.1.1" />
14+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="2.2.0" />
1515
<PackageReference Include="Sandwych.QuickGraph.Core" Version="1.0.0" />
1616
<PackageReference Include="System.Collections.Immutable" Version="1.5.0" />
1717
<PackageReference Include="System.ValueTuple" Version="4.5.0" />

‎test/Sandwych.Hmm.Tests/Sandwych.Hmm.Tests.csproj‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
12-
<PackageReference Include="xunit" Version="2.4.0" />
13-
<PackageReference Include="xunit.runner.console" Version="2.4.0">
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
12+
<PackageReference Include="xunit" Version="2.4.1" />
13+
<PackageReference Include="xunit.runner.console" Version="2.4.1">
1414
<PrivateAssets>all</PrivateAssets>
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
1616
</PackageReference>
17-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0">
17+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
1818
<PrivateAssets>all</PrivateAssets>
1919
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2020
</PackageReference>

‎test/Sandwych.MapMatchingKit.Tests/Sandwych.MapMatchingKit.Tests.csproj‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
13-
<PackageReference Include="xunit" Version="2.4.0" />
14-
<PackageReference Include="xunit.runner.console" Version="2.4.0">
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
13+
<PackageReference Include="xunit" Version="2.4.1" />
14+
<PackageReference Include="xunit.runner.console" Version="2.4.1">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
1717
</PackageReference>
18-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0">
18+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
1919
<PrivateAssets>all</PrivateAssets>
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2121
</PackageReference>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /