Changeset 8293
- Timestamp:
- 07/16/12 15:41:45 (12 years ago)
- Location:
- branches/RoutePlanning
- Files:
-
- 13 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/HeuristicLab.Problems.RoutePlanning.csproj
r8291 r8293 56 56 </ItemGroup> 57 57 <ItemGroup> 58 <Compile Include="Osm.Data\XmlDataSource.cs" /> 59 <Compile Include="Osm\IDataSource.cs" /> 58 60 <Compile Include="Osm\Node.cs" /> 59 61 <Compile Include="Osm\OsmBase.cs" /> -
branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Osm/Node.cs
r8290 r8293 13 13 } 14 14 15 public Node(int id, double lat, double lon) 15 public Node() { 16 point = new PointD(); 17 } 18 19 public Node(long id, double lat, double lon) 16 20 : base(id) { 17 21 point = new PointD(lat, lon); -
branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Osm/OsmBase.cs
r8290 r8293 4 4 namespace HeuristicLab.Problems.RoutePlanning.Osm { 5 5 public abstract class OsmBase { 6 public intId { get; set; }6 public long Id { get; set; } 7 7 public string User { get; set; } 8 8 public int UserId { get; set; } 9 9 public DateTime Timestamp { get; set; } 10 public intChangeset { get; set; }10 public long Changeset { get; set; } 11 11 public int Version { get; set; } 12 12 public bool Visible { get; set; } 13 13 public IDictionary<string, string> Tags { get; set; } 14 14 15 public OsmBase(int id) { 15 public OsmBase() { 16 Tags = new Dictionary<string, string>(); 17 } 18 19 public OsmBase(long id) { 16 20 Id = id; 17 21 Tags = new Dictionary<string, string>(); -
branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Osm/Relation.cs
r8290 r8293 5 5 private List<RelationMember> members; 6 6 7 public Relation(int id) 7 public Relation() { 8 members = new List<RelationMember>(); 9 } 10 11 public Relation(long id) 8 12 : base(id) { 9 13 members = new List<RelationMember>(); -
branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Osm/Way.cs
r8290 r8293 39 39 private List<Node> nodes; 40 40 41 public Way(int id) 41 public Way() { 42 nodes = new List<Node>(); 43 } 44 45 public Way(long id) 42 46 : base(id) { 43 47 nodes = new List<Node>(); -
branches/RoutePlanning/RoutePlanning.sln
r8284 r8293 6 6 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Problems.RoutePlanning.Views", "HeuristicLab.Problems.RoutePlanning.Views\3.3\HeuristicLab.Problems.RoutePlanning.Views.csproj", "{0C6B9F99-DBC1-49BE-B90A-36CB86DD1D0C}" 7 7 EndProject 8 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Problems.RoutePlanning.Test", "HeuristicLab.Problems.RoutePlanning.Test\HeuristicLab.Problems.RoutePlanning.Test.csproj", "{004241D1-2127-4489-9DFB-9F7707983371}" 9 EndProject 8 10 Global 9 11 GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 12 Debug|Any CPU = Debug|Any CPU 13 Debug|Mixed Platforms = Debug|Mixed Platforms 14 Debug|x86 = Debug|x86 11 15 Release|Any CPU = Release|Any CPU 16 Release|Mixed Platforms = Release|Mixed Platforms 17 Release|x86 = Release|x86 12 18 EndGlobalSection 13 19 GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 20 {E93A30BD-D4C8-4DEC-8ECF-2BC3CD9F027B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 21 {E93A30BD-D4C8-4DEC-8ECF-2BC3CD9F027B}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 {E93A30BD-D4C8-4DEC-8ECF-2BC3CD9F027B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU 23 {E93A30BD-D4C8-4DEC-8ECF-2BC3CD9F027B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU 24 {E93A30BD-D4C8-4DEC-8ECF-2BC3CD9F027B}.Debug|x86.ActiveCfg = Debug|Any CPU 16 25 {E93A30BD-D4C8-4DEC-8ECF-2BC3CD9F027B}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 26 {E93A30BD-D4C8-4DEC-8ECF-2BC3CD9F027B}.Release|Any CPU.Build.0 = Release|Any CPU 27 {E93A30BD-D4C8-4DEC-8ECF-2BC3CD9F027B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU 28 {E93A30BD-D4C8-4DEC-8ECF-2BC3CD9F027B}.Release|Mixed Platforms.Build.0 = Release|Any CPU 29 {E93A30BD-D4C8-4DEC-8ECF-2BC3CD9F027B}.Release|x86.ActiveCfg = Release|Any CPU 18 30 {0C6B9F99-DBC1-49BE-B90A-36CB86DD1D0C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 19 31 {0C6B9F99-DBC1-49BE-B90A-36CB86DD1D0C}.Debug|Any CPU.Build.0 = Debug|Any CPU 32 {0C6B9F99-DBC1-49BE-B90A-36CB86DD1D0C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU 33 {0C6B9F99-DBC1-49BE-B90A-36CB86DD1D0C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU 34 {0C6B9F99-DBC1-49BE-B90A-36CB86DD1D0C}.Debug|x86.ActiveCfg = Debug|Any CPU 20 35 {0C6B9F99-DBC1-49BE-B90A-36CB86DD1D0C}.Release|Any CPU.ActiveCfg = Release|Any CPU 21 36 {0C6B9F99-DBC1-49BE-B90A-36CB86DD1D0C}.Release|Any CPU.Build.0 = Release|Any CPU 37 {0C6B9F99-DBC1-49BE-B90A-36CB86DD1D0C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU 38 {0C6B9F99-DBC1-49BE-B90A-36CB86DD1D0C}.Release|Mixed Platforms.Build.0 = Release|Any CPU 39 {0C6B9F99-DBC1-49BE-B90A-36CB86DD1D0C}.Release|x86.ActiveCfg = Release|Any CPU 40 {004241D1-2127-4489-9DFB-9F7707983371}.Debug|Any CPU.ActiveCfg = Debug|x86 41 {004241D1-2127-4489-9DFB-9F7707983371}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 42 {004241D1-2127-4489-9DFB-9F7707983371}.Debug|Mixed Platforms.Build.0 = Debug|x86 43 {004241D1-2127-4489-9DFB-9F7707983371}.Debug|x86.ActiveCfg = Debug|x86 44 {004241D1-2127-4489-9DFB-9F7707983371}.Debug|x86.Build.0 = Debug|x86 45 {004241D1-2127-4489-9DFB-9F7707983371}.Release|Any CPU.ActiveCfg = Release|x86 46 {004241D1-2127-4489-9DFB-9F7707983371}.Release|Mixed Platforms.ActiveCfg = Release|x86 47 {004241D1-2127-4489-9DFB-9F7707983371}.Release|Mixed Platforms.Build.0 = Release|x86 48 {004241D1-2127-4489-9DFB-9F7707983371}.Release|x86.ActiveCfg = Release|x86 49 {004241D1-2127-4489-9DFB-9F7707983371}.Release|x86.Build.0 = Release|x86 22 50 EndGlobalSection 23 51 GlobalSection(SolutionProperties) = preSolution
Note: See TracChangeset
for help on using the changeset viewer.