- Timestamp:
- 07/16/12 15:41:45 (12 years ago)
- Location:
- branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3
- Files:
-
- 3 added
- 5 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>();
Note: See TracChangeset
for help on using the changeset viewer.